1
|
|
|
<?php |
2
|
|
|
/** |
3
|
|
|
* YAWIK |
4
|
|
|
* |
5
|
|
|
* @filesource |
6
|
|
|
* @license MIT |
7
|
|
|
* @copyright 2013 - 2017 Cross Solution <http://cross-solution.de> |
8
|
|
|
*/ |
9
|
|
|
|
10
|
|
|
namespace Yawik\Behat; |
11
|
|
|
|
12
|
|
|
use Behat\Behat\Context\Context; |
13
|
|
|
use Behat\Behat\Hook\Scope\BeforeScenarioScope; |
14
|
|
|
use Behat\Gherkin\Node\TableNode; |
15
|
|
|
use Core\Entity\Permissions; |
16
|
|
|
use Doctrine\Common\Util\Inflector; |
17
|
|
|
use Organizations\Entity\Organization; |
18
|
|
|
use Organizations\Entity\OrganizationName; |
19
|
|
|
use Organizations\Entity\OrganizationReference; |
20
|
|
|
use Yawik\Behat\Exception\FailedExpectationException; |
21
|
|
|
use Organizations\Repository\Organization as OrganizationRepository; |
22
|
|
|
use Jobs\Repository\Job as JobRepository; |
23
|
|
|
|
24
|
|
|
/** |
25
|
|
|
* Class OrganizationContext |
26
|
|
|
* |
27
|
|
|
* @author Anthonius Munthi <[email protected]> |
28
|
|
|
* @since 0.29 |
29
|
|
|
* @package Yawik\Behat |
30
|
|
|
*/ |
31
|
|
|
class OrganizationContext implements Context |
32
|
|
|
{ |
33
|
|
|
use CommonContextTrait; |
34
|
|
|
|
35
|
|
|
/** |
36
|
|
|
* @var JobContext |
37
|
|
|
*/ |
38
|
|
|
private $jobContext; |
39
|
|
|
|
40
|
|
|
/** |
41
|
|
|
* @BeforeScenario |
42
|
|
|
* |
43
|
|
|
* @param BeforeScenarioScope $scope |
44
|
|
|
*/ |
45
|
|
|
public function setupContext(BeforeScenarioScope $scope) |
46
|
|
|
{ |
47
|
|
|
$this->jobContext = $scope->getEnvironment()->getContext(JobContext::class); |
|
|
|
|
48
|
|
|
} |
49
|
|
|
|
50
|
|
|
/** |
51
|
|
|
* @Given I go to my organization page |
52
|
|
|
*/ |
53
|
|
|
public function iGoToMyOrganizationPage() |
54
|
|
|
{ |
55
|
|
|
$url = $this->buildUrl('lang/my-organization'); |
56
|
|
|
$this->visit($url); |
57
|
|
|
} |
58
|
|
|
|
59
|
|
|
/** |
60
|
|
|
* @When I hover over name form |
61
|
|
|
*/ |
62
|
|
|
public function iMouseOverOrganizationNameForm() |
63
|
|
|
{ |
64
|
|
|
$locator = '#sf-nameForm .sf-summary'; |
65
|
|
|
$this->coreContext->iHoverOverTheElement($locator); |
66
|
|
|
} |
67
|
|
|
|
68
|
|
|
/** |
69
|
|
|
* @Given I go to create new organization page |
70
|
|
|
*/ |
71
|
|
|
public function iGoToCreateNewOrganizationPage() |
72
|
|
|
{ |
73
|
|
|
//$this->visit('/organizations/edit'); |
|
|
|
|
74
|
|
|
$url = $this->buildUrl('lang/organizations/edit'); |
75
|
|
|
$this->visit($url); |
76
|
|
|
} |
77
|
|
|
|
78
|
|
|
/** |
79
|
|
|
* @Given I go to organization overview page |
80
|
|
|
*/ |
81
|
|
|
public function iGoToOrganizationOverviewPage() |
82
|
|
|
{ |
83
|
|
|
//$this->visit('/organizations'); |
|
|
|
|
84
|
|
|
$url = $this->buildUrl('lang/organizations'); |
85
|
|
|
$this->visit($url); |
86
|
|
|
} |
87
|
|
|
|
88
|
|
|
/** |
89
|
|
|
* @Given I want to see list organization profiles |
90
|
|
|
*/ |
91
|
|
|
public function iWantToSeeListOrganizationProfiles() |
92
|
|
|
{ |
93
|
|
|
$url = $this->generateUrl('lang/organizations/profile'); |
|
|
|
|
94
|
|
|
$this->visit($url); |
95
|
|
|
} |
96
|
|
|
|
97
|
|
|
/** |
98
|
|
|
* @Given I have organization :name |
99
|
|
|
* |
100
|
|
|
* @internal param string $name |
101
|
|
|
* @internal param TableNode|null $table |
102
|
|
|
*/ |
103
|
|
|
public function iHaveOrganization($name) |
104
|
|
|
{ |
105
|
|
|
$user = $this->getUserContext()->getCurrentUser(); |
106
|
|
|
$organization = $this->findOrganizationByName($name,false); |
107
|
|
|
$repo = $this->getRepository('Organizations/Organization'); |
108
|
|
View Code Duplication |
if(!$organization instanceof Organization){ |
|
|
|
|
109
|
|
|
|
110
|
|
|
$organization = new Organization(); |
111
|
|
|
$organizationName = new OrganizationName($name); |
112
|
|
|
$organization->setOrganizationName($organizationName); |
113
|
|
|
$organization->setIsDraft(false); |
114
|
|
|
} |
115
|
|
|
/* @var OrganizationReference $orgReference */ |
116
|
|
|
$orgReference = $user->getOrganization(); |
117
|
|
|
$parent = $orgReference->getOrganization(); |
118
|
|
|
$organization->setParent($parent); |
|
|
|
|
119
|
|
|
$organization->setProfileSetting(Organization::PROFILE_ALWAYS_ENABLE); |
120
|
|
|
$permissions = $organization->getPermissions(); |
121
|
|
|
$permissions->grant($user,Permissions::PERMISSION_ALL); |
122
|
|
|
|
123
|
|
|
$repo->store($organization); |
124
|
|
|
$repo->getDocumentManager()->refresh($organization); |
125
|
|
|
$repo->getDocumentManager()->refresh($user); |
126
|
|
|
} |
127
|
|
|
|
128
|
|
|
/** |
129
|
|
|
* @Given organization :name have jobs: |
130
|
|
|
*/ |
131
|
|
|
public function organizationHavePublishedJob($name,TableNode $table) |
132
|
|
|
{ |
133
|
|
|
$user = $this->getUserContext()->getCurrentUser(); |
134
|
|
|
if(is_null($user)){ |
135
|
|
|
throw new FailedExpectationException('Need to login first'); |
136
|
|
|
} |
137
|
|
|
|
138
|
|
|
$organization = $this->findOrganizationByName($name); |
139
|
|
|
foreach($table->getColumnsHash() as $index=>$definitions){ |
140
|
|
|
$definitions['user'] = $user->getLogin(); |
141
|
|
|
$status = isset($definitions['status']) ? $definitions['status']:'draft'; |
142
|
|
|
unset($definitions['status']); |
143
|
|
|
$this->jobContext->buildJob($status,$definitions,$organization); |
144
|
|
|
} |
145
|
|
|
} |
146
|
|
|
|
147
|
|
|
/** |
148
|
|
|
* @Given profile setting for :name is :setting |
149
|
|
|
* @param $name |
150
|
|
|
* @param $setting |
151
|
|
|
*/ |
152
|
|
|
public function profileSetting($name,$setting) |
153
|
|
|
{ |
154
|
|
|
$repo = $this->getRepository('Organizations/Organization'); |
155
|
|
|
$organization = $this->findOrganizationByName($name); |
156
|
|
|
|
157
|
|
|
$organization->setProfileSetting($setting); |
158
|
|
|
$repo->store($organization); |
159
|
|
|
$repo->getDocumentManager()->refresh($organization); |
160
|
|
|
} |
161
|
|
|
|
162
|
|
|
/** |
163
|
|
|
* @Given I define contact for :organization organization with: |
164
|
|
|
* @param TableNode $table |
165
|
|
|
*/ |
166
|
|
|
public function iDefineContactWith($name, TableNode $table) |
167
|
|
|
{ |
168
|
|
|
$organization = $this->findOrganizationByName($name); |
169
|
|
|
$contact = $organization->getContact(); |
170
|
|
|
|
171
|
|
|
$definitions = $table->getRowsHash(); |
172
|
|
|
foreach($definitions as $name=>$value){ |
173
|
|
|
$field = Inflector::camelize($name); |
174
|
|
|
$method = 'set'.$field; |
175
|
|
|
$callback = array($contact,$method); |
176
|
|
|
if(is_callable($callback)){ |
177
|
|
|
call_user_func_array($callback,[$value]); |
178
|
|
|
} |
179
|
|
|
} |
180
|
|
|
$this->getRepository('Organizations/Organization')->store($organization); |
181
|
|
|
} |
182
|
|
|
|
183
|
|
|
/** |
184
|
|
|
* @Given I go to profile page for organization :name |
185
|
|
|
* @param string $name |
186
|
|
|
* @throws FailedExpectationException |
187
|
|
|
*/ |
188
|
|
|
public function iGoToOrganizationProfilePage($name) |
189
|
|
|
{ |
190
|
|
|
$organization = $this->findOrganizationByName($name); |
191
|
|
|
$url = $this->generateUrl('lang/organizations/profileDetail',[ |
|
|
|
|
192
|
|
|
'id' => $organization->getId() |
193
|
|
|
]); |
194
|
|
|
|
195
|
|
|
$this->visit($url); |
196
|
|
|
} |
197
|
|
|
|
198
|
|
|
/** |
199
|
|
|
* @param string $name |
200
|
|
|
* @return Organization |
201
|
|
|
* @throws FailedExpectationException |
202
|
|
|
*/ |
203
|
|
|
public function findOrganizationByName($name, $throwException = true) |
204
|
|
|
{ |
205
|
|
|
/* @var OrganizationRepository $repo */ |
206
|
|
|
$repo = $this->getRepository('Organizations/Organization'); |
207
|
|
|
$result = $repo->findByName($name); |
208
|
|
|
$organization = count($result) > 0 ? $result[0]:null; |
209
|
|
|
if(!$organization instanceof Organization && $throwException){ |
210
|
|
|
throw new FailedExpectationException( |
211
|
|
|
sprintf('Organization %s is not found.',$name) |
212
|
|
|
); |
213
|
|
|
} |
214
|
|
|
return $organization; |
215
|
|
|
} |
216
|
|
|
|
217
|
|
|
/** |
218
|
|
|
* @Given organization :name have no job |
219
|
|
|
* |
220
|
|
|
* @param string $name |
221
|
|
|
*/ |
222
|
|
|
public function organizationHaveNoJob($name) |
223
|
|
|
{ |
224
|
|
|
$org = $this->findOrganizationByName($name); |
225
|
|
|
|
226
|
|
|
/* @var JobRepository $jobRepo */ |
227
|
|
|
$jobRepo = $this->getRepository('Jobs/Job'); |
228
|
|
|
$result = $jobRepo->findByOrganization($org->getId()); |
229
|
|
|
|
230
|
|
|
foreach($result as $job){ |
231
|
|
|
$jobRepo->remove($job,true); |
232
|
|
|
} |
233
|
|
|
} |
234
|
|
|
} |
235
|
|
|
|
Let’s take a look at an example:
In the above example, the authenticate() method works fine as long as you just pass instances of MyUser. However, if you now also want to pass a different implementation of User which does not have a getDisplayName() method, the code will break.
Available Fixes
Change the type-hint for the parameter:
Add an additional type-check:
Add the method to the interface: