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

网站建设 phpppt模板下载网址

网站建设 php,ppt模板下载网址,长春市制作网站费用,广州小程序设计制作个人博客系统测试报告 一.项目背景二.项目功能三.测试用例3.1 功能测试3.2 自动化测试#xff08;部分测试#xff09;3.2.1登陆页面3.2.2博客详情页3.2.3博客编辑页3.2.4个人列表页3.2.5测试结果 3.3 性能测试 一.项目背景 当学习完一项技能后#xff0c;我们总会习惯通过博… 个人博客系统测试报告 一.项目背景二.项目功能三.测试用例3.1 功能测试3.2 自动化测试部分测试3.2.1登陆页面3.2.2博客详情页3.2.3博客编辑页3.2.4个人列表页3.2.5测试结果 3.3 性能测试 一.项目背景 当学习完一项技能后我们总会习惯通过博客来总结所学的知识点方便后期遗忘时随时查看和快速复习。本次开发的类似于CSDN的个人博客系统便是为了更加轻量和方便地记录自己的学习笔记方便自己后期学习记录。 二.项目功能 该个人博客系统主要实现了以下功能注册和登录、注销、编写博客、修改博客、删除博客、查看博客详情修改个人信息等功能。 注册登录功能用户输入想创建的账号和密码点击注册按钮无误后跳转到登陆页面在登录页面输入正确的账号密码登录成功后就会跳转到博客列表页。在右上角存在网站主页注册两个按钮。博客列表页面可以在列表页查看用户所有的博客文章简介支持分页功能其包括博客标题、发布时间以及内容概要。在左侧可以看到登录的用户以及文章数、分类数等的模块。在右上角有主页、写博客和注销三个功能。博客详情页面在博客列表页面下方点击“查看全文”按钮就会跳转到当前博客详情页此时就可以看到该篇博客的完整内容。在右上角有主页和写博客两个功能个人信息页面该页面显示用户全部的个人信息包括头像性别账号昵称个人简介等用户也可以修改除账号以外的全部信息。博客编辑页面在登录之后的任意界面点击“写博客”之后就会进入博客编辑页面此时就可以进行博客的编写支持markdown格式点击“发布文章”后就可以成功发布文章此时就会跳转到我的博客页面。 三.测试用例 3.1 功能测试 3.2 自动化测试部分测试 实现工具类增加代码复用 为了避免在使用时频繁创建驱动类我们可以定义一个功能类使用单例创建驱动对象。 // An highlighted block package com.example.blogautotest.common;import org.apache.commons.io.FileUtils; import org.openqa.selenium.OutputType; import org.openqa.selenium.chrome.ChromeDriver; import org.openqa.selenium.edge.EdgeDriver;import java.io.File; import java.io.IOException; import java.text.SimpleDateFormat; import java.time.Duration; import java.util.ArrayList; import java.util.List;public class AutotestUtils {public static EdgeDriver driver;//创建驱动对象public static EdgeDriver createDriver(){//单例模式if(drivernull){drivernew EdgeDriver();//创建隐式等待driver.manage().timeouts().implicitlyWait(Duration.ofSeconds(5));}return driver;}//获取当前时间将截图按照时间保存public ListString getTime(){//文件夹以天保存//截图以毫秒时间戳保存SimpleDateFormat sim1new SimpleDateFormat(yyyyMMdd-HHmmssSS);SimpleDateFormat sim2 new SimpleDateFormat(yyyyMMdd);String filenamesim1.format(System.currentTimeMillis());String dirnamesim2.format(System.currentTimeMillis());ListString list new ArrayList();list.add(dirname);list.add(filename);return list;}//获取屏幕截图把所有的用例执行的结果保存下来public void getScreenShot(String str) throws IOException {ListString listgetTime();// ./指的是当前的项目路径下也就是BlogAutoTest下String filename./src/test/java/com/blogautotest/list.get(0)/str_list.get(1).png;File srcfiledriver.getScreenshotAs(OutputType.FILE);//把屏幕截图生成的文件放到指定的路径FileUtils.copyFile(srcfile,new File(filename));} }3.2.1登陆页面 创建一个类自定义名为BlogLoginTest 继承 AutoTestUtils 类获取驱动之后选取典型 case 使用参数化注解对异常、正常登录分别进行测试进行相应弹窗处理最后进行屏幕截图. package com.example.blogautotest.Tests;import com.example.blogautotest.common.AutotestUtils; import org.junit.jupiter.api.*; import org.junit.jupiter.params.ParameterizedTest; import org.junit.jupiter.params.provider.CsvSource; import org.openqa.selenium.By; import org.openqa.selenium.edge.EdgeDriver;import java.io.IOException;//设置优先级 TestMethodOrder(MethodOrderer.OrderAnnotation.class) public class BlogLoginTest extends AutotestUtils {public static final String UNIVERSAL_KAPTCHA_CODEc8fd27d19b2aa9fa24affd2a4726778c;public static EdgeDriver drivercreateDriver();BeforeAllpublic static void baseControl(){driver.get(http://127.0.0.1:8080/login.html);}/*检查登录页面打开是否正确检查点登录标题 用户名是否存在*/TestOrder(1)public void loginPageLoadRight() throws IOException {//检验页面是否加载正确两个检查点driver.findElement(By.cssSelector(body div.login-container div h3));driver.findElement(By.cssSelector(body div.login-container div div:nth-child(2) span));getScreenShot(getClass().getName());}ParameterizedTestCsvSource({zhangsan,123,admin,admin})Order(2)public void loginSuc(String name , String password) throws InterruptedException, IOException{driver.findElement(By.cssSelector(#username)).clear();driver.findElement(By.cssSelector(#password)).clear();driver.findElement(By.cssSelector(#rightCode)).clear();driver.findElement(By.cssSelector(#username)).sendKeys(name);driver.findElement(By.cssSelector(#password)).sendKeys(password);driver.findElement(By.cssSelector(#rightCode)).sendKeys(UNIVERSAL_KAPTCHA_CODE);driver.findElement(By.cssSelector(#submit)).click();//处理弹窗Thread.sleep(300);driver.switchTo().alert().accept();//对登录结果进行检测,存在草稿页元素代表登录成功driver.findElement(By.cssSelector(body div.nav a:nth-child(5)));//getScreenShot(getClass().getName());driver.navigate().back();}ParameterizedTestCsvSource({admin,123,zhangsan,666})Order(3)public void loginFail(String name,String password) throws IOException, InterruptedException {driver.findElement(By.cssSelector(#username)).clear();driver.findElement(By.cssSelector(#password)).clear();driver.findElement(By.cssSelector(#rightCode)).clear();driver.findElement(By.cssSelector(#username)).sendKeys(name);driver.findElement(By.cssSelector(#password)).sendKeys(password);driver.findElement(By.cssSelector(#rightCode)).sendKeys(UNIVERSAL_KAPTCHA_CODE);driver.findElement(By.cssSelector(#submit)).click();//处理弹窗Thread.sleep(300);//获取弹窗内容String textdriver.switchTo().alert().getText();String except登陆成功;driver.switchTo().alert().accept();Assertions.assertNotEquals(except,text);//获取当前页面截屏//getScreenShot(getClass().getName());} }3.2.2博客详情页 package com.example.blogautotest.Tests;import com.example.blogautotest.common.AutotestUtils; import org.junit.jupiter.api.BeforeAll; import org.junit.jupiter.api.Test; import org.openqa.selenium.By; import org.openqa.selenium.chrome.ChromeDriver; import org.openqa.selenium.edge.EdgeDriver;import java.io.IOException;public class BlogDetailTest extends AutotestUtils {public static EdgeDriver drivercreateDriver();BeforeAllpublic static void baseControl(){driver.get(http://127.0.0.1:8080/blog_content.html?id12869974016131072);}Testpublic void blogDeailLoadRight() throws IOException{driver.findElement(By.cssSelector(#data));driver.findElement(By.cssSelector(#title));} }3.2.3博客编辑页 package com.example.blogautotest.Tests;import com.example.blogautotest.common.AutotestUtils; import org.junit.jupiter.api.Assertions; import org.junit.jupiter.api.BeforeAll; import org.junit.jupiter.api.Test; import org.openqa.selenium.By; import org.openqa.selenium.edge.EdgeDriver;import java.io.IOException;public class BlogEditTest extends AutotestUtils {public static EdgeDriver drivercreateDriver();BeforeAllpublic static void baseControl(){driver.get(http://127.0.0.1:8080/blog_edit.html);}Testpublic void editAndSubimitBlog() throws IOException, InterruptedException {driver.findElement(By.cssSelector(#title)).sendKeys(自动化测试);//博客系统使用到的编辑是第三方软件所以不能直接使用sendKeys向编辑模块发送文本driver.findElement(By.cssSelector(#editorDiv div.editormd-toolbar div ul li:nth-child(30))).click();driver.findElement(By.cssSelector(body div.blog-edit-container div.title button:nth-child(2))).click();Thread.sleep(300);String actualdriver.switchTo().alert().getText();driver.switchTo().alert().accept();String expect 恭喜添加成功;Assertions.assertEquals(expect,actual);} }3.2.4个人列表页 package com.example.blogautotest.Tests;import com.example.blogautotest.common.AutotestUtils; import org.junit.jupiter.api.Assertions; import org.junit.jupiter.api.BeforeAll; import org.junit.jupiter.api.Test; import org.openqa.selenium.By; import org.openqa.selenium.edge.EdgeDriver;public class MyBlogListTest extends AutotestUtils {public static EdgeDriver drivercreateDriver();BeforeAllpublic static void baseControl(){driver.get(http://127.0.0.1:8080/myblog_list.html);}Testpublic void myListPageLoadRight(){//检查博客列表加载是否正常driver.findElement(By.cssSelector(body div.nav a:nth-child(7)));driver.findElement(By.cssSelector(body div.container div.container-left div a));driver.findElement(By.cssSelector(body div.container div.container-right div.blog-pagnation-wrapper button:nth-child(1)));driver.findElement(By.cssSelector(body div.container div.container-right div.blog-pagnation-wrapper button:nth-child(3)));}Testpublic void jumpTest(){//测试导航栏能否正常跳转driver.findElement(By.cssSelector(body div.nav a:nth-child(4))).click();Assertions.assertEquals(http://127.0.0.1:8080/blog_list.html,driver.getCurrentUrl());driver.navigate().back();driver.findElement(By.cssSelector(body div.nav a:nth-child(6))).click();Assertions.assertEquals(http://127.0.0.1:8080/blog_edit.html,driver.getCurrentUrl());driver.navigate().back();} }3.2.5测试结果 3.3 性能测试 通过LoadRunner模拟多个用户进行并发进行登录后访问所有文章列表页面。 3.3.1.编写性能测试脚本 Action() {//开启进入登录页事务lr_start_transaction(login_index);/* 注册获取返回参数该方法可以配合打印返回数据检测数据内容 */web_reg_save_param(ParaResult,LB,RB,LAST);// 定时检查点检测登录页面是否正确打开web_reg_find(Text登录,LAST);// 定义虚拟用户结合点lr_rendezvous(start);// 进入登录页面web_url(login_html,URLhttp://127.0.0.1:7070/login.html,TargetFrame,Resource0,Referer,LAST);// 结束进入登录页事务lr_end_transaction(login_index, LR_AUTO);//开启登录事务lr_start_transaction(login);// 进行登录web_submit_data(login,Actionhttp://127.0.0.1:7070/user/login,MethodPOST,EncTypeapplication/x-www-form-urlencoded; charsetUTF-8,TargetFrame,Referer,ModeHTTP,ITEMDATA,Nameusername, Valueusername, ENDITEM,Namepassword, Valuepassword, ENDITEM,LAST);//定时检测所有文章列表页检查点web_reg_find(Text查看全文,LAST);// 结束登录事务lr_end_transaction(login, LR_AUTO);//文章列表事务lr_start_transaction(blog_list);// 登录后访问所有文章列表页面web_url(blog_list,URLhttp://127.0.0.1:7070/blog_list.html,TargetFrame,Resource0,Referer,LAST);// 结束文章列表页事务lr_end_transaction(blog_list, LR_AUTO);return 0; } 测试脚本没有问题后修改Action脚本的执行次数执行5次脚本 为了保证测试的合理性多个虚拟用户使用多个不同的账号进行登录使用LoadRunner的参数化即可实现。 针对编写好的脚本通过Controller创建测试场景 设置15个虚拟用户 设置每5秒进入3个虚拟用户到测试场景 设置虚拟用户执行循环执行5分钟 设置虚拟用户执行完毕后每10秒退出5个虚拟用户 添加监视系统资源 CPU运行时间和剩余内存 性能测试报告 通过虚拟用户运行图标可以发现在脚本运行40秒到5分30秒之间虚拟用户给了服务器负载 通过点击率表可以看到和虚拟用户运行表运行对应起来虚拟用户的增多点击率也随之增多点击率越多说明和服务器的交互次数也越多。 通过事务响应时间发现访问登录页面的时间比较长登录事务时间响应时间是比较短的
http://www.hkea.cn/news/14289325/

