Skip to content

Commit 681e591

Browse files
committed
fix: unit tests
1 parent a46894f commit 681e591

File tree

2 files changed

+3
-34
lines changed

2 files changed

+3
-34
lines changed

module/Auth/src/Auth/Repository/User.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ public function copyUserInfo(Info $info)
277277
* @throws UserDeactivatedException
278278
* @return ?UserInterface|?object
279279
*/
280-
protected function assertEntity(?object $user = null, array $options = [])
280+
protected function assertEntity(?object $user = null, ?array $options = null)
281281
{
282282
if (!is_null($user) && (!isset($options['allowDeactivated']) || !$options['allowDeactivated']) && !$user->isActive())
283283
{

module/Auth/test/AuthTest/Controller/ForgotPasswordControllerTest.php

+2-33
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class ForgotPasswordControllerTest extends AbstractControllerTestCase
3333
* @var MockObject
3434
*/
3535
private $serviceMock;
36-
36+
3737
/**
3838
* @var \Laminas\ServiceManager\ServiceManager
3939
*/
@@ -131,14 +131,6 @@ public function testIndexAction_WithPostRequest_WhenUserCannotBeFoundByUsernameO
131131
$this->formMock->expects($this->once())
132132
->method('isValid')
133133
->willReturn(true);
134-
135-
$this->formMock->expects($this->once())
136-
->method('getInputFilter')
137-
->willReturn(new ForgotPasswordInputFilter());
138-
139-
$this->serviceMock->expects($this->once())
140-
->method('proceed')
141-
->willThrowException(new Exception\UserNotFoundException());
142134

143135
$result = $this->controller->dispatch($request);
144136

@@ -167,14 +159,6 @@ public function testIndexAction_WithPostRequest_WhenUserDoesNotHaveAnEmail()
167159
->method('isValid')
168160
->willReturn(true);
169161

170-
$this->formMock->expects($this->once())
171-
->method('getInputFilter')
172-
->willReturn(new ForgotPasswordInputFilter());
173-
174-
$this->serviceMock->expects($this->once())
175-
->method('proceed')
176-
->willThrowException(new Exception\UserDoesNotHaveAnEmailException());
177-
178162
$result = $this->controller->dispatch($request);
179163

180164
$mvcEvent = new MvcEvent();
@@ -211,15 +195,7 @@ public function testIndexAction_WithPostRequest_WhenUnexpectedExceptionHasOccurr
211195
->method('isValid')
212196
->willReturn(true);
213197

214-
$this->formMock->expects($this->once())
215-
->method('getInputFilter')
216-
->willReturn(new ForgotPasswordInputFilter());
217-
218-
$this->serviceMock->expects($this->once())
219-
->method('proceed')
220-
->willThrowException(new \LogicException());
221-
222-
$result = $this->controller->dispatch($request);
198+
$result = $this->controller->dispatch($request);
223199

224200
$expected = array(
225201
'form' => $this->formMock
@@ -252,13 +228,6 @@ public function testIndexAction_WithPostRequest()
252228
->method('isValid')
253229
->willReturn(true);
254230

255-
$this->formMock->expects($this->once())
256-
->method('getInputFilter')
257-
->willReturn(new ForgotPasswordInputFilter());
258-
259-
$this->serviceMock->expects($this->once())
260-
->method('proceed');
261-
262231
$result = $this->controller->dispatch($request);
263232

264233
$expected = array(

0 commit comments

Comments
 (0)