写点什么

软件测试学习笔记丨质量门禁 - SonarQube

作者:测试人
  • 2024-10-11
    北京
  • 本文字数:2827 字

    阅读完需:约 9 分钟

本文转自测试人社区,原文链接:https://ceshiren.com/t/topic/32486

一,质量门禁概念

  • 质量门禁是为了控制达标率的检查任务

  • 设置质量门禁的好处通过检查达标状态来评估产品质量,控制产品发布利用自动化任务来控制产品的代码质量,减少人为干预因素加速产品研发的迭代速度

二,质量门禁系统演练环境

  • 项目运行平台:Jenkins;持续集成持续交付平台

  • 质量门禁任务平台: Sonar Qube; 一款用于代码质量管理的开源工具,它主要用于管理源代码的质量。 通过插件形式,可以支持众多计算机语言。

  • Java + Maven

  • Docker

三, 环境搭建

(1)Jenkins 配置

  • 安装 SonarQube Scanner for Jenkins 插件

  • 在 Jenkins 系统设定中配置 SonarQube Server

(2)docker 搭建 SonarQube Server

  • 实战演练项目地址:略

  • docker-compose.yml 文件配置 sonarqube,在对应的目录下运行 docker-compose up -d 命令,启动容器


(3)Sonar Qube 登陆

  • 登陆 SonarQube (首次登陆用户名和密码都是 admin)

(4)Sonar Qube 中的配置

  • 设定 WebHook, administration → Configuration → Webhooks

  • 添加 Jenkins 的 webhook URL, http://your_jenkins:port/sonarqube-webhook

  • 关闭用户访问强制认证的限制 Administration → Configuration → General Settings → Security → Force user authentication (关闭它)

(4)添加门禁 设定指标

  • 新建 SonarQube 门禁


  • 设定门禁类型为:代码覆盖率 (Coverage)

  • 设定门禁触发条件为:小于 80%

  • 覆盖范围:全部代码


(5)质量门禁运行

  • 质量门禁在持续交付流程中的应用


  • 运行项目需要导入对应的质量门禁依赖

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">    <modelVersion>4.0.0</modelVersion>    <groupId>com.example</groupId>    <artifactId>QualityGate_Sample</artifactId>    <packaging>jar</packaging>    <version>1.0</version>    <name>QualityGate_Sample</name>    <properties>        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>        <junit-version>4.7</junit-version>        <sonar.host.url>http://localhost:9000</sonar.host.url>        <sonar.jacoco.reportPath>${project.basedir}/../target/jacoco.exec</sonar.jacoco.reportPath>    </properties>    <dependencies>        <!--junit-->        <dependency>            <groupId>org.junit.platform</groupId>            <artifactId>junit-platform-commons</artifactId>            <version>1.4.1</version>        </dependency>
<dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <version>5.4.0</version> </dependency>
<dependency> <groupId>org.junit.vintage</groupId> <artifactId>junit-vintage-engine</artifactId> <version>5.4.0</version> </dependency>
<!-- log4j --> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <version>1.2.16</version> </dependency> </dependencies> <build> <finalName>QualityGate_Sample</finalName> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.3</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.22.1</version> <configuration> <testFailureIgnore>false</testFailureIgnore> <includes> <include>**/*.java</include> </includes> </configuration> </plugin> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>0.8.3</version> <executions> <execution> <id>default-prepare-agent</id> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <id>default-report</id> <phase>prepare-package</phase> <goals> <goal>report</goal> </goals> </execution> <execution> <id>default-check</id> <goals> <goal>check</goal> </goals> <configuration> <rules> <rule implementation="org.jacoco.maven.RuleConfiguration"> <element>BUNDLE</element> <limits> implementation is needed only for Maven 2 <limit implementation="org.jacoco.report.check.Limit"> <counter>COMPLEXITY</counter> <value>COVEREDRATIO</value> <minimum>0.60</minimum> </limit> </limits> </rule> </rules> </configuration> </execution> </executions> </plugin> </plugins> </build></project>
复制代码
  • 创建交付任务

  • 在交付任务流水线中添加质量门禁

  • 正向用例演示:测试代码覆盖率 > 80% ==> 门禁通过

  • 负向用例演示:测试代码覆盖率 < 80% ==> 门禁失败

  • 查看质量门禁覆盖率


软件测试开发免费视频教程分享


发布于: 刚刚阅读数: 5
用户头像

测试人

关注

专注于软件测试开发 2022-08-29 加入

霍格沃兹测试开发学社,测试人社区:https://ceshiren.com/t/topic/22284

评论

发布
暂无评论
软件测试学习笔记丨质量门禁 - SonarQube_软件测试_测试人_InfoQ写作社区