alert = m::mock(AlertsMessageBag::class); $this->updateService = m::mock(UserUpdateService::class); } /** * Test the index controller. */ public function testIndexController() { $response = $this->getController()->index(); $this->assertIsViewResponse($response); $this->assertViewNameEquals('base.account', $response); } /** * Test controller when password is being updated. */ public function testUpdateControllerForPassword() { $this->setRequestMockClass(AccountDataFormRequest::class); $user = $this->setRequestUser(); $this->request->shouldReceive('input')->with('do_action')->andReturn('password'); $this->request->shouldReceive('input')->with('new_password')->once()->andReturn('test-password'); $this->updateService->shouldReceive('setUserLevel')->with(User::USER_LEVEL_USER)->once()->andReturnNull(); $this->updateService->shouldReceive('handle')->with($user, ['password' => 'test-password'])->once()->andReturnNull(); $this->alert->shouldReceive('success->flash')->once()->andReturnNull(); $response = $this->getController()->update($this->request); $this->assertIsRedirectResponse($response); $this->assertRedirectRouteEquals('account', $response); } /** * Test controller when email is being updated. */ public function testUpdateControllerForEmail() { $this->setRequestMockClass(AccountDataFormRequest::class); $user = $this->setRequestUser(); $this->request->shouldReceive('input')->with('do_action')->andReturn('email'); $this->request->shouldReceive('input')->with('new_email')->once()->andReturn('test@example.com'); $this->updateService->shouldReceive('setUserLevel')->with(User::USER_LEVEL_USER)->once()->andReturnNull(); $this->updateService->shouldReceive('handle')->with($user, ['email' => 'test@example.com'])->once()->andReturnNull(); $this->alert->shouldReceive('success->flash')->once()->andReturnNull(); $response = $this->getController()->update($this->request); $this->assertIsRedirectResponse($response); $this->assertRedirectRouteEquals('account', $response); } /** * Test controller when identity is being updated. */ public function testUpdateControllerForIdentity() { $this->setRequestMockClass(AccountDataFormRequest::class); $user = $this->setRequestUser(); $this->request->shouldReceive('input')->with('do_action')->andReturn('identity'); $this->request->shouldReceive('only')->with(['name_first', 'name_last', 'username'])->once()->andReturn([ 'test_data' => 'value', ]); $this->updateService->shouldReceive('setUserLevel')->with(User::USER_LEVEL_USER)->once()->andReturnNull(); $this->updateService->shouldReceive('handle')->with($user, ['test_data' => 'value'])->once()->andReturnNull(); $this->alert->shouldReceive('success->flash')->once()->andReturnNull(); $response = $this->getController()->update($this->request); $this->assertIsRedirectResponse($response); $this->assertRedirectRouteEquals('account', $response); } /** * Return an instance of the controller for testing. * * @return \Pterodactyl\Http\Controllers\Base\AccountController */ private function getController(): AccountController { return new AccountController($this->alert, $this->updateService); } }