mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-07-30 04:23:11 +03:00
Added chapters to the API
This commit is contained in:
186
tests/Api/ChaptersApiTest.php
Normal file
186
tests/Api/ChaptersApiTest.php
Normal file
@ -0,0 +1,186 @@
|
||||
<?php namespace Tests\Api;
|
||||
|
||||
use BookStack\Entities\Book;
|
||||
use BookStack\Entities\Chapter;
|
||||
use Tests\TestCase;
|
||||
|
||||
class ChaptersApiTest extends TestCase
|
||||
{
|
||||
use TestsApi;
|
||||
|
||||
protected $baseEndpoint = '/api/chapters';
|
||||
|
||||
public function test_index_endpoint_returns_expected_chapter()
|
||||
{
|
||||
$this->actingAsApiEditor();
|
||||
$firstChapter = Chapter::query()->orderBy('id', 'asc')->first();
|
||||
|
||||
$resp = $this->getJson($this->baseEndpoint . '?count=1&sort=+id');
|
||||
$resp->assertJson(['data' => [
|
||||
[
|
||||
'id' => $firstChapter->id,
|
||||
'name' => $firstChapter->name,
|
||||
'slug' => $firstChapter->slug,
|
||||
'book_id' => $firstChapter->book->id,
|
||||
'priority' => $firstChapter->priority,
|
||||
]
|
||||
]]);
|
||||
}
|
||||
|
||||
public function test_create_endpoint()
|
||||
{
|
||||
$this->actingAsApiEditor();
|
||||
$book = Book::query()->first();
|
||||
$details = [
|
||||
'name' => 'My API chapter',
|
||||
'description' => 'A chapter created via the API',
|
||||
'book_id' => $book->id,
|
||||
'tags' => [
|
||||
[
|
||||
'name' => 'tagname',
|
||||
'value' => 'tagvalue',
|
||||
]
|
||||
]
|
||||
];
|
||||
|
||||
$resp = $this->postJson($this->baseEndpoint, $details);
|
||||
$resp->assertStatus(200);
|
||||
$newItem = Chapter::query()->orderByDesc('id')->where('name', '=', $details['name'])->first();
|
||||
$resp->assertJson(array_merge($details, ['id' => $newItem->id, 'slug' => $newItem->slug]));
|
||||
$this->assertDatabaseHas('tags', [
|
||||
'entity_id' => $newItem->id,
|
||||
'entity_type' => $newItem->getMorphClass(),
|
||||
'name' => 'tagname',
|
||||
'value' => 'tagvalue',
|
||||
]);
|
||||
$resp->assertJsonMissing(['pages' => []]);
|
||||
$this->assertActivityExists('chapter_create', $newItem);
|
||||
}
|
||||
|
||||
public function test_chapter_name_needed_to_create()
|
||||
{
|
||||
$this->actingAsApiEditor();
|
||||
$book = Book::query()->first();
|
||||
$details = [
|
||||
'book_id' => $book->id,
|
||||
'description' => 'A chapter created via the API',
|
||||
];
|
||||
|
||||
$resp = $this->postJson($this->baseEndpoint, $details);
|
||||
$resp->assertStatus(422);
|
||||
$resp->assertJson($this->validationResponse([
|
||||
"name" => ["The name field is required."]
|
||||
]));
|
||||
}
|
||||
|
||||
public function test_chapter_book_id_needed_to_create()
|
||||
{
|
||||
$this->actingAsApiEditor();
|
||||
$details = [
|
||||
'name' => 'My api chapter',
|
||||
'description' => 'A chapter created via the API',
|
||||
];
|
||||
|
||||
$resp = $this->postJson($this->baseEndpoint, $details);
|
||||
$resp->assertStatus(422);
|
||||
$resp->assertJson($this->validationResponse([
|
||||
"book_id" => ["The book id field is required."]
|
||||
]));
|
||||
}
|
||||
|
||||
public function test_read_endpoint()
|
||||
{
|
||||
$this->actingAsApiEditor();
|
||||
$chapter = Chapter::visible()->first();
|
||||
$page = $chapter->pages()->first();
|
||||
|
||||
$resp = $this->getJson($this->baseEndpoint . "/{$chapter->id}");
|
||||
$resp->assertStatus(200);
|
||||
$resp->assertJson([
|
||||
'id' => $chapter->id,
|
||||
'slug' => $chapter->slug,
|
||||
'created_by' => [
|
||||
'name' => $chapter->createdBy->name,
|
||||
],
|
||||
'book_id' => $chapter->book_id,
|
||||
'updated_by' => [
|
||||
'name' => $chapter->createdBy->name,
|
||||
],
|
||||
'pages' => [
|
||||
[
|
||||
'id' => $page->id,
|
||||
'slug' => $page->slug,
|
||||
'name' => $page->name,
|
||||
]
|
||||
],
|
||||
]);
|
||||
$resp->assertJsonCount($chapter->pages()->count(), 'pages');
|
||||
}
|
||||
|
||||
public function test_update_endpoint()
|
||||
{
|
||||
$this->actingAsApiEditor();
|
||||
$chapter = Chapter::visible()->first();
|
||||
$details = [
|
||||
'name' => 'My updated API chapter',
|
||||
'description' => 'A chapter created via the API',
|
||||
'tags' => [
|
||||
[
|
||||
'name' => 'freshtag',
|
||||
'value' => 'freshtagval',
|
||||
]
|
||||
],
|
||||
];
|
||||
|
||||
$resp = $this->putJson($this->baseEndpoint . "/{$chapter->id}", $details);
|
||||
$chapter->refresh();
|
||||
|
||||
$resp->assertStatus(200);
|
||||
$resp->assertJson(array_merge($details, [
|
||||
'id' => $chapter->id, 'slug' => $chapter->slug, 'book_id' => $chapter->book_id
|
||||
]));
|
||||
$this->assertActivityExists('chapter_update', $chapter);
|
||||
}
|
||||
|
||||
public function test_delete_endpoint()
|
||||
{
|
||||
$this->actingAsApiEditor();
|
||||
$chapter = Chapter::visible()->first();
|
||||
$resp = $this->deleteJson($this->baseEndpoint . "/{$chapter->id}");
|
||||
|
||||
$resp->assertStatus(204);
|
||||
$this->assertActivityExists('chapter_delete');
|
||||
}
|
||||
|
||||
public function test_export_html_endpoint()
|
||||
{
|
||||
$this->actingAsApiEditor();
|
||||
$chapter = Chapter::visible()->first();
|
||||
|
||||
$resp = $this->get($this->baseEndpoint . "/{$chapter->id}/export/html");
|
||||
$resp->assertStatus(200);
|
||||
$resp->assertSee($chapter->name);
|
||||
$resp->assertHeader('Content-Disposition', 'attachment; filename="' . $chapter->slug . '.html"');
|
||||
}
|
||||
|
||||
public function test_export_plain_text_endpoint()
|
||||
{
|
||||
$this->actingAsApiEditor();
|
||||
$chapter = Chapter::visible()->first();
|
||||
|
||||
$resp = $this->get($this->baseEndpoint . "/{$chapter->id}/export/plaintext");
|
||||
$resp->assertStatus(200);
|
||||
$resp->assertSee($chapter->name);
|
||||
$resp->assertHeader('Content-Disposition', 'attachment; filename="' . $chapter->slug . '.txt"');
|
||||
}
|
||||
|
||||
public function test_export_pdf_endpoint()
|
||||
{
|
||||
$this->actingAsApiEditor();
|
||||
$chapter = Chapter::visible()->first();
|
||||
|
||||
$resp = $this->get($this->baseEndpoint . "/{$chapter->id}/export/pdf");
|
||||
$resp->assertStatus(200);
|
||||
$resp->assertHeader('Content-Disposition', 'attachment; filename="' . $chapter->slug . '.pdf"');
|
||||
}
|
||||
}
|
@ -23,6 +23,16 @@ trait TestsApi
|
||||
return ["error" => ["code" => $code, "message" => $message]];
|
||||
}
|
||||
|
||||
/**
|
||||
* 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;
|
||||
}
|
||||
/**
|
||||
* Get an approved API auth header.
|
||||
*/
|
||||
|
Reference in New Issue
Block a user