'application/vnd.pterodactyl.v1+json', 'Content-Type' => 'application/json', ]; /** * Bootstrap application API tests. Creates a default admin user and associated API key * and also sets some default headers required for accessing the API. */ public function setUp(): void { parent::setUp(); $this->user = User::factory()->create(['root_admin' => true]); $this->createNewAccessToken(); } public function getApiUser(): User { return $this->user; } /** * Creates a new default API key and refreshes the headers using it. */ protected function createNewAccessToken(array $abilities = ['*']): PersonalAccessToken { $token = $this->user->createToken('test', $abilities); $this->withHeader('Authorization', 'Bearer ' . $token->plainTextToken); return $token->accessToken; } }