当前位置: 首页 > news >正文

wordpress 仿煎蛋网站关键词搜索排名优化

wordpress 仿煎蛋,网站关键词搜索排名优化,佛山网站建设企业推荐,象山县建设工程招投标网站文章目录 一、引入pytest相关的包二、配置pytest1、将django的配置区分测试环境、开发环境和生产环境2、配置pytest 三、编写测试用例1、业务测试2、接口测试 四、进行测试 在Django项目中集成Pytest进行单元测试可以提高测试的灵活性和效率#xff0c;相比于Django自带的测试… 文章目录 一、引入pytest相关的包二、配置pytest1、将django的配置区分测试环境、开发环境和生产环境2、配置pytest 三、编写测试用例1、业务测试2、接口测试 四、进行测试 在Django项目中集成Pytest进行单元测试可以提高测试的灵活性和效率相比于Django自带的测试框架Pytest提供了更为丰富和强大的测试功能。本文通过一个实际项目ishareblog介绍django集成pytest进行自动化单元测试实战。 一、引入pytest相关的包 pip install pytest pip install pytest-django pip install pytest-html其中pytest-django插件它提供了Django和Pytest之间的桥梁pytest-html 是一个 pytest 的插件用于生成详细的 HTML 测试报告。这个插件能够将 pytest 运行的结果转化为一个直观、易于阅读的 HTML 格式报告这对于分享测试结果、审查测试覆盖率以及归档测试历史非常有帮助。 二、配置pytest 1、将django的配置区分测试环境、开发环境和生产环境 因为测试环境、开发环境和生产环境的环境配置参数不一样一个好的实践是将开发、测试和生产环境通过配置区分开django的配置主要集中在项目的settings.py文件这里通过settings.py的配置文件将开发、测试、生产区分开不同的环境调用不通的配置文件。 因为大部分的配置参数都是一样的在这里我将公共的配置参数都抽到了base.py环境配置中有差异的部分分别放到各自的配置文件中如开发环境用的是mysql测试环境用sqlite3就可以将不同的配置给区分开。 测试环境是settings_test.py这里除了数据库的配置不一样其他都沿用基础的公共配置。settings_test.py配置如下 from .base import *# SECURITY WARNING: dont run with debug turned on in production! DEBUG TrueALLOWED_HOSTS []DATABASES {default: {ENGINE: django.db.backends.sqlite3,NAME: os.path.join(BASE_DIR, test_db.sqlite3),} }2、配置pytest 在Django项目根目录下创建或编辑pytest.ini文件来配置Pytest。 pytest.ini代码如下 [pytest] DJANGO_SETTINGS_MODULE ishareblog.settings_testpython_files tests.py test_*.py *_tests.pyDJANGO_SETTINGS_MODULE ishareblog.settings_test 指定了pytest用到的环境配置 python_files tests.py test_*.py *_tests.py 指定了pytest将测试以test开头的py文件中的测试用例。 三、编写测试用例 接下来可以在tests.py或test_*.py文件中编写你的测试用例。由于pytest-django插件的存在你可以像平常一样使用Django的测试机制同时也能享受Pytest带来的便利。以下以我的ishareblog博客代码通过业务测试和接口测试来编写测试用例。 1、业务测试 我的isharebog业务相对简单主要是测试验证业务模型模块的增删改查是否符合预期。 业务测试tests.py示例代码如下 import pytest from django.test import TestCase from blog.models import BlogCategorypytest.mark.django_db class TestBlogCategory(TestCase):def setUp(self):self.blogcategory BlogCategory.objects.create(id1,titleTest Category, href/category/1)def test_BogCategoryModel(self):blog_category BlogCategory.objects.get(idself.blogcategory.id)self.assertEqual(blog_category.title, Test Category)self.assertEqual(blog_category.href, /category/1)pytest.mark.django_db def test_blog_category_create():blogcategory BlogCategory.objects.create(id1,titleTest Category, href/category/1)category_count BlogCategory.objects.count()assert category_count 0, Blog category was not created category_count0.assert blogcategory.id 0, Blog category was not created.assert blogcategory.title Test Category, Blog category title is wrong.assert blogcategory.href /category/1, Blog category href is wrong.pytest.mark.django_db def test_blog_category_query():category_count len(BlogCategory.objects.all())assert category_count 0, Blog category query error.if __name__ __main__:pytest.main([-s, -v, -p, no:warnings, --tbshort, --htmlreport.html, blog/tests.py])业务测试举了通过测试类和测试方法写的测试用例分别对博客目录进行添加和查询编写了测试用例。 2、接口测试 接口是暴露给前端程序调用的接口测试主要是测试接口正不正常接口值是不是符合预期。 import requests import pytesthost http://localhost:8000class TestApi:def test_getcategory_list(self):url f{host}/api/category/response requests.get(url)assert response.status_code 200, fExpected status code 200 but got {response.status_code}assert response.json() ! None, fExpected to get json response but got {response.text}print(response.json())def test_getpost_list(self):url f{host}/api/post/listresponse requests.get(url)assert response.status_code 200, fExpected status code 200 but got {response.status_code}assert response.json() ! None, fExpected to get json response but got {response.text}if __name__ __main__:pytest.main([-s, -v, -p, no:warnings, --tbshort, --htmlreport.html, api/tests.py])接口测试部分对获取目录的API接口和文章列表的API接口编写了测试用例。 四、进行测试 最后可以分别在blog目录和api目录下运行test.py 分别进行业务和接口的单元测试。 注意在进行测试之前需要执行 python manage.py makemigrations --settingsishareblog.settings_test 初始化环境。 在进行api接口测试之前需要将django的应用服务启动 python manage.py runserver 8000 --settingsishareblog.settings_test 启动的时候也带上测试环境的配置。 可以通过pytest --htmlreport.html 自动执行所有的单元测试并生成可读的html的测试报告。 pytest生成的report.html测试报告 以上通过一个ishareblog的实际项目介绍django集成pytest进行自动化单元测试实战。 ishareblog的所有代码包括pytest的配置见 https://gitee.com/xiejava/ishareblog 博客地址http://xiejava.ishareread.com/
http://www.dnsts.com.cn/news/5442.html

