Our task list API should be able to work with an entity called Task
.
Tasks are entities that describe a task a user wants to complete. They contain a:
- title to name the task
- description to hold details about the task
- an optional datetime that the task is completed on
Our goal for this wave is to be able to create, read, update, and delete different tasks. We will create RESTful routes for these different operations.
There should be a Task
model that lives in app/models/task.py
.
Tasks should contain these attributes. The tests require the following columns to be named exactly as title
, description
, and completed_at
.
id
: a primary key for each tasktitle
: text to name the taskdescription
: text to describe the taskcompleted_at
: a datetime that represents the date that a task is completed on. Can be nullable, and contain a null value. A task with anull
value forcompleted_at
has not been completed. When we create a new task,completed_at
should benull
AKANone
in Python.
- To work with date information, we can import the
datetime
data type with the import linefrom datetime import datetime
. - SQLAlchemy supports optional, or nullable, columns with specific syntax.
- Don't forget to run:
flask db init
once during setupflask db migrate
every time there's a change in models, in order to generate migrationsflask db upgrade
to run all generated migrations
- We can assume that the value of each task's
completed_at
attribute will beNone
, until wave 3. (Read below for examples) - We can assume that the API will designate
is_complete
asfalse
, until wave 3. (Read below for examples)
- Pay attention to the exact shape of the expected JSON. Double-check nested data structures and the names of the keys for any mispellings.
- That said, remember that dictionaries do not have an implied order. This is still true in JSON with objects. When you make Postman requests, the order of the key/value pairings within the response JSON object does not need to match the order specified in this document. (The term "object" in JSON is analagous to "dictionary" in Python.)
- Use the tests in
tests/test_wave_01.py
to guide your implementation. - You may feel that there are missing tests and missing edge cases considered in this wave. This is intentional.
- You have fulfilled wave 1 requirements if all of the wave 1 tests pass.
- You are free to add additional features, as long as the wave 1 tests still pass. However, we recommend that you consider the future waves, first.
- Some tests use a fixture named
one_task
that is defined intests/conftest.py
. This fixture saves a specific task to the test database.
In addition to testing your code with pytest and postman, you can play test your code with the CLI (Command Line Interface) by running python3 cli/main.py
.
The flask server needs to be running first before running the CLI.
The following are required routes for wave 1. Feel free to implement the routes in any order within this wave.
As a client, I want to be able to make a POST
request to /tasks
with the following HTTP request body
{
"title": "A Brand New Task",
"description": "Test Description",
"completed_at": null
}
and get this response:
201 CREATED
{
"task": {
"id": 1,
"title": "A Brand New Task",
"description": "Test Description",
"is_complete": false
}
}
so that I know I successfully created a Task that is saved in the database.
As a client, I want to be able to make a GET
request to /tasks
when there is at least one saved task and get this response:
200 OK
[
{
"id": 1,
"title": "Example Task Title 1",
"description": "Example Task Description 1",
"is_complete": false
},
{
"id": 2,
"title": "Example Task Title 2",
"description": "Example Task Description 2",
"is_complete": false
}
]
As a client, I want to be able to make a GET
request to /tasks
when there are zero saved tasks and get this response:
200 OK
[]
As a client, I want to be able to make a GET
request to /tasks/1
when there is at least one saved task and get this response:
200 OK
{
"task": {
"id": 1,
"title": "Example Task Title 1",
"description": "Example Task Description 1",
"is_complete": false
}
}
As a client, I want to be able to make a PUT
request to /tasks/1
when there is at least one saved task with this request body:
{
"title": "Updated Task Title",
"description": "Updated Test Description"
}
and get this response:
200 OK
{
"task": {
"id": 1,
"title": "Updated Task Title",
"description": "Updated Test Description",
"is_complete": false
}
}
Note that the update endpoint does update the completed_at
attribute. This will be updated with custom endpoints implemented in Wave 3.
As a client, I want to be able to make a DELETE
request to /tasks/1
when there is at least one saved task and get this response:
200 OK
{
"details": "Task 1 \"Go on my daily walk 🏞\" successfully deleted"
}
As a client, if I make any of the following requests:
GET
/tasks/<task_id>
UPDATE
/tasks/<task_id>
DELETE
/tasks/<task_id>
and there is no existing task with an id
of task_id
The response code should be 404
.
You may choose the response body.
Make sure to complete the tests for non-existing tasks to check that the correct response body is returned.
As a client, I want to be able to make a POST
request to /tasks
with the following HTTP request body
{
"description": "Test Description",
"completed_at": null
}
and get this response:
400 Bad Request
{
"details": "Invalid data"
}
so that I know I did not create a Task that is saved in the database.
If the HTTP request is missing description
, we should also get this response:
400 Bad Request
{
"details": "Invalid data"
}