From 5c24d50d59c3938737acc48e0ecf1017f33937bf Mon Sep 17 00:00:00 2001
From: PIntegradorBrauna <2010920@aluno.univesp.br>
Date: Tue, 4 Oct 2022 17:11:12 -0300
Subject: [PATCH] pytest git actions
---
.github/workflows/django.yml | 24 +++
.idea/.gitignore | 3 +
.idea/Biblioteca-1.iml | 15 ++
.../inspectionProfiles/profiles_settings.xml | 6 +
.idea/misc.xml | 7 +
.idea/modules.xml | 8 +
.idea/vcs.xml | 6 +
Pipfile | 19 ++
Pipfile.lock | 185 ++++++++++++++++++
biblioteca/home_view.py | 4 +
biblioteca/test_home.py | 5 +
biblioteca/urls.py | 4 +-
requirements.txt | 7 +
setup.cfg | 4 +
14 files changed, 296 insertions(+), 1 deletion(-)
create mode 100644 .github/workflows/django.yml
create mode 100644 .idea/.gitignore
create mode 100644 .idea/Biblioteca-1.iml
create mode 100644 .idea/inspectionProfiles/profiles_settings.xml
create mode 100644 .idea/misc.xml
create mode 100644 .idea/modules.xml
create mode 100644 .idea/vcs.xml
create mode 100644 Pipfile
create mode 100644 Pipfile.lock
create mode 100644 biblioteca/home_view.py
create mode 100644 biblioteca/test_home.py
create mode 100644 requirements.txt
create mode 100644 setup.cfg
diff --git a/.github/workflows/django.yml b/.github/workflows/django.yml
new file mode 100644
index 0000000..85c01c6
--- /dev/null
+++ b/.github/workflows/django.yml
@@ -0,0 +1,24 @@
+name: Aplicação Django
+
+on: [pull_request]
+
+jobs:
+ build:
+ env:
+ PIPENV_NO_INHERIT: 1
+ PIPENV_IGNORE_VIRTUALENVS: 1
+ runs-on: ubuntu-latest
+
+ steps:
+ - uses: actions/checkout@v2
+ - name: Set up Python 3.10
+ uses: actions/setup-python@v1
+ with:
+ python-version: 3.10
+ - name: Instalar Dependências
+ run:
+ pip install pipenv
+ pipenv sync --dev
+ - name: Rodar Testes Automáticos
+ run:
+ pipenv run pytest biblioteca
\ No newline at end of file
diff --git a/.idea/.gitignore b/.idea/.gitignore
new file mode 100644
index 0000000..26d3352
--- /dev/null
+++ b/.idea/.gitignore
@@ -0,0 +1,3 @@
+# Default ignored files
+/shelf/
+/workspace.xml
diff --git a/.idea/Biblioteca-1.iml b/.idea/Biblioteca-1.iml
new file mode 100644
index 0000000..5fdd65b
--- /dev/null
+++ b/.idea/Biblioteca-1.iml
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/inspectionProfiles/profiles_settings.xml b/.idea/inspectionProfiles/profiles_settings.xml
new file mode 100644
index 0000000..105ce2d
--- /dev/null
+++ b/.idea/inspectionProfiles/profiles_settings.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/misc.xml b/.idea/misc.xml
new file mode 100644
index 0000000..5d06727
--- /dev/null
+++ b/.idea/misc.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/modules.xml b/.idea/modules.xml
new file mode 100644
index 0000000..841ae11
--- /dev/null
+++ b/.idea/modules.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/vcs.xml b/.idea/vcs.xml
new file mode 100644
index 0000000..94a25f7
--- /dev/null
+++ b/.idea/vcs.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Pipfile b/Pipfile
new file mode 100644
index 0000000..841a19f
--- /dev/null
+++ b/Pipfile
@@ -0,0 +1,19 @@
+[[source]]
+url = "https://pypi.org/simple"
+verify_ssl = true
+name = "pypi"
+
+[packages]
+django = "==2.2.12"
+django-braces = "==1.15.0"
+django-cleanup = "==6.0.0"
+django-crispy-forms = "==1.14.0"
+pillow = "==9.1.0"
+pytz = "==2022.1"
+sqlparse = "==0.4.2"
+
+[dev-packages]
+pytest-django = "*"
+
+[requires]
+python_version = "3.10"
diff --git a/Pipfile.lock b/Pipfile.lock
new file mode 100644
index 0000000..082ca5d
--- /dev/null
+++ b/Pipfile.lock
@@ -0,0 +1,185 @@
+{
+ "_meta": {
+ "hash": {
+ "sha256": "cc9b5052adde9813bce345dfa606274881cecca6d8ec5ce0dbade66f7e13da5f"
+ },
+ "pipfile-spec": 6,
+ "requires": {
+ "python_version": "3.10"
+ },
+ "sources": [
+ {
+ "name": "pypi",
+ "url": "https://pypi.org/simple",
+ "verify_ssl": true
+ }
+ ]
+ },
+ "default": {
+ "django": {
+ "hashes": [
+ "sha256:69897097095f336d5aeef45b4103dceae51c00afa6d3ae198a2a18e519791b7a",
+ "sha256:6ecd229e1815d4fc5240fc98f1cca78c41e7a8cd3e3f2eefadc4735031077916"
+ ],
+ "index": "pypi",
+ "version": "==2.2.12"
+ },
+ "django-braces": {
+ "hashes": [
+ "sha256:28f00b0f98368c9a37f30cce6087fc57127f0a24c5b8b449f9e1245bded6405d",
+ "sha256:f451d08ffc1078d81209a2e17f2219bce20196928853c82405451b18a46875e0"
+ ],
+ "index": "pypi",
+ "version": "==1.15.0"
+ },
+ "django-cleanup": {
+ "hashes": [
+ "sha256:922e06ef8839c92bd3ab37a84db6058b8764f3fe44dbb4487bbca941d288280a",
+ "sha256:997feab3b1f7a2e84f71c29e83b1d664459ec0d4b1924977b1fa25b5babb8703"
+ ],
+ "index": "pypi",
+ "version": "==6.0.0"
+ },
+ "django-crispy-forms": {
+ "hashes": [
+ "sha256:35887b8851a931374dd697207a8f56c57a9c5cb9dbf0b9fa54314da5666cea5b",
+ "sha256:bc4d2037f6de602d39c0bc452ac3029d1f5d65e88458872cc4dbc01c3a400604"
+ ],
+ "index": "pypi",
+ "version": "==1.14.0"
+ },
+ "pillow": {
+ "hashes": [
+ "sha256:01ce45deec9df310cbbee11104bae1a2a43308dd9c317f99235b6d3080ddd66e",
+ "sha256:0c51cb9edac8a5abd069fd0758ac0a8bfe52c261ee0e330f363548aca6893595",
+ "sha256:17869489de2fce6c36690a0c721bd3db176194af5f39249c1ac56d0bb0fcc512",
+ "sha256:21dee8466b42912335151d24c1665fcf44dc2ee47e021d233a40c3ca5adae59c",
+ "sha256:25023a6209a4d7c42154073144608c9a71d3512b648a2f5d4465182cb93d3477",
+ "sha256:255c9d69754a4c90b0ee484967fc8818c7ff8311c6dddcc43a4340e10cd1636a",
+ "sha256:35be4a9f65441d9982240e6966c1eaa1c654c4e5e931eaf580130409e31804d4",
+ "sha256:3f42364485bfdab19c1373b5cd62f7c5ab7cc052e19644862ec8f15bb8af289e",
+ "sha256:3fddcdb619ba04491e8f771636583a7cc5a5051cd193ff1aa1ee8616d2a692c5",
+ "sha256:463acf531f5d0925ca55904fa668bb3461c3ef6bc779e1d6d8a488092bdee378",
+ "sha256:4fe29a070de394e449fd88ebe1624d1e2d7ddeed4c12e0b31624561b58948d9a",
+ "sha256:55dd1cf09a1fd7c7b78425967aacae9b0d70125f7d3ab973fadc7b5abc3de652",
+ "sha256:5a3ecc026ea0e14d0ad7cd990ea7f48bfcb3eb4271034657dc9d06933c6629a7",
+ "sha256:5cfca31ab4c13552a0f354c87fbd7f162a4fafd25e6b521bba93a57fe6a3700a",
+ "sha256:66822d01e82506a19407d1afc104c3fcea3b81d5eb11485e593ad6b8492f995a",
+ "sha256:69e5ddc609230d4408277af135c5b5c8fe7a54b2bdb8ad7c5100b86b3aab04c6",
+ "sha256:6b6d4050b208c8ff886fd3db6690bf04f9a48749d78b41b7a5bf24c236ab0165",
+ "sha256:7a053bd4d65a3294b153bdd7724dce864a1d548416a5ef61f6d03bf149205160",
+ "sha256:82283af99c1c3a5ba1da44c67296d5aad19f11c535b551a5ae55328a317ce331",
+ "sha256:8782189c796eff29dbb37dd87afa4ad4d40fc90b2742704f94812851b725964b",
+ "sha256:8d79c6f468215d1a8415aa53d9868a6b40c4682165b8cb62a221b1baa47db458",
+ "sha256:97bda660702a856c2c9e12ec26fc6d187631ddfd896ff685814ab21ef0597033",
+ "sha256:a325ac71914c5c043fa50441b36606e64a10cd262de12f7a179620f579752ff8",
+ "sha256:a336a4f74baf67e26f3acc4d61c913e378e931817cd1e2ef4dfb79d3e051b481",
+ "sha256:a598d8830f6ef5501002ae85c7dbfcd9c27cc4efc02a1989369303ba85573e58",
+ "sha256:a5eaf3b42df2bcda61c53a742ee2c6e63f777d0e085bbc6b2ab7ed57deb13db7",
+ "sha256:aea7ce61328e15943d7b9eaca87e81f7c62ff90f669116f857262e9da4057ba3",
+ "sha256:af79d3fde1fc2e33561166d62e3b63f0cc3e47b5a3a2e5fea40d4917754734ea",
+ "sha256:c24f718f9dd73bb2b31a6201e6db5ea4a61fdd1d1c200f43ee585fc6dcd21b34",
+ "sha256:c5b0ff59785d93b3437c3703e3c64c178aabada51dea2a7f2c5eccf1bcf565a3",
+ "sha256:c7110ec1701b0bf8df569a7592a196c9d07c764a0a74f65471ea56816f10e2c8",
+ "sha256:c870193cce4b76713a2b29be5d8327c8ccbe0d4a49bc22968aa1e680930f5581",
+ "sha256:c9efef876c21788366ea1f50ecb39d5d6f65febe25ad1d4c0b8dff98843ac244",
+ "sha256:de344bcf6e2463bb25179d74d6e7989e375f906bcec8cb86edb8b12acbc7dfef",
+ "sha256:eb1b89b11256b5b6cad5e7593f9061ac4624f7651f7a8eb4dfa37caa1dfaa4d0",
+ "sha256:ed742214068efa95e9844c2d9129e209ed63f61baa4d54dbf4cf8b5e2d30ccf2",
+ "sha256:f401ed2bbb155e1ade150ccc63db1a4f6c1909d3d378f7d1235a44e90d75fb97",
+ "sha256:fb89397013cf302f282f0fc998bb7abf11d49dcff72c8ecb320f76ea6e2c5717"
+ ],
+ "index": "pypi",
+ "version": "==9.1.0"
+ },
+ "pytz": {
+ "hashes": [
+ "sha256:1e760e2fe6a8163bc0b3d9a19c4f84342afa0a2affebfaa84b01b978a02ecaa7",
+ "sha256:e68985985296d9a66a881eb3193b0906246245294a881e7c8afe623866ac6a5c"
+ ],
+ "index": "pypi",
+ "version": "==2022.1"
+ },
+ "sqlparse": {
+ "hashes": [
+ "sha256:0c00730c74263a94e5a9919ade150dfc3b19c574389985446148402998287dae",
+ "sha256:48719e356bb8b42991bdbb1e8b83223757b93789c00910a616a071910ca4a64d"
+ ],
+ "index": "pypi",
+ "version": "==0.4.2"
+ }
+ },
+ "develop": {
+ "attrs": {
+ "hashes": [
+ "sha256:29adc2665447e5191d0e7c568fde78b21f9672d344281d0c6e1ab085429b22b6",
+ "sha256:86efa402f67bf2df34f51a335487cf46b1ec130d02b8d39fd248abfd30da551c"
+ ],
+ "markers": "python_version >= '3.5'",
+ "version": "==22.1.0"
+ },
+ "iniconfig": {
+ "hashes": [
+ "sha256:011e24c64b7f47f6ebd835bb12a743f2fbe9a26d4cecaa7f53bc4f35ee9da8b3",
+ "sha256:bc3af051d7d14b2ee5ef9969666def0cd1a000e121eaea580d4a313df4b37f32"
+ ],
+ "version": "==1.1.1"
+ },
+ "packaging": {
+ "hashes": [
+ "sha256:dd47c42927d89ab911e606518907cc2d3a1f38bbd026385970643f9c5b8ecfeb",
+ "sha256:ef103e05f519cdc783ae24ea4e2e0f508a9c99b2d4969652eed6a2e1ea5bd522"
+ ],
+ "markers": "python_version >= '3.6'",
+ "version": "==21.3"
+ },
+ "pluggy": {
+ "hashes": [
+ "sha256:4224373bacce55f955a878bf9cfa763c1e360858e330072059e10bad68531159",
+ "sha256:74134bbf457f031a36d68416e1509f34bd5ccc019f0bcc952c7b909d06b37bd3"
+ ],
+ "markers": "python_version >= '3.6'",
+ "version": "==1.0.0"
+ },
+ "py": {
+ "hashes": [
+ "sha256:51c75c4126074b472f746a24399ad32f6053d1b34b68d2fa41e558e6f4a98719",
+ "sha256:607c53218732647dff4acdfcd50cb62615cedf612e72d1724fb1a0cc6405b378"
+ ],
+ "markers": "python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4'",
+ "version": "==1.11.0"
+ },
+ "pyparsing": {
+ "hashes": [
+ "sha256:2b020ecf7d21b687f219b71ecad3631f644a47f01403fa1d1036b0c6416d70fb",
+ "sha256:5026bae9a10eeaefb61dab2f09052b9f4307d44aee4eda64b309723d8d206bbc"
+ ],
+ "markers": "python_full_version >= '3.6.8'",
+ "version": "==3.0.9"
+ },
+ "pytest": {
+ "hashes": [
+ "sha256:1377bda3466d70b55e3f5cecfa55bb7cfcf219c7964629b967c37cf0bda818b7",
+ "sha256:4f365fec2dff9c1162f834d9f18af1ba13062db0c708bf7b946f8a5c76180c39"
+ ],
+ "markers": "python_version >= '3.7'",
+ "version": "==7.1.3"
+ },
+ "pytest-django": {
+ "hashes": [
+ "sha256:c60834861933773109334fe5a53e83d1ef4828f2203a1d6a0fa9972f4f75ab3e",
+ "sha256:d9076f759bb7c36939dbdd5ae6633c18edfc2902d1a69fdbefd2426b970ce6c2"
+ ],
+ "index": "pypi",
+ "version": "==4.5.2"
+ },
+ "tomli": {
+ "hashes": [
+ "sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc",
+ "sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f"
+ ],
+ "markers": "python_version >= '3.7'",
+ "version": "==2.0.1"
+ }
+ }
+}
diff --git a/biblioteca/home_view.py b/biblioteca/home_view.py
new file mode 100644
index 0000000..1292f5e
--- /dev/null
+++ b/biblioteca/home_view.py
@@ -0,0 +1,4 @@
+from django.http import HttpResponse
+
+def home(request):
+ return HttpResponse('Olá Django Pro')
\ No newline at end of file
diff --git a/biblioteca/test_home.py b/biblioteca/test_home.py
new file mode 100644
index 0000000..dfb7684
--- /dev/null
+++ b/biblioteca/test_home.py
@@ -0,0 +1,5 @@
+from django.test import Client
+
+def test_home_status_code(client: Client):
+ resposta = client.get('/')
+ assert resposta.status_code == 200
diff --git a/biblioteca/urls.py b/biblioteca/urls.py
index 8745555..e425163 100644
--- a/biblioteca/urls.py
+++ b/biblioteca/urls.py
@@ -1,8 +1,10 @@
from django.contrib import admin
from django.urls import path, include
+from biblioteca.home_view import home
urlpatterns = [
path('admin/', admin.site.urls),
path('livro/', include('livro.urls')),
- path('auth/', include('usuarios.urls'))
+ path('auth/', include('usuarios.urls')),
+ path('', home)
]
diff --git a/requirements.txt b/requirements.txt
new file mode 100644
index 0000000..59e61f6
--- /dev/null
+++ b/requirements.txt
@@ -0,0 +1,7 @@
+Django==2.2.12
+django-braces==1.15.0
+django-cleanup==6.0.0
+django-crispy-forms==1.14.0
+Pillow==9.1.0
+pytz==2022.1
+sqlparse==0.4.2
diff --git a/setup.cfg b/setup.cfg
new file mode 100644
index 0000000..21cb8a8
--- /dev/null
+++ b/setup.cfg
@@ -0,0 +1,4 @@
+[tool:pytest]
+DJANGO_SETTINGS_MODULE = biblioteca.settings
+# -- recommended but optional:
+python_files = tests.py test_*.py *_tests.py
\ No newline at end of file