diff --git a/.gitignore b/.gitignore index f8b73e7..8e69e07 100644 --- a/.gitignore +++ b/.gitignore @@ -1,140 +1,2 @@ -# ---> Python -# Byte-compiled / optimized / DLL files -__pycache__/ -*.py[cod] -*$py.class - -# C extensions -*.so - -# Distribution / packaging -.Python -build/ -develop-eggs/ -dist/ -downloads/ -eggs/ -.eggs/ -lib/ -lib64/ -parts/ -sdist/ -var/ -wheels/ -share/python-wheels/ -*.egg-info/ -.installed.cfg -*.egg -MANIFEST - -# PyInstaller -# Usually these files are written by a python script from a template -# before PyInstaller builds the exe, so as to inject date/other infos into it. -*.manifest -*.spec - -# Installer logs -pip-log.txt -pip-delete-this-directory.txt - -# Unit test / coverage reports -htmlcov/ -.tox/ -.nox/ -.coverage -.coverage.* -.cache -nosetests.xml -coverage.xml -*.cover -*.py,cover -.hypothesis/ -.pytest_cache/ -cover/ - -# Translations -*.mo -*.pot - -# Django stuff: -*.log -local_settings.py -db.sqlite3 -db.sqlite3-journal - -# Flask stuff: -instance/ -.webassets-cache - -# Scrapy stuff: -.scrapy - -# Sphinx documentation -docs/_build/ - -# PyBuilder -.pybuilder/ -target/ - -# Jupyter Notebook -.ipynb_checkpoints - -# IPython -profile_default/ -ipython_config.py - -# pyenv -# For a library or package, you might want to ignore these files since the code is -# intended to run in multiple environments; otherwise, check them in: -# .python-version - -# pipenv -# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. -# However, in case of collaboration, if having platform-specific dependencies or dependencies -# having no cross-platform support, pipenv may install dependencies that don't work, or not -# install all needed dependencies. -#Pipfile.lock - -# PEP 582; used by e.g. github.com/David-OConnor/pyflow -__pypackages__/ - -# Celery stuff -celerybeat-schedule -celerybeat.pid - -# SageMath parsed files -*.sage.py - -# Environments -.env -.venv -env/ -venv/ -ENV/ -env.bak/ -venv.bak/ - -# Spyder project settings -.spyderproject -.spyproject - -# Rope project settings -.ropeproject - -# mkdocs documentation -/site - -# mypy -.mypy_cache/ -.dmypy.json -dmypy.json - -# Pyre type checker -.pyre/ - -# pytype static type analyzer -.pytype/ - -# Cython debug symbols -cython_debug/ +/.idea diff --git a/ECGS/__init__.py b/ECGS/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/ECGS/asgi.py b/ECGS/asgi.py new file mode 100644 index 0000000..ca317ca --- /dev/null +++ b/ECGS/asgi.py @@ -0,0 +1,16 @@ +""" +ASGI config for ECGS 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/4.2/howto/deployment/asgi/ +""" + +import os + +from django.core.asgi import get_asgi_application + +os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'ECGS.settings') + +application = get_asgi_application() diff --git a/ECGS/settings.py b/ECGS/settings.py new file mode 100644 index 0000000..c81f920 --- /dev/null +++ b/ECGS/settings.py @@ -0,0 +1,126 @@ +""" +Django settings for ECGS project. + +Generated by 'django-admin startproject' using Django 4.2.3. + +For more information on this file, see +https://docs.djangoproject.com/en/4.2/topics/settings/ + +For the full list of settings and their values, see +https://docs.djangoproject.com/en/4.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/4.2/howto/deployment/checklist/ + +# SECURITY WARNING: keep the secret key used in production secret! +SECRET_KEY = 'django-insecure-4o_=601!m4ja3j@tc8rifldb*g@lz^q^o809_&u!adm-i!g0@$' + +# 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', + 'login.apps' +] + +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 = 'ECGS.urls' + +TEMPLATES = [ + { + 'BACKEND': 'django.template.backends.django.DjangoTemplates', + 'DIRS': [BASE_DIR / 'templates'] + , + '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 = 'ECGS.wsgi.application' + + +# Database +# https://docs.djangoproject.com/en/4.2/ref/settings/#databases + +DATABASES = { + 'default': { + 'ENGINE': 'django.db.backends.sqlite3', + 'NAME': BASE_DIR / 'db.sqlite3', + } +} + + +# Password validation +# https://docs.djangoproject.com/en/4.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/4.2/topics/i18n/ + +LANGUAGE_CODE = 'en-us' + +TIME_ZONE = 'UTC' + +USE_I18N = True + +USE_TZ = True + + +# Static files (CSS, JavaScript, Images) +# https://docs.djangoproject.com/en/4.2/howto/static-files/ + +STATIC_URL = 'static/' + +# Default primary key field type +# https://docs.djangoproject.com/en/4.2/ref/settings/#default-auto-field + +DEFAULT_AUTO_FIELD = 'django.db.models.BigAutoField' diff --git a/ECGS/urls.py b/ECGS/urls.py new file mode 100644 index 0000000..15d0d56 --- /dev/null +++ b/ECGS/urls.py @@ -0,0 +1,23 @@ +""" +URL configuration for ECGS project. + +The `urlpatterns` list routes URLs to views. For more information please see: + https://docs.djangoproject.com/en/4.2/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, include + +urlpatterns = [ + path('admin/', admin.site.urls), + path('api/', include('login.urls')), +] diff --git a/ECGS/wsgi.py b/ECGS/wsgi.py new file mode 100644 index 0000000..d728a33 --- /dev/null +++ b/ECGS/wsgi.py @@ -0,0 +1,16 @@ +""" +WSGI config for ECGS 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/4.2/howto/deployment/wsgi/ +""" + +import os + +from django.core.wsgi import get_wsgi_application + +os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'ECGS.settings') + +application = get_wsgi_application() diff --git a/README.md b/README.md index 99735a6..74b914b 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,75 @@ # SETOSP +软件工程测试开源项目 + + +SETOSP 是一个教学示例项目,用于演示如何使用某某技术开发某某功能。 + +## Project Goal and Features + +Project Goal 是为了让学习者了解某某技术的基本原理和应用场景,以及如何使用某某技术实现某某功能。 + +Project Features 包括: + +- 功能一:实现了某某功能的核心逻辑和界面 +- 功能二:实现了某某功能的扩展功能和优化 +- 功能三:实现了某某功能的测试和部署 + +## Project Tech Stack and Dependencies + +Project Tech Stack 使用了以下技术: + +- 技术一:用于实现某某功能的主要技术 +- 技术二:用于实现某某功能的辅助技术 +- 技术三:用于实现某某功能的工具技术 + +Project Dependencies 需要安装以下依赖: + +- 依赖一:用于提供某某功能的必要库或框架 +- 依赖二:用于提供某某功能的可选库或框架 +- 依赖三:用于提供某某功能的开发或测试库或框架 + +## Project Installation and Running + +Project Installation 需要执行以下步骤: + +1. 克隆或下载本项目到本地 +2. 进入项目根目录,执行命令 `命令一` 安装依赖 +3. 执行命令 `命令二` 配置环境变量或参数 +4. 执行命令 `命令三` 启动本地服务器或数据库 + +Project Running 需要执行以下步骤: + +1. 执行命令 `命令四` 运行项目主程序 +2. 在浏览器中访问 `地址一` 查看项目主界面 +3. 在浏览器中访问 `地址二` 查看项目辅助界面 +4. 在浏览器中访问 `地址三` 查看项目文档或帮助 + +## Project Testing and Deployment + +Project Testing 需要执行以下步骤: + +1. 执行命令 `命令五` 运行项目测试程序 +2. 查看控制台或日志文件中的测试结果和报告 +3. 根据测试结果和报告修复或优化项目代码或配置 + +Project Deployment 需要执行以下步骤: + +1. 执行命令 `命令六` 打包或构建项目程序 +2. 将打包或构建后的项目程序上传到目标服务器或平台 +3. 在目标服务器或平台上执行命令 `命令七` 启动或部署项目程序 +4. 在浏览器中访问 `地址四` 查看项目线上界面 + +## Project Contribution and License + +Project Contribution 欢迎任何对本项目感兴趣或有建议的人参与贡献,可以通过以下方式进行贡献: + +- 提交 Issue 或 Pull Request 到本项目的 GitHub 仓库 +- 在本项目的 GitHub 仓库中留下评论或反馈 +- 在本项目的相关社区或平台中分享或推广本项目 + +Project License 本项目采用了某某许可协议,具体内容请参考本项目根目录下的 LICENSE 文件。 + + + + diff --git a/db.sqlite3 b/db.sqlite3 new file mode 100644 index 0000000..e182ae3 Binary files /dev/null and b/db.sqlite3 differ diff --git a/login/__init__.py b/login/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/login/admin.py b/login/admin.py new file mode 100644 index 0000000..8c38f3f --- /dev/null +++ b/login/admin.py @@ -0,0 +1,3 @@ +from django.contrib import admin + +# Register your models here. diff --git a/login/apps.py b/login/apps.py new file mode 100644 index 0000000..ebd58e7 --- /dev/null +++ b/login/apps.py @@ -0,0 +1,6 @@ +from django.apps import AppConfig + + +class LoginConfig(AppConfig): + default_auto_field = 'django.db.models.BigAutoField' + name = 'login' diff --git a/login/migrations/__init__.py b/login/migrations/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/login/models.py b/login/models.py new file mode 100644 index 0000000..71a8362 --- /dev/null +++ b/login/models.py @@ -0,0 +1,3 @@ +from django.db import models + +# Create your models here. diff --git a/login/serializers.py b/login/serializers.py new file mode 100644 index 0000000..c7310f3 --- /dev/null +++ b/login/serializers.py @@ -0,0 +1,15 @@ +# -*- encoding: utf-8 -*- +''' +@File : serializers.py +@License : (C)Copyright 2018-2022 + +@Modify Time @Author @Version @Desciption +------------ ------- -------- ----------- +2023/7/20 16:43 zart20 1.0 None +''' + +from rest_framework import serializers + +class LoginSerializer(serializers.Serializer): + username = serializers.CharField() + password = serializers.CharField() diff --git a/login/tests.py b/login/tests.py new file mode 100644 index 0000000..223e4bd --- /dev/null +++ b/login/tests.py @@ -0,0 +1,22 @@ +from django.test import TestCase +from django.urls import reverse +from django.contrib.auth.models import User + +class LoginAPITestCase(TestCase): + def setUp(self): + # 创建一个测试用户 + self.user = User.objects.create_user(username='testuser', password='123456') + + def test_login_success(self): + # 发送POST请求,模拟登录 + response = self.client.post(reverse('login'), {'username': 'testuser', 'password': '123456'}) + # 确认请求成功,并返回了JSON响应 + self.assertEqual(response.status_code, 200) + self.assertJSONEqual(response.content, {'message': '登录成功'}) + + def test_login_fail(self): + # 发送POST请求,使用错误的密码,模拟登录失败 + response = self.client.post(reverse('login'), {'username': 'testuser', 'password': 'wrongpassword'}) + # 确认请求失败,并返回了JSON响应 + self.assertEqual(response.status_code, 401) + self.assertJSONEqual(response.content, {'error': '用户名或密码错误'}) diff --git a/login/urls.py b/login/urls.py new file mode 100644 index 0000000..06ebde6 --- /dev/null +++ b/login/urls.py @@ -0,0 +1,6 @@ +from django.urls import path +from .views import LoginView + +urlpatterns = [ + path('login/', LoginView.as_view(), name='login'), +] diff --git a/login/views.py b/login/views.py new file mode 100644 index 0000000..ece860b --- /dev/null +++ b/login/views.py @@ -0,0 +1,22 @@ +from rest_framework.views import APIView +from rest_framework.response import Response +from rest_framework import status +from django.contrib.auth import authenticate + +from .serializers import LoginSerializer + +class LoginView(APIView): + def post(self, request): + serializer = LoginSerializer(data=request.data) + if serializer.is_valid(): + username = serializer.validated_data['username'] + password = serializer.validated_data['password'] + user = authenticate(username=username, password=password) + + if user: + return Response({'message': '登录成功'}, status=status.HTTP_200_OK) + else: + return Response({'error': '用户名或密码错误'}, status=status.HTTP_401_UNAUTHORIZED) + else: + return Response(serializer.errors, status=status.HTTP_400_BAD_REQUEST) + diff --git a/manage.py b/manage.py new file mode 100644 index 0000000..27c15e8 --- /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', 'ECGS.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/requirements.txt b/requirements.txt new file mode 100644 index 0000000..d8ade06 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,6 @@ +asgiref==3.7.2 +Django==4.2.3 +djangorestframework==3.14.0 +pytz==2023.3 +sqlparse==0.4.4 +tzdata==2023.3