appMock = m::mock(Application::class); $this->database = m::mock(ConnectionInterface::class); $this->hasher = m::mock(Hasher::class); $this->notification = m::mock(ChannelManager::class); $this->passwordService = m::mock(TemporaryPasswordService::class); $this->repository = m::mock(UserRepositoryInterface::class); $this->service = new UserCreationService( $this->appMock, $this->notification, $this->database, $this->hasher, $this->passwordService, $this->repository ); } /** * Test that a user is created when a password is passed. */ public function testUserIsCreatedWhenPasswordIsProvided() { $user = (object) [ 'name_first' => 'FirstName', 'username' => 'user_name', ]; $this->hasher->shouldReceive('make')->with('raw-password')->once()->andReturn('enc-password'); $this->database->shouldReceive('beginTransaction')->withNoArgs()->once()->andReturnNull(); $this->repository->shouldReceive('create')->with([ 'password' => 'enc-password', 'uuid' => $this->getKnownUuid(), ])->once()->andReturn($user); $this->database->shouldReceive('commit')->withNoArgs()->once()->andReturnNull(); $this->appMock->shouldReceive('makeWith')->with(AccountCreated::class, [ 'user' => [ 'name' => 'FirstName', 'username' => 'user_name', 'token' => null, ], ])->once()->andReturnNull(); $this->notification->shouldReceive('send')->with($user, null)->once()->andReturnNull(); $response = $this->service->handle([ 'password' => 'raw-password', ]); $this->assertNotNull($response); $this->assertEquals($user->username, $response->username); $this->assertEquals($user->name_first, 'FirstName'); } /** * Test that a UUID passed in the submission data is not used when * creating the user. */ public function testUuidPassedInDataIsIgnored() { $user = (object) [ 'name_first' => 'FirstName', 'username' => 'user_name', ]; $this->hasher->shouldReceive('make')->andReturn('enc-password'); $this->database->shouldReceive('beginTransaction')->andReturnNull(); $this->repository->shouldReceive('create')->with([ 'password' => 'enc-password', 'uuid' => $this->getKnownUuid(), ])->once()->andReturn($user); $this->database->shouldReceive('commit')->andReturnNull(); $this->appMock->shouldReceive('makeWith')->andReturnNull(); $this->notification->shouldReceive('send')->andReturnNull(); $response = $this->service->handle([ 'password' => 'raw-password', 'uuid' => 'test-uuid', ]); $this->assertNotNull($response); $this->assertEquals($user->username, $response->username); $this->assertEquals($user->name_first, 'FirstName'); } /** * Test that a user is created with a random password when no password is provided. */ public function testUserIsCreatedWhenNoPasswordIsProvided() { $user = (object) [ 'name_first' => 'FirstName', 'username' => 'user_name', 'email' => 'user@example.com', ]; $this->hasher->shouldNotReceive('make'); $this->database->shouldReceive('beginTransaction')->withNoArgs()->once()->andReturnNull(); $this->hasher->shouldReceive('make')->once()->andReturn('created-enc-password'); $this->passwordService->shouldReceive('handle') ->with('user@example.com') ->once() ->andReturn('random-token'); $this->repository->shouldReceive('create')->with([ 'password' => 'created-enc-password', 'email' => 'user@example.com', 'uuid' => $this->getKnownUuid(), ])->once()->andReturn($user); $this->database->shouldReceive('commit')->withNoArgs()->once()->andReturnNull(); $this->appMock->shouldReceive('makeWith')->with(AccountCreated::class, [ 'user' => [ 'name' => 'FirstName', 'username' => 'user_name', 'token' => 'random-token', ], ])->once()->andReturnNull(); $this->notification->shouldReceive('send')->with($user, null)->once()->andReturnNull(); $response = $this->service->handle([ 'email' => 'user@example.com', ]); $this->assertNotNull($response); $this->assertEquals($user->username, $response->username); $this->assertEquals($user->name_first, 'FirstName'); $this->assertEquals($user->email, $response->email); } }