X-Git-Url: http://source.bookstackapp.com/bookstack/blobdiff_plain/f84bf8e883e8e5bd9a24b908e2f90a2742d36d19..refs/pull/5280/head:/tests/Api/TestsApi.php diff --git a/tests/Api/TestsApi.php b/tests/Api/TestsApi.php index 623fa6969..466acbffb 100644 --- a/tests/Api/TestsApi.php +++ b/tests/Api/TestsApi.php @@ -1,17 +1,42 @@ -actingAs($this->users->editor(), 'api'); + + return $this; + } + + /** + * Set the API admin role as the current user via the API driver. + */ + protected function actingAsApiAdmin(): static { - $this->actingAs($this->getEditor(), 'api'); + $this->actingAs($this->users->admin(), 'api'); + return $this; } @@ -20,7 +45,27 @@ trait TestsApi */ protected function errorResponse(string $message, int $code): array { - return ["error" => ["code" => $code, "message" => $message]]; + return ['error' => ['code' => $code, 'message' => $message]]; + } + + /** + * Get the structure that matches a permission error response. + */ + protected function permissionErrorResponse(): array + { + return $this->errorResponse('You do not have permission to perform the requested action.', 403); + } + + /** + * Format the given (field_name => ["messages"]) array + * into a standard validation response format. + */ + protected function validationResponse(array $messages): array + { + $err = $this->errorResponse('The given data was invalid.', 422); + $err['error']['validation'] = $messages; + + return $err; } /** @@ -29,8 +74,7 @@ trait TestsApi protected function apiAuthHeader(): array { return [ - "Authorization" => "Token {$this->apiTokenId}:{$this->apiTokenSecret}" + 'Authorization' => "Token {$this->apiTokenId}:{$this->apiTokenSecret}", ]; } - -} \ No newline at end of file +}