Passed
Push — master ( 793370...b09d10 )
by Carsten
12:59
created
module/Jobs/test/JobsTest/Form/InputFilter/AtsModeTest.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -146,9 +146,9 @@
 block discarded – undo
146 146
     {
147 147
         /* @var $target AtsMode|\PHPUnit_Framework_MockObject_MockObject */
148 148
         $target = $this->getMockBuilder('\Jobs\Form\InputFilter\AtsMode')
149
-                       ->disableOriginalConstructor()
150
-                       ->setMethods(array('add', 'populate'))
151
-                       ->getMock();
149
+                        ->disableOriginalConstructor()
150
+                        ->setMethods(array('add', 'populate'))
151
+                        ->getMock();
152 152
 
153 153
         $add = $target->expects($this->exactly(count($expectedSpec)))
154 154
             ->method('add');
Please login to merge, or discard this patch.
module/Jobs/test/JobsTest/Form/ListFilterLocationTest.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -25,9 +25,9 @@  discard block
 block discarded – undo
25 25
     public function testInit()
26 26
     {
27 27
         $target = $this->getMockBuilder('\Jobs\Form\ListFilterLocationFieldset')
28
-                       ->setMethods(array('add', 'parentInit'))
29
-                       ->disableOriginalConstructor()
30
-                       ->getMock();
28
+                        ->setMethods(array('add', 'parentInit'))
29
+                        ->disableOriginalConstructor()
30
+                        ->getMock();
31 31
 
32 32
         $add1 = [
33 33
             'name'    => 'l',
@@ -61,11 +61,11 @@  discard block
 block discarded – undo
61 61
         ];
62 62
 
63 63
         $target->expects($this->exactly(2))
64
-               ->method('add')
65
-               ->withConsecutive(
66
-                   [$add1],
67
-                   [$add2]
68
-               )->will($this->returnSelf());
64
+                ->method('add')
65
+                ->withConsecutive(
66
+                    [$add1],
67
+                    [$add2]
68
+                )->will($this->returnSelf());
69 69
 
70 70
         /* @var $target \PHPUnit_Framework_MockObject_MockObject|\Jobs\Form\ListFilterLocationFieldset */
71 71
         $target->init();
Please login to merge, or discard this patch.
module/Jobs/test/JobsTest/View/Helper/ApplyButtonsTest.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
     public function testInvalidDataReturnsEmptyString($data)
62 62
     {
63 63
         $helper = $this->helper;
64
-		$this->assertSame('', $helper($data));
64
+        $this->assertSame('', $helper($data));
65 65
     }
66 66
     
67 67
     public function testDefaults()
@@ -153,7 +153,7 @@  discard block
 block discarded – undo
153 153
                     }));
154 154
         
155 155
         $helper = $this->helper;
156
-		$helper($data, $options);
156
+        $helper($data, $options);
157 157
     }
158 158
     
159 159
     public function testSendImmediatelyOption()
@@ -173,7 +173,7 @@  discard block
 block discarded – undo
173 173
                     }));
174 174
         
175 175
         $helper = $this->helper;
176
-		$helper($data, $options);
176
+        $helper($data, $options);
177 177
     }
178 178
     
179 179
     public function invalidDataThrowsExceptionData()
Please login to merge, or discard this patch.
module/Jobs/test/JobsTest/Listener/MailSenderTest.php 1 patch
Indentation   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -58,11 +58,11 @@  discard block
 block discarded – undo
58 58
             default:
59 59
                 $this->mailServiceMock = $this->getMockBuilder('\Core\Mail\MailService')->disableOriginalConstructor()->getMock();
60 60
                 $this->mailServiceMock->expects($this->atLeastOnce())
61
-                                      ->method('send')
62
-                                      ->with($this->callback(array($this, 'popMailMock')));
61
+                                        ->method('send')
62
+                                        ->with($this->callback(array($this, 'popMailMock')));
63 63
                 $this->mailServiceMock->expects($this->any())
64
-                                      ->method('get')->with('htmltemplate')
65
-                                      ->will($this->returnCallback(array($this, 'pushMailMock')));
64
+                                        ->method('get')->with('htmltemplate')
65
+                                        ->will($this->returnCallback(array($this, 'pushMailMock')));
66 66
 
