Commit fc166655 authored by Kirby Ezekiel Santos's avatar Kirby Ezekiel Santos

Initial commit

parents
myenv/
db.sqlite3
geckodriver.log
__pycache__
*.pyc
from selenium import webdriver
import unittest
import time
class NewVisitorTest(unittest.TestCase):
def setUp(self):
self.browser = webdriver.Firefox()
def tearDown(self):
self.browser.quit()
def test_can_display_home_page_and_each_model_templates(self):
#Go to home page and look at title
self.browser.get("http://localhost:8000")
self.assertIn("The Good Place FroYo Shop", self.browser.title)
#See home page header
home_page_header = self.browser.find_element_by_id("page_header")
self.assertEqual(
home_page_header.get_attribute("innerHTML"),
"The Good Place FroYo Shop"
)
#Find the ingredients section
home_page_ingredients = self.browser.find_element_by_id("home_page_ingredients")
self.assertEqual(
home_page_inredients.get_attribute("innerHTML"),
"Ingredients"
)
#Find button and go to ingredients list
button_to_ingredients = self.browser.find_element_by_id("button_to_ingredients")
button_to_ingredients.click()
time.sleep(1)
self.assertEqual(
"http://localhost:8000/ingredients-list",
self.browser.getCurrentUrl()
)
#Look at ingredients list title and header
self.assertIn("Ingredients - List", self.browser.title)
ingredients_list_header = self.browser.find_element_by_id("page_header")
self.assertEqual(
ingredients_list_header.get_attribute("innerHTML"),
"Ingredients - List"
)
#Find and click button to ingredients detail
button_to_ingredients_detail = self.browser.find_element_by_id("button_to_ingredients_detail")
button_to_ingredients_detail.click()
time.sleep(1)
self.assertEqual(
"http://localhost:8000/ingredients-detail",
self.browser.getCurrentUrl()
)
#Look at ingredients detail title and header
self.assertIn("Ingredients - Detail", self.browser.title)
ingredients_detail_header = self.browser.find_element_by_id("page_header")
self.assertEqual(
ingredients_detail_header.get_attribute("innerHTML"),
"Ingredients - Detail"
)
#Find and click back button to igredients list
back_button_to_ingredients_list_from_detail = self.browser.find_element_by_id("back_button")
back_button_to_ingredients_list_from_detail.click()
time.sleep(1)
self.assertEqual(
"http://localhost:8000/ingredients-list",
self.browser.getCurrentUrl()
)
#Find and click button to ingredients update
button_to_ingredients_update = self.browser.find_element_by_id("button_to_ingredients_update")
button_to_ingredients_update.click()
time.sleep(1)
self.assertEqual(
"http://localhost:8000/ingredients-update",
self.browser.getCurrentUrl()
)
#Look at ingredients update title and header
self.assertIn("Ingredients - Update", self.browser.title)
ingredients_update_header = self.browser.find_element_by_id("page_header")
self.assertEqual(
ingredients_update_header.get_attribute("innerHTML"),
"Ingredients - Update"
)
#Find and click back button to igredients list
back_button_to_ingredients_list_from_update = self.browser.find_element_by_id("back_button")
back_button_to_ingredients_list_from_update.click()
time.sleep(1)
self.assertEqual(
"http://localhost:8000/ingredients-list",
self.browser.getCurrentUrl()
)
#Find and click button to ingredients create
button_to_ingredients_create = self.browser.find_element_by_id("button_to_ingredients_create")
button_to_ingredients_create.click()
time.sleep(1)
self.assertEqual(
"http://localhost:8000/ingredients-create",
self.browser.getCurrentUrl()
)
#Look at ingredients update title and header
self.assertIn("Ingredients - Create", self.browser.title)
ingredients_create_header = self.browser.find_element_by_id("page_header")
self.assertEqual(
ingredients_create_header.get_attribute("innerHTML"),
"Ingredients - Create"
)
#Find and click back button to igredients list
back_button_to_ingredients_list_from_create = self.browser.find_element_by_id("back_button")
back_button_to_ingredients_list_from_create.click()
time.sleep(1)
self.assertEqual(
"http://localhost:8000/ingredients-list",
self.browser.getCurrentUrl()
)
#Find and click back button to home page
back_button_to_home_from_ingredients = self.browser.find_element_by_id("back_button")
back_button_to_home_from_ingredients.click()
time.sleep(1)
self.assertEqual(
"http://localhost:8000",
self.browser.getCurrentUrl()
)
#Find the recipes section
home_page_recipes = self.browser.find_element_by_id("home_page_recipes")
self.assertEqual(
home_page_recipes.get_attribute("innerHTML"),
"Recipes"
)
#Find button and go to recipes list
button_to_recipes = self.browser.find_element_by_id("button_to_recipes")
button_to_recipes.click()
time.sleep(1)
self.assertEqual(
"http://localhost:8000/recipes-list",
self.browser.getCurrentUrl()
)
#Look at recipes list title and header
self.assertIn("Recipes - List", self.browser.title)
recipes_list_header = self.browser.find_element_by_id("page_header")
self.assertEqual(
ingredients_list_header.get_attribute("innerHTML"),
"Recipes - List"
)
#Find and click button to recipes detail
button_to_recipes_detail = self.browser.find_element_by_id("button_to_recipes_detail")
button_to_recipes_detail.click()
time.sleep(1)
self.assertEqual(
"http://localhost:8000/recipes-detail",
self.browser.getCurrentUrl()
)
#Look at recipes detail title and header
self.assertIn("Recipes - Detail", self.browser.title)
recipes_detail_header = self.browser.find_element_by_id("page_header")
self.assertEqual(
recipes_detail_header.get_attribute("innerHTML"),
"Recipes - Detail"
)
#Find and click back button to recipes list
back_button_to_recipes_list_from_detail = self.browser.find_element_by_id("back_button")
back_button_to_recipes_list_from_detail.click()
time.sleep(1)
self.assertEqual(
"http://localhost:8000/recipes-list",
self.browser.getCurrentUrl()
)
#Find and click button to recipes update
button_to_recipes_update = self.browser.find_element_by_id("button_to_recipes_update")
button_to_recipes_update.click()
time.sleep(1)
self.assertEqual(
"http://localhost:8000/recipes-update",
self.browser.getCurrentUrl()
)
#Look at recipes update title and header
self.assertIn("Recipes - Update", self.browser.title)
recipes_update_header = self.browser.find_element_by_id("page_header")
self.assertEqual(
recipes_update_header.get_attribute("innerHTML"),
"Recipes - Update"
)
#Find and click back button to recipes list
back_button_to_recipes_list_from_update = self.browser.find_element_by_id("back_button")
back_button_to_recipes_list_from_update.click()
time.sleep(1)
self.assertEqual(
"http://localhost:8000/recipes-list",
self.browser.getCurrentUrl()
)
#Find and click button to recipes create
button_to_recipes_create = self.browser.find_element_by_id("button_to_recipes_create")
button_to_recipes_create.click()
time.sleep(1)
self.assertEqual(
"http://localhost:8000/recipes-create",
self.browser.getCurrentUrl()
)
#Look at recipes update title and header
self.assertIn("Recipes - Create", self.browser.title)
recipes_create_header = self.browser.find_element_by_id("page_header")
self.assertEqual(
recipes_create_header.get_attribute("innerHTML"),
"Recipes - Create"
)
#Find and click back button to recipes list
back_button_to_recipes_list_from_create = self.browser.find_element_by_id("back_button")
back_button_to_recipes_list_from_create.click()
time.sleep(1)
self.assertEqual(
"http://localhost:8000/recipes-list",
self.browser.getCurrentUrl()
)
#Find and click back button to home page
back_button_to_home_from_recipes = self.browser.find_element_by_id("back_button")
back_button_to_home_from_recipes.click()
time.sleep(1)
self.assertEqual(
"http://localhost:8000",
self.browser.getCurrentUrl()
)
#Find the orders section
home_page_orders = self.browser.find_element_by_id("home_page_orders")
self.assertEqual(
home_page_orders.get_attribute("innerHTML"),
"Orders"
)
#Find button and go to orders list
button_to_orders = self.browser.find_element_by_id("button_to_orders")
button_to_orders.click()
time.sleep(1)
self.assertEqual(
"http://localhost:8000/orders-list",
self.browser.getCurrentUrl()
)
#Look at orders list title and header
self.assertIn("Orders - List", self.browser.title)
orders_list_header = self.browser.find_element_by_id("page_header")
self.assertEqual(
orders_list_header.get_attribute("innerHTML"),
"Orders - List"
)
#Find and click button to orders detail
button_to_orders_detail = self.browser.find_element_by_id("button_to_orders_detail")
button_to_orders_detail.click()
time.sleep(1)
self.assertEqual(
"http://localhost:8000/orders-detail",
self.browser.getCurrentUrl()
)
#Look at orders detail title and header
self.assertIn("Orders - Detail", self.browser.title)
orders_detail_header = self.browser.find_element_by_id("page_header")
self.assertEqual(
orders_detail_header.get_attribute("innerHTML"),
"Orders - Detail"
)
#Find and click back button to orders list
back_button_to_orders_list_from_detail = self.browser.find_element_by_id("back_button")
back_button_to_orders_list_from_detail.click()
time.sleep(1)
self.assertEqual(
"http://localhost:8000/orders-list",
self.browser.getCurrentUrl()
)
#Find and click button to orders update
button_to_orders_update = self.browser.find_element_by_id("button_to_orders_update")
button_to_orders_update.click()
time.sleep(1)
self.assertEqual(
"http://localhost:8000/orders-update",
self.browser.getCurrentUrl()
)
#Look at orders update title and header
self.assertIn("Orders - Update", self.browser.title)
orders_update_header = self.browser.find_element_by_id("page_header")
self.assertEqual(
orders_update_header.get_attribute("innerHTML"),
"Orders - Update"
)
#Find and click back button to orders list
back_button_to_orders_list_from_update = self.browser.find_element_by_id("back_button")
back_button_to_orders_list_from_update.click()
time.sleep(1)
self.assertEqual(
"http://localhost:8000/orders-list",
self.browser.getCurrentUrl()
)
#Find and click button to orders create
button_to_orders_create = self.browser.find_element_by_id("button_to_orders_create")
button_to_orders_create.click()
time.sleep(1)
self.assertEqual(
"http://localhost:8000/orders-create",
self.browser.getCurrentUrl()
)
#Look at orders update title and header
self.assertIn("Orders - Create", self.browser.title)
orders_create_header = self.browser.find_element_by_id("page_header")
self.assertEqual(
orders_create_header.get_attribute("innerHTML"),
"Orders - Create"
)
#Find and click back button to orders list
back_button_to_orders_list_from_create = self.browser.find_element_by_id("back_button")
back_button_to_orders_list_from_create.click()
time.sleep(1)
self.assertEqual(
"http://localhost:8000/orders-list",
self.browser.getCurrentUrl()
)
#Find and click back button to home page
back_button_to_home_from_orders = self.browser.find_element_by_id("back_button")
back_button_to_home_from_orders.click()
time.sleep(1)
self.assertEqual(
"http://localhost:8000",
self.browser.getCurrentUrl()
)
self.fail("Finish the test")
if __name__ == '__main__':
unittest.main(warnings='ignore')
#!/usr/bin/env python
"""Django's command-line utility for administrative tasks."""
import os
import sys
def main():
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'thegoodplace.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()
"""
ASGI config for thegoodplace 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.0/howto/deployment/asgi/
"""
import os
from django.core.asgi import get_asgi_application
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'thegoodplace.settings')
application = get_asgi_application()
"""
Django settings for thegoodplace project.
Generated by 'django-admin startproject' using Django 3.0.4.
For more information on this file, see
https://docs.djangoproject.com/en/3.0/topics/settings/
For the full list of settings and their values, see
https://docs.djangoproject.com/en/3.0/ref/settings/
"""
import os
# Build paths inside the project like this: os.path.join(BASE_DIR, ...)
BASE_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
# Quick-start development settings - unsuitable for production
# See https://docs.djangoproject.com/en/3.0/howto/deployment/checklist/
# SECURITY WARNING: keep the secret key used in production secret!
SECRET_KEY = '#%@okv()76&zu^9xjzzes^zmplqqksqbamwp=a$ak-+9+#0@#7'
# 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',
]
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 = 'thegoodplace.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 = 'thegoodplace.wsgi.application'
# Database
# https://docs.djangoproject.com/en/3.0/ref/settings/#databases
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
}
}
# Password validation
# https://docs.djangoproject.com/en/3.0/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.0/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.0/howto/static-files/
STATIC_URL = '/static/'
"""thegoodplace URL Configuration
The `urlpatterns` list routes URLs to views. For more information please see:
https://docs.djangoproject.com/en/3.0/topics/http/urls/
Examples:
Function views
1. Add an import: from my_app import views
2. Add a URL to urlpatterns: path('', views.home, name='home')
Class-based views
1. Add an import: from other_app.views import Home
2. Add a URL to urlpatterns: path('', Home.as_view(), name='home')
Including another URLconf
1. Import the include() function: from django.urls import include, path
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
"""
from django.contrib import admin
from django.urls import path
urlpatterns = [
path('admin/', admin.site.urls),
]
"""
WSGI config for thegoodplace 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.0/howto/deployment/wsgi/
"""
import os
from django.core.wsgi import get_wsgi_application
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'thegoodplace.settings')
application = get_wsgi_application()
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment