Files
project-manager/tests/TodoTest.php
T
aneurinandClaude Sonnet 5 bc1142b929 Add stage 4: frontend lists view + enforce 100-list cap
API: GET /api/lists is now ordered alphabetically (COLLATE NOCASE) by title
with no other option, and TodoListController rejects a create past 100 lists
per owner with 409. New TodoListRepository::countForOwner.

Frontend: HomeView replaces the placeholder with the user's lists (rendered in
API order) and a create form (title + optional description). New Pinia lists
store fetches and creates, re-fetching after a create so the new list sorts
into place; it is reset on logout. Form disables and explains at 100 lists;
create errors surface inline. Neutral .badge with a .badge--warn variant;
dropped the unused .facts styles.

Tests: alphabetical ordering and the 100-list cap. Suite: 17 passing.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
2026-09-03 18:42:15 +01:00

184 lines
7.2 KiB
PHP

<?php
declare(strict_types=1);
namespace Tests;
final class TodoTest extends ApiTestCase
{
public function test_lists_require_authentication(): void
{
self::assertSame(401, $this->request('GET', '/api/lists')->getStatusCode());
}
public function test_create_and_list_lists(): void
{
$auth = $this->authHeader();
$created = $this->request('POST', '/api/lists', [
'title' => ' Groceries ',
'description' => 'Weekly shop',
], $auth);
self::assertSame(201, $created->getStatusCode());
$list = $this->decode($created)['list'];
self::assertSame('Groceries', $list['title']);
self::assertSame('Weekly shop', $list['description']);
self::assertSame(0, $list['item_count']);
$index = $this->decode($this->request('GET', '/api/lists', null, $auth));
self::assertCount(1, $index['lists']);
self::assertSame($list['id'], $index['lists'][0]['id']);
}
public function test_lists_come_back_alphabetically(): void
{
$auth = $this->authHeader();
foreach (['Banana', 'apple', 'Cherry'] as $title) {
$this->request('POST', '/api/lists', ['title' => $title], $auth);
}
$titles = array_column($this->decode($this->request('GET', '/api/lists', null, $auth))['lists'], 'title');
self::assertSame(['apple', 'Banana', 'Cherry'], $titles);
}
public function test_an_owner_cannot_exceed_100_lists(): void
{
$auth = $this->authHeader();
for ($i = 1; $i <= 100; $i++) {
$response = $this->request('POST', '/api/lists', ['title' => "List {$i}"], $auth);
self::assertSame(201, $response->getStatusCode(), "list {$i} should be created");
}
$overflow = $this->request('POST', '/api/lists', ['title' => 'One too many'], $auth);
self::assertSame(409, $overflow->getStatusCode());
self::assertStringContainsString('100', $this->decode($overflow)['error']['message']);
// The cap is per owner, so a different user is unaffected.
$other = $this->authHeader('roomy@example.com');
self::assertSame(201, $this->request('POST', '/api/lists', ['title' => 'Fine'], $other)->getStatusCode());
}
public function test_list_creation_validates_title(): void
{
$response = $this->request('POST', '/api/lists', ['description' => 'no title'], $this->authHeader());
self::assertSame(422, $response->getStatusCode());
self::assertArrayHasKey('title', $this->decode($response)['error']['details']);
}
public function test_a_list_is_only_visible_to_its_owner(): void
{
$owner = $this->authHeader('owner@example.com');
$other = $this->authHeader('other@example.com');
$listId = $this->decode(
$this->request('POST', '/api/lists', ['title' => 'Private'], $owner),
)['list']['id'];
self::assertSame(200, $this->request('GET', "/api/lists/{$listId}", null, $owner)->getStatusCode());
self::assertSame(404, $this->request('GET', "/api/lists/{$listId}", null, $other)->getStatusCode());
self::assertSame(404, $this->request('PATCH', "/api/lists/{$listId}", ['title' => 'x'], $other)->getStatusCode());
self::assertSame(404, $this->request('DELETE', "/api/lists/{$listId}", null, $other)->getStatusCode());
}
public function test_update_and_delete_list(): void
{
$auth = $this->authHeader();
$listId = $this->decode(
$this->request('POST', '/api/lists', ['title' => 'Draft'], $auth),
)['list']['id'];
$updated = $this->decode(
$this->request('PATCH', "/api/lists/{$listId}", ['title' => 'Final'], $auth),
)['list'];
self::assertSame('Final', $updated['title']);
self::assertSame(204, $this->request('DELETE', "/api/lists/{$listId}", null, $auth)->getStatusCode());
self::assertSame(404, $this->request('GET', "/api/lists/{$listId}", null, $auth)->getStatusCode());
}
public function test_items_append_in_order_and_track_completion(): void
{
$auth = $this->authHeader();
$listId = $this->decode(
$this->request('POST', '/api/lists', ['title' => 'Chores'], $auth),
)['list']['id'];
foreach (['Wash up', 'Hoover', 'Bins'] as $text) {
$this->request('POST', "/api/lists/{$listId}/items", ['text' => $text], $auth);
}
$items = $this->decode($this->request('GET', "/api/lists/{$listId}/items", null, $auth))['items'];
self::assertSame(['Wash up', 'Hoover', 'Bins'], array_column($items, 'text'));
self::assertSame([0, 1, 2], array_column($items, 'position'));
self::assertFalse($items[0]['complete']);
$done = $this->decode(
$this->request('PATCH', "/api/lists/{$listId}/items/{$items[0]['id']}", ['complete' => true], $auth),
)['item'];
self::assertTrue($done['complete']);
$list = $this->decode($this->request('GET', "/api/lists/{$listId}", null, $auth))['list'];
self::assertSame(3, $list['item_count']);
self::assertSame(1, $list['completed_count']);
}
public function test_item_creation_accepts_explicit_position_and_validates_text(): void
{
$auth = $this->authHeader();
$listId = $this->decode(
$this->request('POST', '/api/lists', ['title' => 'L'], $auth),
)['list']['id'];
$item = $this->decode(
$this->request('POST', "/api/lists/{$listId}/items", ['text' => 'Pinned', 'position' => 5], $auth),
)['item'];
self::assertSame(5, $item['position']);
$bad = $this->request('POST', "/api/lists/{$listId}/items", ['text' => ' '], $auth);
self::assertSame(422, $bad->getStatusCode());
self::assertArrayHasKey('text', $this->decode($bad)['error']['details']);
}
public function test_deleting_a_list_cascades_to_its_items(): void
{
$auth = $this->authHeader();
$listId = $this->decode(
$this->request('POST', '/api/lists', ['title' => 'Temp'], $auth),
)['list']['id'];
$itemId = $this->decode(
$this->request('POST', "/api/lists/{$listId}/items", ['text' => 'x'], $auth),
)['item']['id'];
$this->request('DELETE', "/api/lists/{$listId}", null, $auth);
// The parent list is gone, so the item route 404s on the list check.
self::assertSame(
404,
$this->request('GET', "/api/lists/{$listId}/items/{$itemId}", null, $auth)->getStatusCode(),
);
}
public function test_items_under_another_users_list_are_not_reachable(): void
{
$owner = $this->authHeader('owner2@example.com');
$other = $this->authHeader('other2@example.com');
$listId = $this->decode(
$this->request('POST', '/api/lists', ['title' => 'Mine'], $owner),
)['list']['id'];
self::assertSame(
404,
$this->request('POST', "/api/lists/{$listId}/items", ['text' => 'sneaky'], $other)->getStatusCode(),
);
self::assertSame(
404,
$this->request('GET', "/api/lists/{$listId}/items", null, $other)->getStatusCode(),
);
}
}