相关文章:

  • vs做网站怎么上东莞模块网站建设
  • 深圳网站建设收费标准优质网站策划
  • 支付宝 手机网站支付接口2.0关于推进公司网站开发的请示
  • 大型网站seo方法网站引导页是什么
  • 全国建设注册中心网站一个网站域名多少钱
  • 加盟网站制作费用做儿童方面的网站
  • 宜宾建设教育培训中心网站建网站的公司不肯签合同
  • 广州婚恋网站排名网站项目建设周期
  • 网站有源码之后怎么建设网站网页图片代码
  • 网站开发小工具怎么制作网站ping工具
  • 中学加强校园网站建设郑州网站建设企业推荐
  • 深圳有哪些招聘网站网站不公开简历做家教
  • 公司网站属于信息化建设吗博采网络
  • 做海外贸易网站北京到安阳的火车
  • 深圳建设企业网站多媒体展厅设计制作公司
  • 食品 技术支持 东莞网站建设专门建设网站的公司
  • 新网站多久被百度收录定制v软件免费下载
  • 网站建设和维护一年的费用设计一套网站费用
  • 安徽建设住房建设厅网站河南商务网站建设
  • 云龙微网站开发深圳企业网站建设费用
  • 哪些网站用c 做的多域名指向同一网站
  • 鲜花网站开发背景网站建设运维
  • 济南建设工程业绩公示的网站网络营销的四种策略
  • 免费网站注册域名阳江网上办事大厅
  • 网站建设质量体系审核指导做网站用哪几个端口 比较好
  • 黄页网站 php个人自助网站
  • 网站推广含义国外网站做盗版
  • 台州市椒江建设工程机械厂网站全国文明网联盟网站建设
  • 图片外链wordpress图片优化加速
  • 中国建设银行官方网站沈阳野花香社区在线观看播放