encrypter = m::mock(Encrypter::class); $this->repository = m::mock(ApiKeyRepositoryInterface::class); } /** * Test that the service is able to create a keypair and assign the correct permissions. */ public function testKeyIsCreated() { $model = factory(APIKey::class)->make(); $this->getFunctionMock('\\Pterodactyl\\Services\\Api', 'str_random') ->expects($this->exactly(2))->willReturnCallback(function ($length) { return 'str_' . $length; }); $this->encrypter->shouldReceive('encrypt')->with('str_' . APIKey::KEY_LENGTH)->once()->andReturn($model->token); $this->repository->shouldReceive('create')->with([ 'test-data' => 'test', 'identifier' => 'str_' . APIKey::IDENTIFIER_LENGTH, 'token' => $model->token, ], true, true)->once()->andReturn($model); $response = $this->getService()->handle(['test-data' => 'test']); $this->assertNotEmpty($response); $this->assertInstanceOf(APIKey::class, $response); $this->assertSame($model, $response); } public function testIdentifierAndTokenAreOnlySetByFunction() { $model = factory(APIKey::class)->make(); $this->getFunctionMock('\\Pterodactyl\\Services\\Api', 'str_random') ->expects($this->exactly(2))->willReturnCallback(function ($length) { return 'str_' . $length; }); $this->encrypter->shouldReceive('encrypt')->with('str_' . APIKey::KEY_LENGTH)->once()->andReturn($model->token); $this->repository->shouldReceive('create')->with([ 'identifier' => 'str_' . APIKey::IDENTIFIER_LENGTH, 'token' => $model->token, ], true, true)->once()->andReturn($model); $response = $this->getService()->handle(['identifier' => 'customIdentifier', 'token' => 'customToken']); $this->assertNotEmpty($response); $this->assertInstanceOf(APIKey::class, $response); $this->assertSame($model, $response); } /** * Return an instance of the service with mocked dependencies for testing. * * @return \Pterodactyl\Services\Api\KeyCreationService */ private function getService(): KeyCreationService { return new KeyCreationService($this->repository, $this->encrypter); } }