67 67
 
68 68
                 $this->targetOptions = array('siteName' => 'Test', 'adminEmail' => 'test@admin');
@@ -101,27 +101,27 @@  discard block
 block discarded – undo
101 101
     public function testAttachsToAndDetachsFromJobEvents()
102 102
     {
103 103
         $events = $this->getMockBuilder('\Zend\EventManager\EventManager')
104
-                       ->disableOriginalConstructor()
105
-                       ->getMock();
104
+                        ->disableOriginalConstructor()
105
+                        ->getMock();
106 106
 
107 107
         $callback1 = [new MailSenderListenerMock(),'listen1'];
108
-	    $callback2 = [new MailSenderListenerMock(),'listen2'];
109
-	    $callback3 = [new MailSenderListenerMock(),'listen3'];
108
+        $callback2 = [new MailSenderListenerMock(),'listen2'];
109
+        $callback3 = [new MailSenderListenerMock(),'listen3'];
110 110
         $events->expects($this->exactly(3))
111
-               ->method('attach')
112
-               ->withConsecutive(
111
+                ->method('attach')
112
+                ->withConsecutive(
113 113
                     array(JobEvent::EVENT_JOB_CREATED, array($this->target, 'onJobCreated')),
114 114
                     array(JobEvent::EVENT_JOB_ACCEPTED, array($this->target, 'onJobAccepted')),
115 115
                     array(JobEvent::EVENT_JOB_REJECTED, array($this->target, 'onJobRejected'))
116
-               )
117
-               ->will($this->onConsecutiveCalls($callback1,$callback2,$callback3))
116
+                )
117
+                ->will($this->onConsecutiveCalls($callback1,$callback2,$callback3))
118 118
         ;
119 119
 
120 120
         $events->expects($this->exactly(3))
121
-               ->method('detach')
122
-               ->withConsecutive(
121
+                ->method('detach')
122
+                ->withConsecutive(
123 123
                     array($callback1), array($callback2), array($callback3)
124
-               )->willReturn(true);
124
+                )->willReturn(true);
125 125
 
126 126
         $this->target->attach($events);
127 127
         $this->assertAttributeEquals(array($callback1, $callback2, $callback3), 'listeners', $this->target);
@@ -196,7 +196,7 @@  discard block
 block discarded – undo
196 196
 
197 197
 class MailSenderListenerMock
198 198
 {
199
-	public function listen1(){}
200
-	public function listen2(){}
201
-	public function listen3(){}
199
+    public function listen1(){}
200
+    public function listen2(){}
201
+    public function listen3(){}
202 202
 }
203 203
\ No newline at end of file
Please login to merge, or discard this patch.
module/Jobs/test/JobsTest/Listener/PublisherTest.php 1 patch
Indentation   +43 added lines, -43 removed lines patch added patch discarded remove patch
@@ -129,62 +129,62 @@  discard block
 block discarded – undo
129 129
                 ->will($this->returnValue('<html />'));
130 130
 
131 131
         $this->viewPhpRendererStrategy = $this->getMockBuilder('\Zend\View\Strategy\PhpRendererStrategy')
132
-                          ->disableOriginalConstructor()
133
-                          ->getMock();
132
+                            ->disableOriginalConstructor()
133
+                            ->getMock();
134 134
 
135 135
         $this->viewPhpRendererStrategy->expects($this->once())
136
-                          ->method('getRenderer')
137
-                          ->will($this->returnValue($this->renderer));
136
+                            ->method('getRenderer')
137
+                            ->will($this->returnValue($this->renderer));
138 138
 
139 139
         $this->response = $this->getMockBuilder('\Zend\Http\Response')
140
-                                              ->disableOriginalConstructor()
141
-                                              ->getMock();
140
+                                                ->disableOriginalConstructor()
141
+                                                ->getMock();
142 142
 
143 143
         $this->jobEvent = $this->getMockBuilder('\Jobs\Listener\Events\JobEvent')
144
-                               ->disableOriginalConstructor()
145
-                               ->getMock();
144
+                                ->disableOriginalConstructor()
145
+                                ->getMock();
146 146
 
147 147
         $this->job = $this->getMockBuilder('\Jobs\Entity\Job')
148
-                          ->disableOriginalConstructor()
149
-                          ->getMock();
148
+                            ->disableOriginalConstructor()
149
+                            ->getMock();
150 150
 
151 151
         $this->publisher = $this->getMockBuilder('\Jobs\Entity\Publisher')
152
-                          ->disableOriginalConstructor()
153
-                          ->getMock();
152
+                            ->disableOriginalConstructor()
153
+                            ->getMock();
154 154
 
155 155
         $this->publisher->expects($this->at(0))
156
-                           ->method('__get')
157
-                           ->with('externalId')
158
-                           ->will($this->returnValue('externalId32'));
156
+                            ->method('__get')
157
+                            ->with('externalId')
158
+                            ->will($this->returnValue('externalId32'));
159 159
 
160 160
         $this->publisher->expects($this->at(1))
161
-                           ->method('__get')
162
-                           ->with('reference')
163
-                           ->will($this->returnValue('reference32'));
161
+                            ->method('__get')
162
+                            ->with('reference')
163
+                            ->will($this->returnValue('reference32'));
164 164
 
165 165
         $this->publisher->expects($this->any())
166
-                              ->method('__set')
167
-                              ->will($this->returnCallback($staticClassPrefix . 'publisherSetter'));
166
+                                ->method('__set')
167
+                                ->will($this->returnCallback($staticClassPrefix . 'publisherSetter'));
168 168
 
169 169
         $this->htmlAbsPathFilter = $this->getMockBuilder('\Core\Filter\HtmlAbsPathFilter')
170 170
                                     ->disableOriginalConstructor()
171 171
                                     ->getMock();
172 172
 
173 173
         $this->htmlAbsPathFilter->expects($this->any())
174
-                              ->method('filter')
175
-                              ->will($this->returnCallback($staticClassPrefix . 'absPathFilter'));
174
+                                ->method('filter')
175
+                                ->will($this->returnCallback($staticClassPrefix . 'absPathFilter'));
176 176
 
177 177
         $this->filterManager = $this->getMockBuilder('\Zend\ServiceManager\ServiceManager')
178
-                                     ->disableOriginalConstructor()
179
-                                     ->getMock();
178
+                                        ->disableOriginalConstructor()
179
+                                        ->getMock();
180 180
 
181 181
         $this->filterManager->expects($this->at(0))
182 182
                         ->method('get')
183 183
                         ->willReturn($this->htmlAbsPathFilter);
184 184
 
185 185
         $this->restClient = $this->getMockBuilder('\Core\Service\RestClient')
186
-                                 ->disableOriginalConstructor()
187
-                                 ->getMock();
186
+                                    ->disableOriginalConstructor()
187
+                                    ->getMock();
188 188
 
189 189
         //$this->restClient->expects($this->at(0))
190 190
         //                   ->method('getHost')
@@ -200,8 +200,8 @@  discard block
 block discarded – undo
200 200
             ->will($this->returnValue($this->response));
201 201
 
202 202
         $this->organization = $this->getMockBuilder('\Organizations\Entity\Organization')
203
-                                 ->disableOriginalConstructor()
204
-                                 ->getMock();
203
+                                    ->disableOriginalConstructor()
204
+                                    ->getMock();
205 205
 
206 206
         $this->organization->expects($this->at(0))
207 207
                         ->method('__get')
@@ -209,21 +209,21 @@  discard block
 block discarded – undo
209 209
                         ->will($this->returnValue('name32'));
210 210
 
211 211
         $this->provider = $this->getMockBuilder('\Jobs\Options\ProviderOptions')
212
-                                   ->disableOriginalConstructor()
213
-                                   ->getMock();
212
+                                    ->disableOriginalConstructor()
213
+                                    ->getMock();
214 214
 
215 215
         $this->providerChannel = $this->getMockBuilder('\Jobs\Options\ChannelOptions')
216
-                                      ->disableOriginalConstructor()
217
-                                      ->getMock();
216
+                                        ->disableOriginalConstructor()
217
+                                        ->getMock();
218 218
 
219 219
         $this->providerChannel->expects($this->any())
220
-                              ->method('__get')
221
-                              ->will($this->returnCallback($staticClassPrefix . 'providerChannelGetter'));
220
+                                ->method('__get')
221
+                                ->will($this->returnCallback($staticClassPrefix . 'providerChannelGetter'));
222 222
 
223 223
         $this->provider->expects($this->any(0))
224
-                       ->method('__get')
225
-                       ->with('channels')
226
-                       ->willReturn(array('bbb value' => $this->providerChannel));
224
+                        ->method('__get')
225
+                        ->with('channels')
226
+                        ->willReturn(array('bbb value' => $this->providerChannel));
227 227
 
228 228
         $this->viewModel = $this->getMockBuilder('\Zend\View\Model\ViewModel')
229 229
                                 ->disableOriginalConstructor()
@@ -304,12 +304,12 @@  discard block
 block discarded – undo
304 304
     protected function setRestReturn($referenceUpdate, $applyIdUpdate)
305 305
     {
306 306
         $this->response->expects($this->any())
307
-                       ->method('getBody')
308
-                       ->will($this->returnValue(json_encode(
309
-                           array(
310
-                               'referenceUpdate' => $referenceUpdate,
311
-                               'applyIdUpdate' => $applyIdUpdate
312
-                           ))));
307
+                        ->method('getBody')
308
+                        ->will($this->returnValue(json_encode(
309
+                            array(
310
+                                'referenceUpdate' => $referenceUpdate,
311
+                                'applyIdUpdate' => $applyIdUpdate
312
+                            ))));
313 313
     }
314 314
 
315 315
 
Please login to merge, or discard this patch.
module/Jobs/test/JobsTest/Listener/GetOrganizationManagersTest.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -107,7 +107,7 @@
 block discarded – undo
107 107
 
108 108
         $wf = new WorkflowSettings();
109 109
         $wf->setAcceptApplicationByDepartmentManager($flag('acceptApplication'))
110
-           ->setAssignDepartmentManagersToJobs($flag('assignManagers'));
110
+            ->setAssignDepartmentManagersToJobs($flag('assignManagers'));
111 111
 
112 112
         $org->expects($this->once())->method('getWorkflowSettings')->willReturn($wf);
113 113
 
Please login to merge, or discard this patch.
module/Auth/test/TestConfig.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -6,9 +6,9 @@  discard block
 block discarded – undo
6 6
     // This should be an array of module namespaces used in the application.
7 7
     'modules' => array_merge($commonModules,array(
8 8
         'Core',
9
-	    'Auth',
10
-	    'Jobs',
11
-	    'Organizations',
9
+        'Auth',
10
+        'Jobs',
11
+        'Organizations',
12 12
     )),
13 13
 
14 14
     // These are various options for the listeners attached to the ModuleManager
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
     //     ),
65 65
     // )
66 66
 
67
-   // Initial configuration with which to seed the ServiceManager.
68
-   // Should be compatible with Zend\ServiceManager\Config.
69
-   // 'service_manager' => array(),
67
+    // Initial configuration with which to seed the ServiceManager.
68
+    // Should be compatible with Zend\ServiceManager\Config.
69
+    // 'service_manager' => array(),
70 70
 );
