From 964053e51c4db8a6134c767b562e2b4b99776ddb Mon Sep 17 00:00:00 2001 From: Andros Fenollosa Date: Mon, 5 Jul 2021 15:56:53 +0200 Subject: [PATCH] First commit --- .gitignore | 3 + app/libros/__init__.py | 0 app/libros/admin.py | 3 + app/libros/apps.py | 6 ++ app/libros/migrations/0001_initial.py | 44 +++++++++ app/libros/migrations/__init__.py | 0 app/libros/models.py | 6 ++ app/libros/tests.py | 3 + app/libros/views.py | 11 +++ manage.py | 22 +++++ proyecto/__init__.py | 0 proyecto/asgi.py | 16 ++++ proyecto/settings.py | 129 ++++++++++++++++++++++++++ proyecto/urls.py | 10 ++ proyecto/wsgi.py | 16 ++++ pytest.ini | 5 + requirements.txt | 4 + tests/libros/test_ejemplo.py | 3 + tests/libros/test_ping.py | 9 ++ 19 files changed, 290 insertions(+) create mode 100644 .gitignore create mode 100644 app/libros/__init__.py create mode 100644 app/libros/admin.py create mode 100644 app/libros/apps.py create mode 100644 app/libros/migrations/0001_initial.py create mode 100644 app/libros/migrations/__init__.py create mode 100644 app/libros/models.py create mode 100644 app/libros/tests.py create mode 100644 app/libros/views.py create mode 100755 manage.py create mode 100644 proyecto/__init__.py create mode 100644 proyecto/asgi.py create mode 100644 proyecto/settings.py create mode 100644 proyecto/urls.py create mode 100644 proyecto/wsgi.py create mode 100644 pytest.ini create mode 100644 requirements.txt create mode 100644 tests/libros/test_ejemplo.py create mode 100644 tests/libros/test_ping.py diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..9355980 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +db.sqlite3 +env/ +venv/ diff --git a/app/libros/__init__.py b/app/libros/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/app/libros/admin.py b/app/libros/admin.py new file mode 100644 index 0000000..8c38f3f --- /dev/null +++ b/app/libros/admin.py @@ -0,0 +1,3 @@ +from django.contrib import admin + +# Register your models here. diff --git a/app/libros/apps.py b/app/libros/apps.py new file mode 100644 index 0000000..085be30 --- /dev/null +++ b/app/libros/apps.py @@ -0,0 +1,6 @@ +from django.apps import AppConfig + + +class LibrosConfig(AppConfig): + default_auto_field = 'django.db.models.BigAutoField' + name = 'app.libros' diff --git a/app/libros/migrations/0001_initial.py b/app/libros/migrations/0001_initial.py new file mode 100644 index 0000000..d29cdf4 --- /dev/null +++ b/app/libros/migrations/0001_initial.py @@ -0,0 +1,44 @@ +# Generated by Django 3.2.5 on 2021-07-04 20:09 + +import django.contrib.auth.models +import django.contrib.auth.validators +from django.db import migrations, models +import django.utils.timezone + + +class Migration(migrations.Migration): + + initial = True + + dependencies = [ + ('auth', '0012_alter_user_first_name_max_length'), + ] + + operations = [ + migrations.CreateModel( + name='CustomUser', + fields=[ + ('id', models.BigAutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), + ('password', models.CharField(max_length=128, verbose_name='password')), + ('last_login', models.DateTimeField(blank=True, null=True, verbose_name='last login')), + ('is_superuser', models.BooleanField(default=False, help_text='Designates that this user has all permissions without explicitly assigning them.', verbose_name='superuser status')), + ('username', models.CharField(error_messages={'unique': 'A user with that username already exists.'}, help_text='Required. 150 characters or fewer. Letters, digits and @/./+/-/_ only.', max_length=150, unique=True, validators=[django.contrib.auth.validators.UnicodeUsernameValidator()], verbose_name='username')), + ('first_name', models.CharField(blank=True, max_length=150, verbose_name='first name')), + ('last_name', models.CharField(blank=True, max_length=150, verbose_name='last name')), + ('email', models.EmailField(blank=True, max_length=254, verbose_name='email address')), + ('is_staff', models.BooleanField(default=False, help_text='Designates whether the user can log into this admin site.', verbose_name='staff status')), + ('is_active', models.BooleanField(default=True, help_text='Designates whether this user should be treated as active. Unselect this instead of deleting accounts.', verbose_name='active')), + ('date_joined', models.DateTimeField(default=django.utils.timezone.now, verbose_name='date joined')), + ('groups', models.ManyToManyField(blank=True, help_text='The groups this user belongs to. A user will get all permissions granted to each of their groups.', related_name='user_set', related_query_name='user', to='auth.Group', verbose_name='groups')), + ('user_permissions', models.ManyToManyField(blank=True, help_text='Specific permissions for this user.', related_name='user_set', related_query_name='user', to='auth.Permission', verbose_name='user permissions')), + ], + options={ + 'verbose_name': 'user', + 'verbose_name_plural': 'users', + 'abstract': False, + }, + managers=[ + ('objects', django.contrib.auth.models.UserManager()), + ], + ), + ] diff --git a/app/libros/migrations/__init__.py b/app/libros/migrations/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/app/libros/models.py b/app/libros/models.py new file mode 100644 index 0000000..59041d1 --- /dev/null +++ b/app/libros/models.py @@ -0,0 +1,6 @@ +from django.db import models +from django.contrib.auth.models import AbstractUser + + +class CustomUser(AbstractUser): + pass \ No newline at end of file diff --git a/app/libros/tests.py b/app/libros/tests.py new file mode 100644 index 0000000..7ce503c --- /dev/null +++ b/app/libros/tests.py @@ -0,0 +1,3 @@ +from django.test import TestCase + +# Create your tests here. diff --git a/app/libros/views.py b/app/libros/views.py new file mode 100644 index 0000000..5178c63 --- /dev/null +++ b/app/libros/views.py @@ -0,0 +1,11 @@ +from django.http import JsonResponse +from django.http import JsonResponse + + +def ping(request): + data = {"ping": "pong!"} + return JsonResponse(data) + +def ping(request): + data = {"ping": "pong!"} + return JsonResponse(data) \ No newline at end of file diff --git a/manage.py b/manage.py new file mode 100755 index 0000000..5cd4202 --- /dev/null +++ b/manage.py @@ -0,0 +1,22 @@ +#!/usr/bin/env python +"""Django's command-line utility for administrative tasks.""" +import os +import sys + + +def main(): + """Run administrative tasks.""" + os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'proyecto.settings') + try: + from django.core.management import execute_from_command_line + except ImportError as exc: + raise ImportError( + "Couldn't import Django. Are you sure it's installed and " + "available on your PYTHONPATH environment variable? Did you " + "forget to activate a virtual environment?" + ) from exc + execute_from_command_line(sys.argv) + + +if __name__ == '__main__': + main() diff --git a/proyecto/__init__.py b/proyecto/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/proyecto/asgi.py b/proyecto/asgi.py new file mode 100644 index 0000000..a3b9f57 --- /dev/null +++ b/proyecto/asgi.py @@ -0,0 +1,16 @@ +""" +ASGI config for proyecto project. + +It exposes the ASGI callable as a module-level variable named ``application``. + +For more information on this file, see +https://docs.djangoproject.com/en/3.2/howto/deployment/asgi/ +""" + +import os + +from django.core.asgi import get_asgi_application + +os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'proyecto.settings') + +application = get_asgi_application() diff --git a/proyecto/settings.py b/proyecto/settings.py new file mode 100644 index 0000000..dcfdbf6 --- /dev/null +++ b/proyecto/settings.py @@ -0,0 +1,129 @@ +""" +Django settings for proyecto project. + +Generated by 'django-admin startproject' using Django 3.2.5. + +For more information on this file, see +https://docs.djangoproject.com/en/3.2/topics/settings/ + +For the full list of settings and their values, see +https://docs.djangoproject.com/en/3.2/ref/settings/ +""" + +from pathlib import Path + +# Build paths inside the project like this: BASE_DIR / 'subdir'. +BASE_DIR = Path(__file__).resolve().parent.parent + + +# Quick-start development settings - unsuitable for production +# See https://docs.djangoproject.com/en/3.2/howto/deployment/checklist/ + +# SECURITY WARNING: keep the secret key used in production secret! +SECRET_KEY = 'django-insecure-+j!b+4cv@q0$^$2%5o+&c&@!hf1bfgpl#f^71dfgzijt2fek9#' + +# SECURITY WARNING: don't run with debug turned on in production! +DEBUG = True + +ALLOWED_HOSTS = [] + + +# Application definition + +INSTALLED_APPS = [ + 'django.contrib.admin', + 'django.contrib.auth', + 'django.contrib.contenttypes', + 'django.contrib.sessions', + 'django.contrib.messages', + 'django.contrib.staticfiles', + 'rest_framework', # nuevo + 'app.libros', # nuevo +] + +MIDDLEWARE = [ + 'django.middleware.security.SecurityMiddleware', + 'django.contrib.sessions.middleware.SessionMiddleware', + 'django.middleware.common.CommonMiddleware', + 'django.middleware.csrf.CsrfViewMiddleware', + 'django.contrib.auth.middleware.AuthenticationMiddleware', + 'django.contrib.messages.middleware.MessageMiddleware', + 'django.middleware.clickjacking.XFrameOptionsMiddleware', +] + +ROOT_URLCONF = 'proyecto.urls' + +TEMPLATES = [ + { + 'BACKEND': 'django.template.backends.django.DjangoTemplates', + 'DIRS': [], + 'APP_DIRS': True, + 'OPTIONS': { + 'context_processors': [ + 'django.template.context_processors.debug', + 'django.template.context_processors.request', + 'django.contrib.auth.context_processors.auth', + 'django.contrib.messages.context_processors.messages', + ], + }, + }, +] + +WSGI_APPLICATION = 'proyecto.wsgi.application' + + +# Database +# https://docs.djangoproject.com/en/3.2/ref/settings/#databases + +DATABASES = { + 'default': { + 'ENGINE': 'django.db.backends.sqlite3', + 'NAME': BASE_DIR / 'db.sqlite3', + } +} + + +# Password validation +# https://docs.djangoproject.com/en/3.2/ref/settings/#auth-password-validators + +AUTH_PASSWORD_VALIDATORS = [ + { + 'NAME': 'django.contrib.auth.password_validation.UserAttributeSimilarityValidator', + }, + { + 'NAME': 'django.contrib.auth.password_validation.MinimumLengthValidator', + }, + { + 'NAME': 'django.contrib.auth.password_validation.CommonPasswordValidator', + }, + { + 'NAME': 'django.contrib.auth.password_validation.NumericPasswordValidator', + }, +] + + +# Internationalization +# https://docs.djangoproject.com/en/3.2/topics/i18n/ + +LANGUAGE_CODE = 'en-us' + +TIME_ZONE = 'UTC' + +USE_I18N = True + +USE_L10N = True + +USE_TZ = True + + +# Static files (CSS, JavaScript, Images) +# https://docs.djangoproject.com/en/3.2/howto/static-files/ + +STATIC_URL = '/static/' + +# Default primary key field type +# https://docs.djangoproject.com/en/3.2/ref/settings/#default-auto-field + +DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField' + +AUTH_USER_MODEL = 'libros.CustomUser' \ No newline at end of file diff --git a/proyecto/urls.py b/proyecto/urls.py new file mode 100644 index 0000000..4170ec6 --- /dev/null +++ b/proyecto/urls.py @@ -0,0 +1,10 @@ +from django.contrib import admin +from django.urls import path + +from app.libros.views import ping + + +urlpatterns = [ + path('admin/', admin.site.urls), + path('ping/', ping, name="ping"), +] \ No newline at end of file diff --git a/proyecto/wsgi.py b/proyecto/wsgi.py new file mode 100644 index 0000000..022bae0 --- /dev/null +++ b/proyecto/wsgi.py @@ -0,0 +1,16 @@ +""" +WSGI config for proyecto project. + +It exposes the WSGI callable as a module-level variable named ``application``. + +For more information on this file, see +https://docs.djangoproject.com/en/3.2/howto/deployment/wsgi/ +""" + +import os + +from django.core.wsgi import get_wsgi_application + +os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'proyecto.settings') + +application = get_wsgi_application() diff --git a/pytest.ini b/pytest.ini new file mode 100644 index 0000000..b526df0 --- /dev/null +++ b/pytest.ini @@ -0,0 +1,5 @@ +[pytest] +DJANGO_SETTINGS_MODULE = proyecto.settings + +# Opcional, pero recomendado +python_files = tests.py test_*.py *_tests.py \ No newline at end of file diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..8298ba6 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,4 @@ +django +djangorestframework +pytest-django +pytest \ No newline at end of file diff --git a/tests/libros/test_ejemplo.py b/tests/libros/test_ejemplo.py new file mode 100644 index 0000000..db7f75f --- /dev/null +++ b/tests/libros/test_ejemplo.py @@ -0,0 +1,3 @@ +# Las funciones deben empezar por "test_" +def test_titulo(): + assert "canciĆ³n de hielo y fuego" != "juego de tronos" \ No newline at end of file diff --git a/tests/libros/test_ping.py b/tests/libros/test_ping.py new file mode 100644 index 0000000..91fb861 --- /dev/null +++ b/tests/libros/test_ping.py @@ -0,0 +1,9 @@ +import json +from django.urls import reverse + +def test_ping(client): + url = reverse("ping") + response = client.get(url) + content = json.loads(response.content) + assert response.status_code == 200 + assert content["ping"] == "pong!" \ No newline at end of file