2023-10-07 16:36:13 -03:00
|
|
|
"""
|
|
|
|
Test for models.
|
|
|
|
"""
|
2023-10-09 01:25:27 -03:00
|
|
|
from decimal import Decimal
|
|
|
|
|
2023-10-07 16:36:13 -03:00
|
|
|
from django.test import TestCase
|
2023-10-08 20:04:34 -03:00
|
|
|
from django.contrib.auth import get_user_model
|
2023-10-07 16:36:13 -03:00
|
|
|
|
2023-10-09 01:25:27 -03:00
|
|
|
from core import models
|
2023-10-07 16:36:13 -03:00
|
|
|
|
|
|
|
class ModelTests(TestCase):
|
|
|
|
"""Test models."""
|
|
|
|
|
|
|
|
def test_create_user_with_email_sucessfull(self):
|
|
|
|
"""Test creating a user with an email is sucessfull."""
|
|
|
|
email = 'test@example.com'
|
|
|
|
password = 'testpass123'
|
|
|
|
user = get_user_model().objects.create_user(
|
|
|
|
email=email,
|
|
|
|
password=password,
|
|
|
|
)
|
|
|
|
self.assertEqual(user.email, email)
|
|
|
|
self.assertTrue(user.check_password(password))
|
|
|
|
|
|
|
|
def test_new_user_email_normalized(self):
|
|
|
|
"""Test email is normalized for new users."""
|
|
|
|
sample_emails = [
|
|
|
|
['test1@EXAMPLE.com', 'test1@example.com'],
|
|
|
|
['test2@Example.com', 'test2@example.com'],
|
|
|
|
['TEST3@EXAMPLE.COM', 'TEST3@example.com'],
|
|
|
|
['test4@example.COM', 'test4@example.com'],
|
|
|
|
]
|
|
|
|
for email, expected in sample_emails:
|
|
|
|
user = get_user_model().objects.create_user(email, 'sample123')
|
|
|
|
self.assertEqual(user.email, expected)
|
|
|
|
|
|
|
|
def test_new_user_withouth_email_raises_error(self):
|
|
|
|
"""Test that creating a user withouth an email raises a ValueError."""
|
|
|
|
with self.assertRaises(ValueError):
|
|
|
|
get_user_model().objects.create_user('', 'test123')
|
|
|
|
|
|
|
|
def test_create_superuser(self):
|
|
|
|
"""Test creating a superuser."""
|
|
|
|
user = get_user_model().objects.create_superuser(
|
|
|
|
'test@example.com',
|
|
|
|
'test123',
|
|
|
|
)
|
|
|
|
self.assertTrue(user.is_superuser)
|
|
|
|
self.assertTrue(user.is_staff)
|
2023-10-09 01:25:27 -03:00
|
|
|
|
|
|
|
def test_create_recipe(self):
|
|
|
|
"""Test creating a recipe is successful."""
|
|
|
|
user = get_user_model().objects.create_user(
|
|
|
|
'test@example.com',
|
|
|
|
'test123',
|
|
|
|
)
|
|
|
|
recipe = models.Recipe.objects.create(
|
|
|
|
user=user,
|
|
|
|
title='Nombre receta ejemplo',
|
|
|
|
time_minutes=5,
|
|
|
|
price=Decimal('5.50'),
|
|
|
|
description='Descripción de la receta de ejemplo'
|
|
|
|
)
|
|
|
|
|
|
|
|
self.assertEqual(str(recipe), recipe.title)
|