1
0
mirror of https://github.com/Kovah/LinkAce.git synced 2025-02-24 11:13:02 +01:00
LinkAce/tests/Models/NoteCreateTest.php
Kovah 113b30120d
Update to Laravel 8, refactor tests to use new factory classes
Also updates all other needed packages.
2020-11-08 20:10:42 +01:00

53 lines
1.2 KiB
PHP

<?php
namespace Tests\Models;
use App\Models\Link;
use App\Models\User;
use App\Repositories\NoteRepository;
use Illuminate\Foundation\Testing\DatabaseMigrations;
use Illuminate\Foundation\Testing\DatabaseTransactions;
use Tests\TestCase;
class NoteCreateTest extends TestCase
{
use DatabaseMigrations;
use DatabaseTransactions;
/** @var User */
private $user;
public function setUp(): void
{
parent::setUp();
$this->user = User::factory()->create();
}
public function testValidNoteCreation(): void
{
$this->be($this->user);
$link = Link::factory()->create();
$originalData = [
'note' => 'Lorem ipsum dolor sit amet, consectetur adipisici elit, sed eiusmod tempor incidunt.',
'link_id' => $link->id,
];
$note = NoteRepository::create($originalData);
$automatedData = [
'id' => $note->id,
'user_id' => auth()->user()->id,
'created_at' => $note->created_at,
'updated_at' => $note->updated_at,
'deleted_at' => null,
];
$assertedData = array_merge($automatedData, $originalData);
$this->assertDatabaseHas('notes', $assertedData);
}
}