相关文章:

  • 做网站去什么公司咸鱼app引导页面设计模板
  • 湖北省建设交易协会网站硬件工程师需要学哪些
  • 网站关键词seo费用wordpress 表格处理
  • 2W网站建设的作用wordpress post link
  • 制作网站主题360建筑网一级消防工程师招聘
  • 网站dns服务360建筑网上怎么删除投递信息
  • 重庆专业网站建设首页排名微信管理平台
  • 网站建设分金手指排名十二肥城网站建设广州外地车牌
  • 网站建设远程培训淘宝流量网站
  • 莒南做网站网站海外推广平台
  • 哪个公司网站建设好韩国怎么出线
  • 一个网站如何做盈利贡井移动网站建设
  • 网站建设潮州wordpress 负载
  • php网站开发工程师任职要求新开网站
  • 网站建设之网页制作语言基础网站调用flash
  • 网站建设公司简介模板下载做关键词优化的公司
  • wordpress企业建站流程嘉兴seo网站优化
  • 外贸建站网站公司做网站软文怎么弄
  • 上市公司做家具网站盘锦网站建设优化
  • 学网站建设有用吗网站好友邀请链接生成 php
  • 哪里有工程做的网站wordpress是是什么技术
  • 室内设计公司职位整站seo外包
  • 哪个网站做简历移动网站 做优化
  • 怎么创建网站校园表白墙浙江商城网站建设
  • 天津网站建设是什么做网站公司促销海报
  • 免费推广网站58佛山网站开发哪家好
  • 什么网站做二维码比较好asp net做网站
  • 网站中数据库教程微信小程序怎么收费标准
  • 南宁站建好就够用安装app软件
  • 网站建设伍金手指下拉9个人作品网站模板