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

长沙代理记账深圳网站建设推广优化

长沙代理记账,深圳网站建设推广优化,wordpress 仿手机商城模板,建设电子商务网站需要什么设备Author:MTingle major:人工智能 Build your hopes like a tower! 目录 一.项目简介 二.开发技术 三.测试用例设计(持续更新中) 登录界面 判题功能 四.自动化测试代码(持续更新中) 管理端登录页面 管理端用户界面 main函数 五.性能测试报告 总体情况 具体…

Author:MTingle
major:人工智能


Build your hopes like a tower!

目录

一.项目简介

二.开发技术

三.测试用例设计(持续更新中)

登录界面

判题功能

四.自动化测试代码(持续更新中)

管理端登录页面

管理端用户界面

main函数

五.性能测试报告

总体情况

具体指标分析


一.项目简介

本项目实现了一个完整OJ项目所应具有的大部分功能.基于 B 端和 C 端特性,实现功能与业务的合理切分。在用户端,实现了竞赛列表展示、历史竞赛回顾、竞赛报名参与、在线刷题以及竞赛排名查看等功能.管理端则具备发布竞赛、发布题目以及对违规用户执行拉黑操作等功能。对于游客,系统开放了浏览题目和竞赛信息的权限,同时限制其参赛与做题操作,在保证信息公开的同时维护了系统的公平性与安全性。

二.开发技术

SpringBoot、SpringCloud、MyBatisPlus、Redis、RabbitMQ、ES引擎、Lombok、JWT、Docker、雪花算法等

三.测试用例设计(持续更新中)

登录界面

判题功能

四.自动化测试代码(持续更新中)

管理端登录页面