Please login to merge, or discard this patch.
Auth/test/AclTest/Assertion/AbstractEventManagerAwareAssertionTest.php 1 patch
Indentation   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -85,12 +85,12 @@  discard block
 block discarded – undo
85 85
         $acl    = new Acl();
86 86
 
87 87
         $events = $this->getMockBuilder('\Zend\EventManager\EventManager')
88
-                       ->disableOriginalConstructor()
89
-                       ->getMock();
88
+                        ->disableOriginalConstructor()
89
+                        ->getMock();
90 90
 
91 91
         $events->expects($this->once())
92
-               ->method('triggerUntil')
93
-               ->willReturn(new ResponseCollection());
92
+                ->method('triggerUntil')
93
+                ->willReturn(new ResponseCollection());
94 94
 
95 95
         $target->setEventManager($events);
96 96
 
@@ -112,12 +112,12 @@  discard block
 block discarded – undo
112 112
         $responseFalse = $this->createResponseMock(false);
113 113
 
114 114
         $events = $this->getMockBuilder('\Zend\EventManager\EventManager')
115
-                       ->disableOriginalConstructor()
116
-                       ->getMock();
115
+                        ->disableOriginalConstructor()
116
+                        ->getMock();
117 117
 
118 118
         $events->expects($this->exactly(5))
