This project does not seem to handle request data directly as such no vulnerable execution paths were found.
include
, or for example
via PHP's auto-loading mechanism.
These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more
1 | <?php |
||
2 | |||
3 | |||
4 | /** |
||
5 | * Class ModelsTest |
||
6 | */ |
||
7 | class ModelsTest extends \PHPUnit_Framework_TestCase |
||
0 ignored issues
–
show
|
|||
8 | { |
||
9 | |||
10 | |||
11 | /** |
||
12 | * @group Player |
||
13 | */ |
||
14 | public function testGetRandomPlayer() |
||
15 | { |
||
16 | $rndF = new \App\Lib\DsManager\Helpers\RandomFiller(); |
||
17 | $player = $rndF->getPlayer(null, $rndF->getLocale()); |
||
18 | $array = $player->toArray(); |
||
19 | $this->assertNotEmpty($array); |
||
20 | |||
21 | $newPlayer = \App\Lib\DsManager\Models\Player::fromArray($array); |
||
22 | $this->assertNotEmpty($newPlayer->toArray()); |
||
23 | } |
||
24 | |||
25 | /** |
||
26 | * @group Coach |
||
27 | */ |
||
28 | public function testGetRandomCoach() |
||
29 | { |
||
30 | $rndF = new \App\Lib\DsManager\Helpers\RandomFiller(); |
||
31 | $coach = $rndF->getCoach(); |
||
32 | $this->assertNotEmpty($coach->toArray()); |
||
33 | } |
||
34 | |||
35 | /** |
||
36 | * @group Coaches |
||
37 | */ |
||
38 | View Code Duplication | public function testGetRandomCoaches() |
|
0 ignored issues
–
show
This method seems to be duplicated in your project.
Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation. You can also find more detailed suggestions in the “Code” section of your repository. ![]() |
|||
39 | { |
||
40 | foreach (\App\Lib\Helpers\Config::get('generic.localesSmall') as $nat) { |
||
0 ignored issues
–
show
|
|||
41 | $rndF = new \App\Lib\DsManager\Helpers\RandomFiller($nat); |
||
42 | $coach = $rndF->getCoach(); |
||
43 | $this->assertNotEmpty($coach->toArray()); |
||
44 | } |
||
45 | } |
||
46 | |||
47 | /** |
||
48 | * @group Players |
||
49 | */ |
||
50 | View Code Duplication | public function testGetRandomPlayers() |
|
0 ignored issues
–
show
This method seems to be duplicated in your project.
Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation. You can also find more detailed suggestions in the “Code” section of your repository. ![]() |
|||
51 | { |
||
52 | foreach (\App\Lib\Helpers\Config::get('generic.localesSmall') as $nat) { |
||
0 ignored issues
–
show
|
|||
53 | $rndF = new \App\Lib\DsManager\Helpers\RandomFiller($nat); |
||
54 | $player = $rndF->getPlayer(); |
||
55 | $this->assertNotEmpty($player->toArray()); |
||
56 | } |
||
57 | } |
||
58 | |||
59 | /** |
||
60 | * @group Team |
||
61 | */ |
||
62 | public function testGetRandomTeam() |
||
63 | { |
||
64 | $rndF = new \App\Lib\DsManager\Helpers\RandomFiller("it_IT"); |
||
65 | $team = $rndF->getTeam(); |
||
66 | $this->assertNotEmpty($team); |
||
67 | $this->assertNotEmpty($team->name); |
||
68 | $this->assertNotEmpty($team->getAvgSkill()); |
||
69 | |||
70 | //After Adding a player |
||
71 | $player = $rndF->getPlayer(); |
||
72 | $this->assertNotEmpty($player->toArray()); |
||
73 | $team->roster[] = $player; |
||
74 | $this->assertNotEmpty($team->getAvgSkill()); |
||
75 | $this->assertNotEmpty($team->getAvgAge()); |
||
76 | |||
77 | $this->assertNotEmpty($team->coach->toArray()); |
||
78 | |||
79 | $teamArray = $team->toArray(); |
||
80 | $this->assertNotEmpty($teamArray); |
||
81 | |||
82 | $newTeam = \App\Lib\DsManager\Models\Team::fromArray($teamArray); |
||
83 | $this->assertNotEmpty($newTeam->toArray()); |
||
84 | |||
85 | } |
||
86 | |||
87 | /** |
||
88 | * @group Teams |
||
89 | */ |
||
90 | public function testGetRandomTeams() |
||
91 | { |
||
92 | $rndF = new \App\Lib\DsManager\Helpers\RandomFiller("it_IT"); |
||
93 | |||
94 | for ($i = 1; $i <= 20; $i++) { |
||
95 | $team = $rndF->getTeam(); |
||
96 | $this->assertGreaterThanOrEqual( |
||
97 | \App\Lib\Helpers\Config::get('generic.rosters')['min'], |
||
98 | count($team->roster) |
||
99 | ); |
||
100 | $this->assertNotEmpty($team->name); |
||
101 | $this->assertNotEmpty($team->nationality); |
||
102 | $this->assertNotEmpty($team->getAvgSkill()); |
||
103 | $this->assertNotEmpty($team->getAvgAge()); |
||
104 | } |
||
105 | } |
||
106 | |||
107 | /** |
||
108 | * @group Match |
||
109 | */ |
||
110 | public function testGetRandomMatch() |
||
111 | { |
||
112 | for ($i = 1; $i <= 30; $i++) { |
||
113 | $rndF = new \App\Lib\DsManager\Helpers\RandomFiller("it_IT"); |
||
114 | $spanish = $rndF->getTeam(); |
||
115 | $rndF = new \App\Lib\DsManager\Helpers\RandomFiller("it_IT"); |
||
116 | $italian = $rndF->getTeam(); |
||
117 | $this->assertNotEmpty($spanish); |
||
118 | $this->assertNotEmpty($italian); |
||
119 | $this->assertNotEmpty($italian->name); |
||
120 | $this->assertNotEmpty($spanish); |
||
121 | $this->assertNotEmpty($spanish->name); |
||
122 | |||
123 | $this->assertNotEmpty($italian->getAvgSkill()); |
||
124 | $this->assertNotEmpty($spanish->getAvgSkill()); |
||
125 | $result = (new \App\Lib\DsManager\Models\Match($italian, $spanish))->simulate()->toArray(); |
||
126 | $this->assertNotEmpty($result); |
||
127 | $this->assertGreaterThanOrEqual(0, $result['goal_home']); |
||
128 | $this->assertGreaterThanOrEqual(0, $result['goal_away']); |
||
129 | |||
130 | } |
||
131 | } |
||
132 | |||
133 | /** |
||
134 | * @group Match |
||
135 | * @group MatchResult |
||
136 | * @group matchresultoutput |
||
137 | */ |
||
138 | public function testMatchFromExistingTeams() |
||
139 | { |
||
140 | $teamHome = 1; |
||
141 | $teamAway = 2; |
||
142 | $homeOrm = \App\Lib\DsManager\Models\Orm\Team::with('roster', 'coach')->where(['id' => $teamHome])->first(); |
||
0 ignored issues
–
show
The method
where does only exist in Illuminate\Database\Eloquent\Builder , but not in Illuminate\Database\Eloquent\Model .
It seems like the method you are trying to call exists only in some of the possible types. Let’s take a look at an example: class A
{
public function foo() { }
}
class B extends A
{
public function bar() { }
}
/**
* @param A|B $x
*/
function someFunction($x)
{
$x->foo(); // This call is fine as the method exists in A and B.
$x->bar(); // This method only exists in B and might cause an error.
}
Available Fixes
![]() |
|||
143 | $awayOrm = \App\Lib\DsManager\Models\Orm\Team::with('roster', 'coach')->where(['id' => $teamAway])->first(); |
||
144 | $home = \App\Lib\DsManager\Models\Team::fromArray($homeOrm->toArray()); |
||
145 | $away = \App\Lib\DsManager\Models\Team::fromArray($awayOrm->toArray()); |
||
146 | |||
147 | $match = new \App\Lib\DsManager\Models\Match($home, $away); |
||
148 | $result = $match->simulate()->toArray(); |
||
149 | $this->assertNotEmpty($result); |
||
150 | $this->assertGreaterThanOrEqual(0, $result['goal_away']); |
||
151 | $this->assertGreaterThanOrEqual(0, $result['goal_home']); |
||
152 | View Code Duplication | if ($result['goal_home'] > 0) { |
|
153 | $this->assertNotEmpty($result['info']['scorers']['home']); |
||
154 | foreach ($result['info']['scorers']['home'] as $scorerHome) { |
||
155 | $this->assertEquals($scorerHome->team_id, $teamHome); |
||
156 | } |
||
157 | } else { |
||
158 | $this->assertEmpty($result['info']['scorers']['home']); |
||
159 | } |
||
160 | View Code Duplication | if ($result['goal_away'] > 0) { |
|
161 | $this->assertNotEmpty($result['info']['scorers']['away']); |
||
162 | foreach ($result['info']['scorers']['away'] as $scorerAway) { |
||
163 | $this->assertEquals($scorerAway->team_id, $teamAway); |
||
164 | } |
||
165 | } else { |
||
166 | $this->assertEmpty($result['info']['scorers']['away']); |
||
167 | } |
||
168 | if ($result['goal_home'] == $result['goal_away']) { |
||
169 | $this->assertTrue($result['info']['is_draw']); |
||
170 | } else { |
||
171 | $this->assertFalse($result['info']['is_draw']); |
||
172 | } |
||
173 | } |
||
174 | |||
175 | /** |
||
176 | * @group Matches |
||
177 | */ |
||
178 | public function testGetRandomMatchesOneTeam() |
||
179 | { |
||
180 | $rndF = new \App\Lib\DsManager\Helpers\RandomFiller("it_IT"); |
||
181 | $myTeam = $rndF->getTeam(); |
||
182 | $myTeam->id = 1000; |
||
183 | $win = 0; |
||
184 | $lost = 0; |
||
185 | $draw = 0; |
||
186 | |||
187 | for ($i = 1; $i <= 2; $i++) { |
||
188 | |||
189 | $randomLocale = \App\Lib\Helpers\Config::get('generic.localesSmall'); |
||
0 ignored issues
–
show
Are you sure the assignment to
$randomLocale is correct as \App\Lib\Helpers\Config:...'generic.localesSmall') (which targets App\Lib\Helpers\Config::get() ) seems to always return null.
This check looks for function or method calls that always return null and whose return value is assigned to a variable. class A
{
function getObject()
{
return null;
}
}
$a = new A();
$object = $a->getObject();
The method The reason is most likely that a function or method is imcomplete or has been reduced for debug purposes. ![]() |
|||
190 | shuffle($randomLocale); |
||
191 | $randomLocale = $randomLocale[0]; |
||
192 | $rndF = new \App\Lib\DsManager\Helpers\RandomFiller($randomLocale); |
||
193 | $opponent = $rndF->getTeam(); |
||
194 | $opponent->id = 6000; |
||
195 | $result = (new \App\Lib\DsManager\Models\Match($opponent, $myTeam))->simulate()->toArray(); |
||
196 | $this->assertNotEmpty($result); |
||
197 | $result = $result['info']; |
||
198 | if (!$result['is_draw']) { |
||
199 | if ($result['winner_id'] == $myTeam->id) { |
||
200 | $win++; |
||
201 | } else { |
||
202 | $lost++; |
||
203 | } |
||
204 | } else { |
||
205 | $draw++; |
||
206 | } |
||
207 | } |
||
208 | $this->assertGreaterThanOrEqual(0, $win); |
||
209 | $this->assertGreaterThanOrEqual(0, $lost); |
||
210 | $this->assertGreaterThanOrEqual(0, $draw); |
||
211 | } |
||
212 | |||
213 | /** |
||
214 | * @group Module |
||
215 | */ |
||
216 | public function testModule() |
||
217 | { |
||
218 | $rndF = new \App\Lib\DsManager\Helpers\RandomFiller("it_IT"); |
||
219 | $team = $rndF->getTeam(); |
||
220 | |||
221 | $modules = \App\Lib\Helpers\Config::get("modules.modules"); |
||
0 ignored issues
–
show
Are you sure the assignment to
$modules is correct as \App\Lib\Helpers\Config::get('modules.modules') (which targets App\Lib\Helpers\Config::get() ) seems to always return null.
This check looks for function or method calls that always return null and whose return value is assigned to a variable. class A
{
function getObject()
{
return null;
}
}
$a = new A();
$object = $a->getObject();
The method The reason is most likely that a function or method is imcomplete or has been reduced for debug purposes. ![]() |
|||
222 | $modules = array_keys($modules); |
||
223 | foreach ($modules as $mod) { |
||
224 | $module = new \App\Lib\DsManager\Models\Module($mod); |
||
225 | $this->assertNotEmpty($module); |
||
226 | $this->assertNotNull($module->isDefensive()); |
||
227 | $this->assertNotNull($module->isBalanced()); |
||
228 | $this->assertNotNull($module->isOffensive()); |
||
229 | $this->assertTrue(is_array($module->getRoleNeeded())); |
||
230 | } |
||
231 | $this->assertGreaterThan(0, $team->playersPerRoleArray()); |
||
232 | } |
||
233 | |||
234 | } |
||
235 |
You can fix this by adding a namespace to your class:
When choosing a vendor namespace, try to pick something that is not too generic to avoid conflicts with other libraries.