-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update ingredient API and ingredient tests
- Loading branch information
Showing
10 changed files
with
451 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# Generated by Django 3.2.25 on 2024-04-21 17:31 | ||
|
||
from django.conf import settings | ||
from django.db import migrations, models | ||
import django.db.models.deletion | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('core', '0003_auto_20240420_1925'), | ||
] | ||
|
||
operations = [ | ||
migrations.CreateModel( | ||
name='Ingredient', | ||
fields=[ | ||
('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), | ||
('name', models.CharField(max_length=255)), | ||
('user', models.ForeignKey(on_delete=django.db.models.deletion.CASCADE, to=settings.AUTH_USER_MODEL)), | ||
], | ||
), | ||
migrations.AddField( | ||
model_name='recipe', | ||
name='ingredients', | ||
field=models.ManyToManyField(to='core.Ingredient'), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,95 @@ | ||
""" | ||
Tests for the ingredients API. | ||
""" | ||
from django.contrib.auth import get_user_model | ||
from django.urls import reverse | ||
from django.test import TestCase | ||
|
||
from rest_framework import status | ||
from rest_framework.test import APIClient | ||
|
||
from core.models import Ingredient | ||
from recipe.serializers import IngredientSerializer | ||
|
||
INGREDIENTS_URL = reverse('recipe:ingredient-list') | ||
|
||
|
||
def detail_url(ingredient_id): | ||
"""Create and return an ingredient detail URL""" | ||
return reverse('recipe:ingredient-detail', args=[ingredient_id]) | ||
|
||
|
||
def create_user(email='[email protected]', password='testpass123'): | ||
"""Create a sample user""" | ||
return get_user_model().objects.create_user(email=email, password=password) | ||
|
||
|
||
class PublicIngredientsApiTests(TestCase): | ||
"""Test unauthenticated API requests""" | ||
|
||
def setUp(self): | ||
self.client = APIClient() | ||
|
||
def test_login_required(self): | ||
"""Test auth is required for retrieving ingredients""" | ||
response = self.client.get(INGREDIENTS_URL) | ||
|
||
self.assertEqual(response.status_code, status.HTTP_401_UNAUTHORIZED) | ||
|
||
|
||
class PrivateIngredientsApiTests(TestCase): | ||
"""Test authenticated API requests""" | ||
|
||
def setUp(self): | ||
self.client = APIClient() | ||
self.user = create_user() | ||
self.client.force_authenticate(self.user) | ||
|
||
def test_retrieve_ingredients(self): | ||
"""Test a list of ingredients""" | ||
Ingredient.objects.create(user=self.user, name='Kale') | ||
Ingredient.objects.create(user=self.user, name='Salt') | ||
|
||
res = self.client.get(INGREDIENTS_URL) | ||
|
||
ingredients = Ingredient.objects.all().order_by('-name') | ||
serializer = IngredientSerializer(ingredients, many=True) | ||
|
||
self.assertEqual(res.status_code, status.HTTP_200_OK) | ||
self.assertEqual(res.data, serializer.data) | ||
|
||
def test_ingredients_limited_to_user(self): | ||
"""Test list of ingredients is limited to the authenticated user""" | ||
user2 = create_user(email="[email protected]") | ||
Ingredient.objects.create(user=user2, name='Vinegar') | ||
ingredient = Ingredient.objects.create(user=self.user, name='Tumeric') | ||
|
||
res = self.client.get(INGREDIENTS_URL) | ||
|
||
self.assertEqual(res.status_code, status.HTTP_200_OK) | ||
self.assertEqual(len(res.data), 1) | ||
self.assertEqual(res.data[0]['name'], ingredient.name) | ||
self.assertEqual(res.data[0]['id'], ingredient.id) | ||
|
||
def test_update_ingredient(self): | ||
"""Test updating an ingredient""" | ||
ingredient = Ingredient.objects.create(user=self.user, name='Cabbage') | ||
|
||
payload = {'name': 'Cilantro'} | ||
url = detail_url(ingredient.id) | ||
res = self.client.patch(url, payload) | ||
|
||
self.assertEqual(res.status_code, status.HTTP_200_OK) | ||
ingredient.refresh_from_db() | ||
self.assertEqual(ingredient.name, payload['name']) | ||
|
||
def test_create_ingredient(self): | ||
"""Test deleting an ingredient""" | ||
ingredient = Ingredient.objects.create(user=self.user, name='Lettuce') | ||
|
||
url = detail_url(ingredient.id) | ||
res = self.client.delete(url) | ||
|
||
self.assertEqual(res.status_code, status.HTTP_204_NO_CONTENT) | ||
ingredients = Ingredient.objects.filter(user=self.user) | ||
self.assertFalse(ingredients.exists()) |
Oops, something went wrong.