119
-               ->method('triggerUntil')
120
-               ->will($this->onConsecutiveCalls($responseNull, $responseEmpty, $responseZero, $responseTrue, $responseFalse));
119
+                ->method('triggerUntil')
120
+                ->will($this->onConsecutiveCalls($responseNull, $responseEmpty, $responseZero, $responseTrue, $responseFalse));
121 121
 
122 122
         $target->setEventManager($events);
123 123
 
@@ -133,8 +133,8 @@  discard block
 block discarded – undo
133 133
     protected function createResponseMock($returnValue)
134 134
     {
135 135
         $response = $this->getMockBuilder('\Zend\EventManager\ResponseCollection')
136
-                             ->disableOriginalConstructor()
137
-                             ->getMock();
136
+                                ->disableOriginalConstructor()
137
+                                ->getMock();
138 138
         $response->method('last')->willReturn($returnValue);
139 139
 
140 140
         return $response;
@@ -145,8 +145,8 @@  discard block
 block discarded – undo
145 145
         $target = new TargetMock();
146 146
 
147 147
         $events = $this->getMockBuilder('\Zend\EventManager\EventManager')
148
-                       ->disableOriginalConstructor()
149
-                       ->getMock();
148
+                        ->disableOriginalConstructor()
149
+                        ->getMock();
150 150
 
151 151
         $acl = new Acl();
152 152
         $role = new GenericRole('testRole');
@@ -155,16 +155,16 @@  discard block
 block discarded – undo
155 155
         $self = $this;
156 156
 
157 157
         $events->expects($this->once())->method('triggerUntil')
158
-               ->will($this->returnCallback(function ($callback,$eventName,$event) use ($acl, $role, $resource, $privilege, $self) {
159
-               	    $self->assertTrue(is_callable($callback));
160
-	                $self->assertEquals('assert',$eventName);
158
+                ->will($this->returnCallback(function ($callback,$eventName,$event) use ($acl, $role, $resource, $privilege, $self) {
159
+                        $self->assertTrue(is_callable($callback));
160
+                    $self->assertEquals('assert',$eventName);
161 161
                     $self->assertSame($acl, $event->getAcl());
162 162
                     $self->assertSame($role, $event->getRole());
163 163
                     $self->assertSame($resource, $event->getResource());
164 164
                     $self->assertSame($privilege, $event->getPrivilege());
165 165
 
166 166
                     return new ResponseCollection();
167
-               }));
167
+                }));
168 168
 
169 169
         $target->setEventManager($events);
170 170
         $target->assert($acl, $role, $resource, $privilege);
Please login to merge, or discard this patch.
module/Auth/test/AclTest/Assertion/AssertionManagerFactoryTest.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -31,11 +31,11 @@  discard block
 block discarded – undo
31 31
     public function testCreateServiceReturnsAssertionManager()
32 32
     {
33 33
         $services = $this->getMockBuilder('\Zend\ServiceManager\ServiceManager')
34
-                         ->disableOriginalConstructor()
35
-                         ->getMock();
34
+                            ->disableOriginalConstructor()
35
+                            ->getMock();
36 36
 
37 37
         $services->expects($this->once())->method('get')->with('Config')
38
-                 ->willReturn(array());
38
+                    ->willReturn(array());
39 39
 
40 40
         $target = new AssertionManagerFactory();
41 41
         $manager = $target->__invoke($services,AssertionManager::class);
@@ -53,11 +53,11 @@  discard block
 block discarded – undo
53 53
     public function testCorrectConfigIsUsedToConfigureTheManager($config, $testName, $testResult)
54 54
     {
55 55
         $services = $this->getMockBuilder('\Zend\ServiceManager\ServiceManager')
56
-                         ->disableOriginalConstructor()
57
-                         ->getMock();
56
+                            ->disableOriginalConstructor()
57
+                            ->getMock();
58 58
 
59 59
         $services->expects($this->once())->method('get')->with('Config')
60
-                 ->willReturn($config);
60
+                    ->willReturn($config);
61 61
 
62 62
         $target = new AssertionManagerFactory();
63 63
 
Please login to merge, or discard this patch.