BookStack/tests/Api/TestsApi.php

50 lines
1.1 KiB
PHP
Raw Normal View History

2021-06-26 15:23:15 +00:00
<?php
namespace Tests\Api;
trait TestsApi
{
protected $apiTokenId = 'apitoken';
protected $apiTokenSecret = 'password';
/**
* Set the API editor role as the current user via the API driver.
*/
protected function actingAsApiEditor()
{
$this->actingAs($this->getEditor(), 'api');
2021-06-26 15:23:15 +00:00
return $this;
}
/**
* Format the given items into a standardised error format.
*/
protected function errorResponse(string $message, int $code): array
{
2021-06-26 15:23:15 +00:00
return ['error' => ['code' => $code, 'message' => $message]];
}
2020-05-22 23:28:41 +00:00
/**
* Format the given (field_name => ["messages"]) array
* into a standard validation response format.
*/
protected function validationResponse(array $messages): array
{
2021-06-26 15:23:15 +00:00
$err = $this->errorResponse('The given data was invalid.', 422);
2020-05-22 23:28:41 +00:00
$err['error']['validation'] = $messages;
2021-06-26 15:23:15 +00:00
2020-05-22 23:28:41 +00:00
return $err;
}
2021-06-26 15:23:15 +00:00
/**
* Get an approved API auth header.
*/
protected function apiAuthHeader(): array
{
return [
2021-06-26 15:23:15 +00:00
'Authorization' => "Token {$this->apiTokenId}:{$this->apiTokenSecret}",
];
}
2021-06-26 15:23:15 +00:00
}