Rename lists -> projects and items -> cards throughout
Project scope shifts from a todo list to a project-management app. This is a straight terminology rename across code, comments, migrations, tests, and docs — no behaviour change. - DB: table todo_lists -> projects, todo_items -> cards, column todo_items.list_id -> cards.project_id, indexes renamed. Migrations 003/004 rewritten in place (destructive; recreate the volume with `down -v`). - API: /api/lists -> /api/projects, nested /items -> /cards, reorder body item_ids -> card_ids, JSON keys list/lists/item/items -> project/projects/ card/cards, item_count -> card_count, list_id -> project_id, and the matching error messages. - PHP: TodoList/TodoItem Repository + Controller -> Project/Card; shared SQL aliases l/i -> p/c. - Frontend: stores lists.ts/items.ts -> projects.ts/cards.ts (useProjectsStore / useCardsStore, MAX_PROJECTS), ListView -> ProjectView, TodoItemRow -> CardRow, route /lists/:id -> /projects/:id (name "project"), types TodoList/ TodoItem -> Project/Card, and all UI copy. CSS .lists*/.list-head* -> .projects*/.project-head*, .item* -> .card-row* (kept the generic .card panel class), .items -> .cards. - Product name in the header, PWA manifest, index.html title and package descriptions -> "Project Manager" / "Projects". Backend suite: 37 passing. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
@@ -0,0 +1,245 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
namespace Tests;
|
||||
|
||||
final class ProjectTest extends ApiTestCase
|
||||
{
|
||||
public function test_projects_require_authentication(): void
|
||||
{
|
||||
self::assertSame(401, $this->request('GET', '/api/projects')->getStatusCode());
|
||||
}
|
||||
|
||||
public function test_create_and_list_projects(): void
|
||||
{
|
||||
$auth = $this->authHeader();
|
||||
|
||||
$created = $this->request('POST', '/api/projects', [
|
||||
'title' => ' Groceries ',
|
||||
'description' => 'Weekly shop',
|
||||
], $auth);
|
||||
|
||||
self::assertSame(201, $created->getStatusCode());
|
||||
$project = $this->decode($created)['project'];
|
||||
self::assertSame('Groceries', $project['title']);
|
||||
self::assertSame('Weekly shop', $project['description']);
|
||||
self::assertSame(0, $project['card_count']);
|
||||
|
||||
$index = $this->decode($this->request('GET', '/api/projects', null, $auth));
|
||||
self::assertCount(1, $index['projects']);
|
||||
self::assertSame($project['id'], $index['projects'][0]['id']);
|
||||
}
|
||||
|
||||
public function test_projects_come_back_alphabetically(): void
|
||||
{
|
||||
$auth = $this->authHeader();
|
||||
|
||||
foreach (['Banana', 'apple', 'Cherry'] as $title) {
|
||||
$this->request('POST', '/api/projects', ['title' => $title], $auth);
|
||||
}
|
||||
|
||||
$titles = array_column($this->decode($this->request('GET', '/api/projects', null, $auth))['projects'], 'title');
|
||||
self::assertSame(['apple', 'Banana', 'Cherry'], $titles);
|
||||
}
|
||||
|
||||
public function test_an_owner_cannot_exceed_100_projects(): void
|
||||
{
|
||||
$auth = $this->authHeader();
|
||||
|
||||
for ($i = 1; $i <= 100; $i++) {
|
||||
$response = $this->request('POST', '/api/projects', ['title' => "Project {$i}"], $auth);
|
||||
self::assertSame(201, $response->getStatusCode(), "project {$i} should be created");
|
||||
}
|
||||
|
||||
$overflow = $this->request('POST', '/api/projects', ['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/projects', ['title' => 'Fine'], $other)->getStatusCode());
|
||||
}
|
||||
|
||||
public function test_project_creation_validates_title(): void
|
||||
{
|
||||
$response = $this->request('POST', '/api/projects', ['description' => 'no title'], $this->authHeader());
|
||||
|
||||
self::assertSame(422, $response->getStatusCode());
|
||||
self::assertArrayHasKey('title', $this->decode($response)['error']['details']);
|
||||
}
|
||||
|
||||
public function test_a_project_is_only_visible_to_its_owner(): void
|
||||
{
|
||||
$owner = $this->authHeader('owner@example.com');
|
||||
$other = $this->authHeader('other@example.com');
|
||||
|
||||
$projectId = $this->decode(
|
||||
$this->request('POST', '/api/projects', ['title' => 'Private'], $owner),
|
||||
)['project']['id'];
|
||||
|
||||
self::assertSame(200, $this->request('GET', "/api/projects/{$projectId}", null, $owner)->getStatusCode());
|
||||
self::assertSame(404, $this->request('GET', "/api/projects/{$projectId}", null, $other)->getStatusCode());
|
||||
self::assertSame(404, $this->request('PATCH', "/api/projects/{$projectId}", ['title' => 'x'], $other)->getStatusCode());
|
||||
self::assertSame(404, $this->request('DELETE', "/api/projects/{$projectId}", null, $other)->getStatusCode());
|
||||
}
|
||||
|
||||
public function test_update_and_delete_project(): void
|
||||
{
|
||||
$auth = $this->authHeader();
|
||||
$projectId = $this->decode(
|
||||
$this->request('POST', '/api/projects', ['title' => 'Draft'], $auth),
|
||||
)['project']['id'];
|
||||
|
||||
$updated = $this->decode(
|
||||
$this->request('PATCH', "/api/projects/{$projectId}", ['title' => 'Final'], $auth),
|
||||
)['project'];
|
||||
self::assertSame('Final', $updated['title']);
|
||||
|
||||
self::assertSame(204, $this->request('DELETE', "/api/projects/{$projectId}", null, $auth)->getStatusCode());
|
||||
self::assertSame(404, $this->request('GET', "/api/projects/{$projectId}", null, $auth)->getStatusCode());
|
||||
}
|
||||
|
||||
public function test_cards_append_in_order_and_track_completion(): void
|
||||
{
|
||||
$auth = $this->authHeader();
|
||||
$projectId = $this->decode(
|
||||
$this->request('POST', '/api/projects', ['title' => 'Chores'], $auth),
|
||||
)['project']['id'];
|
||||
|
||||
foreach (['Wash up', 'Hoover', 'Bins'] as $text) {
|
||||
$this->request('POST', "/api/projects/{$projectId}/cards", ['text' => $text], $auth);
|
||||
}
|
||||
|
||||
$cards = $this->decode($this->request('GET', "/api/projects/{$projectId}/cards", null, $auth))['cards'];
|
||||
self::assertSame(['Wash up', 'Hoover', 'Bins'], array_column($cards, 'text'));
|
||||
self::assertSame([0, 1, 2], array_column($cards, 'position'));
|
||||
self::assertFalse($cards[0]['complete']);
|
||||
|
||||
$done = $this->decode(
|
||||
$this->request('PATCH', "/api/projects/{$projectId}/cards/{$cards[0]['id']}", ['complete' => true], $auth),
|
||||
)['card'];
|
||||
self::assertTrue($done['complete']);
|
||||
|
||||
$project = $this->decode($this->request('GET', "/api/projects/{$projectId}", null, $auth))['project'];
|
||||
self::assertSame(3, $project['card_count']);
|
||||
self::assertSame(1, $project['completed_count']);
|
||||
}
|
||||
|
||||
public function test_card_creation_accepts_explicit_position_and_validates_text(): void
|
||||
{
|
||||
$auth = $this->authHeader();
|
||||
$projectId = $this->decode(
|
||||
$this->request('POST', '/api/projects', ['title' => 'P'], $auth),
|
||||
)['project']['id'];
|
||||
|
||||
$card = $this->decode(
|
||||
$this->request('POST', "/api/projects/{$projectId}/cards", ['text' => 'Pinned', 'position' => 5], $auth),
|
||||
)['card'];
|
||||
self::assertSame(5, $card['position']);
|
||||
|
||||
$bad = $this->request('POST', "/api/projects/{$projectId}/cards", ['text' => ' '], $auth);
|
||||
self::assertSame(422, $bad->getStatusCode());
|
||||
self::assertArrayHasKey('text', $this->decode($bad)['error']['details']);
|
||||
}
|
||||
|
||||
public function test_cards_can_be_reordered_in_bulk(): void
|
||||
{
|
||||
$auth = $this->authHeader();
|
||||
$projectId = $this->decode(
|
||||
$this->request('POST', '/api/projects', ['title' => 'Reorder'], $auth),
|
||||
)['project']['id'];
|
||||
|
||||
$ids = [];
|
||||
foreach (['A', 'B', 'C'] as $text) {
|
||||
$ids[$text] = $this->decode(
|
||||
$this->request('POST', "/api/projects/{$projectId}/cards", ['text' => $text], $auth),
|
||||
)['card']['id'];
|
||||
}
|
||||
|
||||
$response = $this->request('PUT', "/api/projects/{$projectId}/cards/order", [
|
||||
'card_ids' => [$ids['C'], $ids['A'], $ids['B']],
|
||||
], $auth);
|
||||
|
||||
self::assertSame(200, $response->getStatusCode());
|
||||
$cards = $this->decode($response)['cards'];
|
||||
self::assertSame(['C', 'A', 'B'], array_column($cards, 'text'));
|
||||
self::assertSame([0, 1, 2], array_column($cards, 'position'));
|
||||
|
||||
// Order persists on a fresh read.
|
||||
$reread = $this->decode($this->request('GET', "/api/projects/{$projectId}/cards", null, $auth))['cards'];
|
||||
self::assertSame(['C', 'A', 'B'], array_column($reread, 'text'));
|
||||
}
|
||||
|
||||
public function test_reorder_rejects_an_incomplete_id_set(): void
|
||||
{
|
||||
$auth = $this->authHeader();
|
||||
$projectId = $this->decode(
|
||||
$this->request('POST', '/api/projects', ['title' => 'Reorder'], $auth),
|
||||
)['project']['id'];
|
||||
$first = $this->decode(
|
||||
$this->request('POST', "/api/projects/{$projectId}/cards", ['text' => 'one'], $auth),
|
||||
)['card']['id'];
|
||||
$this->request('POST', "/api/projects/{$projectId}/cards", ['text' => 'two'], $auth);
|
||||
|
||||
$response = $this->request('PUT', "/api/projects/{$projectId}/cards/order", [
|
||||
'card_ids' => [$first],
|
||||
], $auth);
|
||||
|
||||
self::assertSame(422, $response->getStatusCode());
|
||||
}
|
||||
|
||||
public function test_reorder_is_scoped_to_the_owner(): void
|
||||
{
|
||||
$owner = $this->authHeader('ro@example.com');
|
||||
$other = $this->authHeader('rx@example.com');
|
||||
$projectId = $this->decode(
|
||||
$this->request('POST', '/api/projects', ['title' => 'Mine'], $owner),
|
||||
)['project']['id'];
|
||||
$cardId = $this->decode(
|
||||
$this->request('POST', "/api/projects/{$projectId}/cards", ['text' => 'x'], $owner),
|
||||
)['card']['id'];
|
||||
|
||||
self::assertSame(404, $this->request('PUT', "/api/projects/{$projectId}/cards/order", [
|
||||
'card_ids' => [$cardId],
|
||||
], $other)->getStatusCode());
|
||||
}
|
||||
|
||||
public function test_deleting_a_project_cascades_to_its_cards(): void
|
||||
{
|
||||
$auth = $this->authHeader();
|
||||
$projectId = $this->decode(
|
||||
$this->request('POST', '/api/projects', ['title' => 'Temp'], $auth),
|
||||
)['project']['id'];
|
||||
$cardId = $this->decode(
|
||||
$this->request('POST', "/api/projects/{$projectId}/cards", ['text' => 'x'], $auth),
|
||||
)['card']['id'];
|
||||
|
||||
$this->request('DELETE', "/api/projects/{$projectId}", null, $auth);
|
||||
|
||||
// The parent project is gone, so the card route 404s on the project check.
|
||||
self::assertSame(
|
||||
404,
|
||||
$this->request('GET', "/api/projects/{$projectId}/cards/{$cardId}", null, $auth)->getStatusCode(),
|
||||
);
|
||||
}
|
||||
|
||||
public function test_cards_under_another_users_project_are_not_reachable(): void
|
||||
{
|
||||
$owner = $this->authHeader('owner2@example.com');
|
||||
$other = $this->authHeader('other2@example.com');
|
||||
|
||||
$projectId = $this->decode(
|
||||
$this->request('POST', '/api/projects', ['title' => 'Mine'], $owner),
|
||||
)['project']['id'];
|
||||
|
||||
self::assertSame(
|
||||
404,
|
||||
$this->request('POST', "/api/projects/{$projectId}/cards", ['text' => 'sneaky'], $other)->getStatusCode(),
|
||||
);
|
||||
self::assertSame(
|
||||
404,
|
||||
$this->request('GET', "/api/projects/{$projectId}/cards", null, $other)->getStatusCode(),
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user