fix tests
This commit is contained in:
@@ -8,7 +8,7 @@ test('user can start a time tracker', function () {
|
||||
Sanctum::actingAs($user = User::factory()->create());
|
||||
$toDo = ToDo::factory()->create(['user_id' => $user->id, 'checked' => false]);
|
||||
|
||||
$this->postJson('/api/time-tracker', ['todo_id' => $toDo->id])
|
||||
$this->postJson('/api/time-trackers', ['todo_id' => $toDo->id])
|
||||
->assertCreated()
|
||||
->assertJson([
|
||||
'id' => $toDo->timeTrackers()->value('id'),
|
||||
@@ -27,10 +27,10 @@ test('user can retrieve his current timer', function () {
|
||||
Sanctum::actingAs($user = User::factory()->create());
|
||||
$toDo = ToDo::factory()->create(['user_id' => $user->id, 'checked' => false]);
|
||||
|
||||
$this->postJson('/api/time-tracker', ['todo_id' => $toDo->id])
|
||||
$this->postJson('/api/time-trackers', ['todo_id' => $toDo->id])
|
||||
->assertCreated();
|
||||
|
||||
$this->get('/api/time-tracker/user')
|
||||
$this->get('/api/time-trackers/user')
|
||||
->assertOk()
|
||||
->assertJson([
|
||||
'id' => $toDo->timeTrackers()->value('id'),
|
||||
@@ -48,7 +48,7 @@ test('user can retrieve his current timer', function () {
|
||||
test('user has no content response if not current time tracker', function () {
|
||||
Sanctum::actingAs($user = User::factory()->create());
|
||||
|
||||
$this->get('/api/time-tracker/user')
|
||||
$this->get('/api/time-trackers/user')
|
||||
->assertNoContent();
|
||||
});
|
||||
|
||||
@@ -56,10 +56,10 @@ test('user can stop current time tracker', function () {
|
||||
Sanctum::actingAs($user = User::factory()->create());
|
||||
$toDo = ToDo::factory()->create(['user_id' => $user->id, 'checked' => false]);
|
||||
|
||||
$this->postJson('/api/time-tracker', ['todo_id' => $toDo->id])
|
||||
$this->postJson('/api/time-trackers', ['todo_id' => $toDo->id])
|
||||
->assertCreated();
|
||||
|
||||
$this->delete('/api/time-tracker/user')
|
||||
$this->delete('/api/time-trackers/user')
|
||||
->assertNoContent();
|
||||
|
||||
expect($toDo->timeTrackers->first())
|
||||
|
||||
@@ -32,7 +32,7 @@ test('an user can retrieve his to dos', function () {
|
||||
Sanctum::actingAs($this->user);
|
||||
ToDo::factory()->count(10)->create([
|
||||
'user_id' => $this->user->id,
|
||||
'checked' => false,
|
||||
'checked' => null,
|
||||
]);
|
||||
|
||||
$response = $this->get('api/todos');
|
||||
@@ -48,6 +48,25 @@ test('an user can retrieve his to dos', function () {
|
||||
->assertJson($toDos);
|
||||
});
|
||||
|
||||
test('an user can retrieve his finished to dos', function () {
|
||||
Sanctum::actingAs($this->user);
|
||||
ToDo::factory()->count(10)->create([
|
||||
'user_id' => $this->user->id,
|
||||
]);
|
||||
|
||||
$response = $this->get('api/todos/finished');
|
||||
|
||||
$toDos = $this->user->toDos()->whereNotNull('checked')->get()->map(fn ($toDo) => [
|
||||
'id' => $toDo->id,
|
||||
'user_id' => $toDo->user_id,
|
||||
'name' => $toDo->name,
|
||||
'checked' => now(),
|
||||
])->toArray();
|
||||
|
||||
$response->assertOk()
|
||||
->assertJson($toDos);
|
||||
});
|
||||
|
||||
test('an user can retrieve a to do', function () {
|
||||
Sanctum::actingAs($this->user);
|
||||
$toDos = ToDo::factory()->count(10)->create([
|
||||
|
||||
Reference in New Issue
Block a user