'dave@slovocast.com', 'name' => 'Dave SH', 'password' => 'hashed_password' ]); } protected function createNewUserRequest(string $formKey = ""): Request { $user = $this->getUser(); return $this->createRequest('POST', '/register') ->withParsedBody([ 'email' => $user->getEmail(), 'name' => $user->getName(), 'password' => $user->getPassword(), 'checked_password' => $user->getPassword(), 'form_key' => $formKey, ]); } protected function createNewUserRequestWithMismatchedPasswords(string $formKey = ""): Request { $user = $this->getUser(); return $this->createRequest('POST', '/register') ->withParsedBody([ 'email' => $user->getEmail(), 'name' => $user->getName(), 'password' => $user->getPassword(), 'checked_password' => 'no-match', 'form_key' => $formKey, ]); } protected function createNewUserRequestForFormKey(): Request { return $this->createRequest('GET', '/register'); } /** * Set up the Application, the DI Container, and the Repository mock */ protected function setUp(): void { } public function testSuccessfulRegistration(): void { $user = $this->getUser(); $app = $this->getAppInstance(); /** @var \DI\Container */ $container = $app->getContainer(); $userRepository = $this->prophesize(UserRepositoryInterface::class); $userRepository->create($user)->willReturn(true); $container->set( UserRepositoryInterface::class, $userRepository->reveal() ); // get the form key $getUserRequest = $this->createNewUserRequestForFormKey(); $response = $app->handle($getUserRequest); $formKey = $container->get(SessionInterface::class)->get("form_key"); $this->assertIsString($formKey); $request = $this->createNewUserRequest($formKey); $response = $app->handle($request); $this->assertEquals(200, $response->getStatusCode()); } public function testFailingRegistration(): void { $user = $this->getUser(); $app = $this->getAppInstance(); /** @var $container \DI\Container */ $container = $app->getContainer(); $userRepository = $this->prophesize(UserRepositoryInterface::class); $userRepository->create($user)->willReturn(false); $container->set( UserRepositoryInterface::class, $userRepository->reveal() ); $request = $this->createNewUserRequest(); $response = $app->handle($request); $this->assertEquals(400, $response->getStatusCode()); $responseBody = $response->getBody(); // get the class of the flash on the rendered page $this->assertTrue((bool)preg_match('/flash error/', $responseBody)); // get the text inside the flash $this->assertTrue((bool)preg_match('/Unable to register user\./', $responseBody)); /** * The Flash messages are already exhausted while rendering the * templates. We should check the template for the error. */ $flash = $container->get(SessionInterface::class)->getFlash(); $errorMessages = $flash->get('error'); $this->assertIsArray($errorMessages); //$this->assertNotEmpty($errorMessages); //$this->assertEquals('Unable to register user.', $errorMessages[0]); } public function testMismatchPassword(): void { $user = $this->getUser(); $app = $this->getAppInstance(); /** @var $container \DI\Container */ $container = $app->getContainer(); $userRepository = $this->prophesize(UserRepositoryInterface::class); $userRepository->create($user)->willReturn(true); $container->set( UserRepositoryInterface::class, $userRepository->reveal() ); $request = $this->createNewUserRequestWithMismatchedPasswords(); $response = $app->handle($request); $this->assertEquals(400, $response->getStatusCode()); } }