package tests.sysuser;import common.Utils;
import org.openqa.selenium.By;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.support.ui.ExpectedConditions;
import org.openqa.selenium.support.ui.WebDriverWait;import java.sql.Driver;
import java.time.Duration;public class SysLoginPage extends Utils {public static String url = "http://81.70.80.96:10030/oj/login";public SysLoginPage() {super(url);}public void loginPageRight(){WebDriverWait wait = new WebDriverWait(driver, Duration.ofSeconds(10));WebElement element = wait.until(ExpectedConditions.presenceOfElementLocated(By.cssSelector("#app > div > div.login-box > div.logo-box > div > div.sys-name")));if (element!=null){System.out.println("页面加载成功");}else{System.out.println("页面加载失败");}}public void login() throws InterruptedException {WebDriverWait wait = new WebDriverWait(driver, Duration.ofSeconds(10));// 账号密码为空wait.until(ExpectedConditions.elementToBeClickable(By.cssSelector("#app > div > div.login-box > div.form-box > div.submit-box"))).click();// 用户名: #app > div > div.login-box > div.form-box > div:nth-child(1) > div > div > input// 密码: #app > div > div.login-box > div.form-box > div:nth-child(2) > div > div > input// 密码未输入wait.until(ExpectedConditions.presenceOfElementLocated(By.cssSelector("#app > div > div.login-box > div.form-box > div:nth-child(1) > div > div > input"))).sendKeys("abc");wait.until(ExpectedConditions.elementToBeClickable(By.cssSelector("#app > div > div.login-box > div.form-box > div.submit-box"))).click();// 输入密码,但用户不存在wait.until(ExpectedConditions.presenceOfElementLocated(By.cssSelector("#app > div > div.login-box > div.form-box > div:nth-child(2) > div > div > input"))).sendKeys("123");wait.until(ExpectedConditions.elementToBeClickable(By.cssSelector("#app > div > div.login-box > div.form-box > div.submit-box"))).click();// 输入存在用户,但是密码错误wait.until(ExpectedConditions.presenceOfElementLocated(By.cssSelector("#app > div > div.login-box > div.form-box > div:nth-child(1) > div > div > input"))).clear();wait.until(ExpectedConditions.presenceOfElementLocated(By.cssSelector("#app > div > div.login-box > div.form-box > div:nth-child(1) > div > div > input"))).sendKeys("admin");wait.until(ExpectedConditions.elementToBeClickable(By.cssSelector("#app > div > div.login-box > div.form-box > div.submit-box"))).click();// 输入sql注入wait.until(ExpectedConditions.presenceOfElementLocated(By.cssSelector("#app > div > div.login-box > div.form-box > div:nth-child(1) > div > div > input"))).clear();wait.until(ExpectedConditions.presenceOfElementLocated(By.cssSelector("#app > div > div.login-box > div.form-box > div:nth-child(1) > div > div > input"))).sendKeys("'OR '1'=''1");wait.until(ExpectedConditions.elementToBeClickable(By.cssSelector("#app > div > div.login-box > div.form-box > div.submit-box"))).click();// 正常登录wait.until(ExpectedConditions.presenceOfElementLocated(By.cssSelector("#app > div > div.login-box > div.form-box > div:nth-child(1) > div > div > input"))).clear();wait.until(ExpectedConditions.presenceOfElementLocated(By.cssSelector("#app > div > div.login-box > div.form-box > div:nth-child(2) > div > div > input"))).clear();wait.until(ExpectedConditions.presenceOfElementLocated(By.cssSelector("#app > div > div.login-box > div.form-box > div:nth-child(1) > div > div > input"))).sendKeys("admin");wait.until(ExpectedConditions.presenceOfElementLocated(By.cssSelector("#app > div > div.login-box > div.form-box > div:nth-child(2) > div > div > input"))).sendKeys("admin");wait.until(ExpectedConditions.elementToBeClickable(By.cssSelector("#app > div > div.login-box > div.form-box > div.submit-box"))).click();// 等待登录成功后的页面跳转wait.until(ExpectedConditions.urlContains("/oj/layout/question"));}}

管理端用户界面

package tests.sysuser;import common.Utils;
import org.openqa.selenium.By;
import org.openqa.selenium.support.ui.ExpectedConditions;
import org.openqa.selenium.support.ui.WebDriverWait;import java.time.Duration;public class SysuserListPage extends Utils {public static String url = "http://81.70.80.96:10030/oj/layout/question";public SysuserListPage() {super(url);}public void findUser() throws InterruptedException {System.out.println("开始搜索用户");WebDriverWait wait = new WebDriverWait(driver, Duration.ofSeconds(3));wait.until(ExpectedConditions.presenceOfElementLocated(By.cssSelector("#app")));wait.until(ExpectedConditions.elementToBeClickable(By.cssSelector("#app > section > main > div.left > aside > ul > li:nth-child(1) > span")));driver.findElement(By.cssSelector("#app > section > main > div.left > aside > ul > li:nth-child(1) > span")).click();wait.until(ExpectedConditions.presenceOfElementLocated(By.cssSelector("#app > section > main > div.right > form > div:nth-child(2) > div > div > div > input")));driver.findElement(By.cssSelector("#app > section > main > div.right > form > div:nth-child(2) > div > div > div > input")).sendKeys("乐");System.out.println("输入用户完成,点击搜索");wait.until(ExpectedConditions.elementToBeClickable(By.cssSelector("#app > section > main > div.right > form > div:nth-child(3) > div > button:nth-child(1) > span")));driver.findElement(By.cssSelector("#app > section > main > div.right > form > div:nth-child(3) > div > button:nth-child(1) > span")).click();System.out.println("用户搜索完成");Thread.sleep(5);}public void blockAndRecover() throws InterruptedException {System.out.println("开始执行用户拉黑");WebDriverWait wait = new WebDriverWait(driver,Duration.ofSeconds(10));// 等待表格加载完成wait.until(ExpectedConditions.presenceOfElementLocated(By.cssSelector("#app > section > main > div.right > div.el-table--fit.el-table--scrollable-x.el-table--enable-row-transition.el-table.el-table--layout-fixed.is-scrolling-left > div.el-table__inner-wrapper > div.el-table__body-wrapper > div > div.el-scrollbar__wrap.el-scrollbar__wrap--hidden-default > div > table > tbody > tr:nth-child(1) > td.el-table_2_column_16.el-table-fixed-column--right.is-first-column.el-table__cell > div"))).click();//        // 等待按钮可点击
//        Thread.sleep(5);System.out.println("执行用户解禁");Thread.sleep(5);// 等待按钮再次可点击driver.findElement(By.cssSelector("#app > section > main > div.right > div.el-table--fit.el-table--scrollable-x.el-table--enable-row-transition.el-table.el-table--layout-fixed.is-scrolling-left > div.el-table__inner-wrapper > div.el-table__body-wrapper > div > div.el-scrollbar__wrap.el-scrollbar__wrap--hidden-default > div > table > tbody > tr:nth-child(1) > td.el-table_2_column_16.el-table-fixed-column--right.is-first-column.el-table__cell > div > button > span")).click();Thread.sleep(5);}}

main函数

package tests;import tests.sysuser.SysLoginPage;
import tests.sysuser.SysuserListPage;public class RunTests {public static void main(String[] args) throws InterruptedException {SysLoginPage sysLoginPage = new SysLoginPage();sysLoginPage.loginPageRight();sysLoginPage.login();SysuserListPage userListPage = new SysuserListPage();userListPage.findUser();userListPage.blockAndRecover();sysLoginPage.quit();}
}

五.性能测试报告

总体情况

报告展示了使用 Apache JMeter 进行性能测试的结果。测试涉及 “在线用户登录” 和 “用户提交代码” 等操作,整体样本数总计 18034 个,无异常情况(异常 % 为 0.00%) ,吞吐量总体为 175.9/sec,说明系统在测试期间平均每秒能处理 175.9 个请求。

具体指标分析

  • 响应时间
    • 在线用户登录:平均值 25ms,最小值 16ms,最大值 138ms ,标准偏差 5.88 。表明多数登录请求响应较快,但存在个别稍长时间的响应。
    • 用户提交代码:平均值 14ms,最小值 9ms,最大值 118ms ,标准偏差 4.42 。整体响应时间比登录稍短,也有一定响应时间波动。
  • 数据传输
    • 接收数据:“在线用户登录” 和 “用户提交” 接收速率均为 20.12KB/sec ,总体 40.22KB/sec ,说明接收数据速度稳定。
    • 发送数据:“在线用户登录” 39.35KB/sec,“用户提交” 44.50KB/sec ,总体 83.83KB/sec ,发送数据量上 “用户提交” 稍高。
    • 平均字节数:两者均为 234.2 ,说明每个请求或响应数据包大小相对固定。

http://www.dtcms.com/wzjs/543706.html

相关文章:

  • 单页营销型网站企业培训机构排名
  • 怎么做淘宝客网站南宁建设网站制作
  • 资源采集网站如何做有本地服务器怎么做网站
  • 北京网站制作培训班运行两个wordpress
  • 网站更新问题有什么管理系统
  • 临沂河东区建设局网站工作室怎么赚钱
  • 梅州网站建设梅州网页设计与制作书
  • 宜兴网站设计上海注册公司费用
  • 高端网站建设 aspx广西工程建设质量管理协会网站
  • 设计师常上的网站彩票网站开发的风险
  • 厦门h5网站建设学校网页设计方案
  • 代理记账网站怎么做如何在云服务器上搭建网站
  • 怎么做盗文网站谢闵行
  • wordpress网站地图百度插件郑州做网站公司哪家好
  • wordpress4.2.8 留言本东莞推广seo关键词排名优化
  • 网站开发代码阜城网站建设代理
  • 云南省建设厅网站发文长春网络推广服务
  • 传统旅行社如何建设网站wordpress打开5秒
  • 泉州cms建站系统资金盘做网站
  • 国外网站内容去哪些平台做网络维护是做什么
  • 做代金券的网站铜陵商城网站建设
  • 自己做的网站怎么接入微信网站范例
  • 网站做水印有没有影响吗深圳关键词优化
  • 网站集约化建设 通知网站到期域名怎么解决
  • 网站seo优化心得汽车之家如何做团购网站
  • 毕设做系统与网站答辩程序员wordpress
  • 网站推广软文选天天软文wordpress自适应画廊
  • 关于网站建设心得体会小程序主题wordpress
  • 网站如何建设目录抖音代运营赚钱吗
  • 免费网站制作 优帮云建网站收费多少钱