refactor: replace custom CRM with Monica fork
Some checks failed
Build & Push Monica Image to Gitea Registry / build-and-push (push) Failing after 9s
Some checks failed
Build & Push Monica Image to Gitea Registry / build-and-push (push) Failing after 9s
This commit is contained in:
215
tests/Api/ApiJournalTest.php
Normal file
215
tests/Api/ApiJournalTest.php
Normal file
@@ -0,0 +1,215 @@
|
||||
<?php
|
||||
|
||||
namespace Tests\Api;
|
||||
|
||||
use Tests\ApiTestCase;
|
||||
use App\Models\Journal\Entry;
|
||||
use Illuminate\Foundation\Testing\DatabaseTransactions;
|
||||
|
||||
class ApiJournalTest extends ApiTestCase
|
||||
{
|
||||
use DatabaseTransactions;
|
||||
|
||||
protected $jsonJournal = [
|
||||
'id',
|
||||
'object',
|
||||
'title',
|
||||
'post',
|
||||
'account' => [
|
||||
'id',
|
||||
],
|
||||
'created_at',
|
||||
'updated_at',
|
||||
];
|
||||
|
||||
/** @test */
|
||||
public function it_gets_all_the_journal_entries()
|
||||
{
|
||||
$user = $this->signin();
|
||||
$firstEntry = factory(Entry::class)->create([
|
||||
'account_id' => $user->account_id,
|
||||
]);
|
||||
$secondEntry = factory(Entry::class)->create([
|
||||
'account_id' => $user->account_id,
|
||||
]);
|
||||
|
||||
$response = $this->json('GET', '/api/journal');
|
||||
|
||||
$response->assertStatus(200);
|
||||
$response->assertJsonStructure([
|
||||
'data' => ['*' => $this->jsonJournal],
|
||||
]);
|
||||
$response->assertJsonFragment([
|
||||
'object' => 'entry',
|
||||
'id' => $firstEntry->id,
|
||||
]);
|
||||
$response->assertJsonFragment([
|
||||
'object' => 'entry',
|
||||
'id' => $secondEntry->id,
|
||||
]);
|
||||
}
|
||||
|
||||
/** @test */
|
||||
public function it_gets_one_journal_entry()
|
||||
{
|
||||
$user = $this->signin();
|
||||
$firstEntry = factory(Entry::class)->create([
|
||||
'account_id' => $user->account_id,
|
||||
]);
|
||||
$secondEntry = factory(Entry::class)->create([
|
||||
'account_id' => $user->account_id,
|
||||
]);
|
||||
|
||||
$response = $this->json('GET', '/api/journal/'.$firstEntry->id);
|
||||
|
||||
$response->assertStatus(200);
|
||||
$response->assertJsonStructure([
|
||||
'data' => $this->jsonJournal,
|
||||
]);
|
||||
$response->assertJsonFragment([
|
||||
'object' => 'entry',
|
||||
'id' => $firstEntry->id,
|
||||
]);
|
||||
$response->assertJsonMissingExact([
|
||||
'object' => 'entry',
|
||||
'id' => $secondEntry->id,
|
||||
]);
|
||||
}
|
||||
|
||||
/** @test */
|
||||
public function it_cant_get_a_journal_entry_with_an_invalid_id()
|
||||
{
|
||||
$user = $this->signin();
|
||||
|
||||
$response = $this->json('GET', '/api/journal/0');
|
||||
|
||||
$this->expectNotFound($response);
|
||||
}
|
||||
|
||||
/** @test */
|
||||
public function it_creates_a_journal_entry()
|
||||
{
|
||||
$user = $this->signin();
|
||||
|
||||
$response = $this->json('POST', '/api/journal', [
|
||||
'title' => 'my title',
|
||||
'post' => 'content post',
|
||||
]);
|
||||
|
||||
$response->assertStatus(201);
|
||||
$response->assertJsonStructure([
|
||||
'data' => $this->jsonJournal,
|
||||
]);
|
||||
$entryId = $response->json('data.id');
|
||||
$response->assertJsonFragment([
|
||||
'object' => 'entry',
|
||||
'id' => $entryId,
|
||||
'title' => 'my title',
|
||||
'post' => 'content post',
|
||||
]);
|
||||
|
||||
$this->assertGreaterThan(0, $entryId);
|
||||
$this->assertDatabaseHas('entries', [
|
||||
'account_id' => $user->account_id,
|
||||
'id' => $entryId,
|
||||
'title' => 'my title',
|
||||
'post' => 'content post',
|
||||
]);
|
||||
}
|
||||
|
||||
/** @test */
|
||||
public function it_cant_create_a_journal_entry_with_missing_parameters()
|
||||
{
|
||||
$user = $this->signin();
|
||||
|
||||
$response = $this->json('POST', '/api/journal', []);
|
||||
|
||||
$this->expectDataError($response, [
|
||||
'The title field is required.',
|
||||
'The post field is required.',
|
||||
]);
|
||||
}
|
||||
|
||||
/** @test */
|
||||
public function it_updates_a_journal_entry()
|
||||
{
|
||||
$user = $this->signin();
|
||||
$entry = factory(Entry::class)->create([
|
||||
'account_id' => $user->account_id,
|
||||
'title' => 'xxx',
|
||||
]);
|
||||
|
||||
$response = $this->json('PUT', '/api/journal/'.$entry->id, [
|
||||
'title' => 'my title',
|
||||
'post' => 'content post',
|
||||
]);
|
||||
|
||||
$response->assertStatus(200);
|
||||
$response->assertJsonStructure([
|
||||
'data' => $this->jsonJournal,
|
||||
]);
|
||||
$entryId = $response->json('data.id');
|
||||
$this->assertEquals($entry->id, $entryId);
|
||||
$response->assertJsonFragment([
|
||||
'object' => 'entry',
|
||||
'id' => $entryId,
|
||||
'title' => 'my title',
|
||||
'post' => 'content post',
|
||||
]);
|
||||
|
||||
$this->assertGreaterThan(0, $entryId);
|
||||
$this->assertDatabaseHas('entries', [
|
||||
'account_id' => $user->account_id,
|
||||
'id' => $entryId,
|
||||
'title' => 'my title',
|
||||
'post' => 'content post',
|
||||
]);
|
||||
}
|
||||
|
||||
/** @test */
|
||||
public function it_cant_update_a_journal_entry_with_missing_parameters()
|
||||
{
|
||||
$user = $this->signin();
|
||||
$entry = factory(Entry::class)->create([
|
||||
'account_id' => $user->account_id,
|
||||
]);
|
||||
|
||||
$response = $this->json('PUT', '/api/journal/'.$entry->id, []);
|
||||
|
||||
$this->expectDataError($response, [
|
||||
'The title field is required.',
|
||||
'The post field is required.',
|
||||
]);
|
||||
}
|
||||
|
||||
/** @test */
|
||||
public function it_deletes_a_journal_entry()
|
||||
{
|
||||
$user = $this->signin();
|
||||
$entry = factory(Entry::class)->create([
|
||||
'account_id' => $user->account_id,
|
||||
]);
|
||||
$this->assertDatabaseHas('entries', [
|
||||
'account_id' => $user->account_id,
|
||||
'id' => $entry->id,
|
||||
]);
|
||||
|
||||
$response = $this->json('DELETE', '/api/journal/'.$entry->id);
|
||||
|
||||
$response->assertStatus(200);
|
||||
$this->assertDatabaseMissing('entries', [
|
||||
'account_id' => $user->account_id,
|
||||
'id' => $entry->id,
|
||||
]);
|
||||
}
|
||||
|
||||
/** @test */
|
||||
public function it_cant_delete_a_journal_entry_with_an_invalid_id()
|
||||
{
|
||||
$user = $this->signin();
|
||||
|
||||
$response = $this->json('DELETE', '/api/journal/0');
|
||||
|
||||
$this->expectNotFound($response);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user