Ritarira / Books

0 stars 0 forks source link

Rating #1

Closed Ritarira closed 6 years ago

Ritarira commented 6 years ago

User Story: As an API consumer, I want to see rating of the book both when requesting a list of books and a single book, So that I get a value of the book.

Acceptance Criteria:

Ritarira commented 6 years ago

Test plan:

Ritarira commented 6 years ago

:white_check_mark: Check if I can get the full list of the books with rating fields GET localhost:3000/books Status 200

[
    {
        "id": 10,
        "author_id": 7,
        "title": "Wait for you",
        "description": "Love isn't meant to be perfect... Except when it is",
        "created_at": "2017-12-07T07:51:51.868Z",
        "updated_at": "2017-12-07T07:51:51.868Z",
        "rating": 0,
        "author": {
            "first_name": "J",
            "last_name": "Lynn"
        }
    },
    {
        "id": 16,
        "author_id": 10,
        "title": "Cars",
        "description": "A new novel about risking everything for love",
        "created_at": "2017-12-12T12:19:03.858Z",
        "updated_at": "2017-12-12T12:19:03.858Z",
        "rating": 10,
        "author": {
            "first_name": "Katie",
            "last_name": "McGarry"
        }
    }
]
Ritarira commented 6 years ago

:white_check_mark: Check if I can get a single book with a rating field GET localhost:3000/books/16 Status 200

{
    "id": 16,
    "author_id": 10,
    "title": "Cars",
    "description": "A new novel about risking everything for love",
    "created_at": "2017-12-12T12:19:03.858Z",
    "updated_at": "2017-12-12T12:19:03.858Z",
    "rating": 10,
    "author": {
        "first_name": "Katie",
        "last_name": "McGarry"
    }
}
Ritarira commented 6 years ago

:white_check_mark: Check if I can create a new book with rating field Request: POST localhost:3000/books

{

    "rating": 9,
    "author_id": 10,
    "title": "Beautiful Disaster",
    "description": "The new Abby Abernathy is a good girl. She doesn’t drink or swear, and she has the appropriate percentage of cardigans in her wardrobe. Abby believes she has enough distance between her and the darkness of her past, but when she arrives at college with her best friend America, her path to a new beginning is quickly challenged by Eastern University’s Walking One-Night Stand. Travis Maddox, lean, cut, and covered in tattoos, is exactly what Abby needs—and wants—to avoid. He spends his nights winning money in a floating fight ring, and his days as the charming college co-ed. Intrigued by Abby’s resistance to his charms, Travis tricks her into his daily life with a simple bet. If he loses, he must remain abstinent for a month. If Abby loses, she must live in Travis’ apartment for the same amount of time. Either way, Travis has no idea that he has met his match."

}

Response: Status 201

{
    "id": 17,
    "author_id": 10,
    "title": "Beautiful Disaster",
    "description": "The new Abby Abernathy is a good girl. She doesn’t drink or swear, and she has the appropriate percentage of cardigans in her wardrobe. Abby believes she has enough distance between her and the darkness of her past, but when she arrives at college with her best friend America, her path to a new beginning is quickly challenged by Eastern University’s Walking One-Night Stand. Travis Maddox, lean, cut, and covered in tattoos, is exactly what Abby needs—and wants—to avoid. He spends his nights winning money in a floating fight ring, and his days as the charming college co-ed. Intrigued by Abby’s resistance to his charms, Travis tricks her into his daily life with a simple bet. If he loses, he must remain abstinent for a month. If Abby loses, she must live in Travis’ apartment for the same amount of time. Either way, Travis has no idea that he has met his match.",
    "created_at": "2017-12-13T08:28:54.872Z",
    "updated_at": "2017-12-13T08:28:54.872Z",
    "rating": 9
}
Ritarira commented 6 years ago

:white_check_mark: Check if I can make changes to the rating field Request: GET localhost:3000/books/10

Response: Status 200

{
    "id": 10,
    "rating": 9,
    "author_id": 7,
    "title": "Wait for you",
    "description": "Love isn't meant to be perfect... Except when it is",
    "created_at": "2017-12-07T07:51:51.868Z",
    "updated_at": "2017-12-13T08:18:21.555Z"
}

Request: PUT localhost:3000/books/10

{

    "rating": 6

}

Response: Status 200

{
    "id": 10,
    "rating": 6,
    "author_id": 7,
    "title": "Wait for you",
    "description": "Love isn't meant to be perfect... Except when it is",
    "created_at": "2017-12-07T07:51:51.868Z",
    "updated_at": "2017-12-13T08:24:33.098Z"
}
Ritarira commented 6 years ago

:white_check_mark: Check status codes of all valid responses