欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

基于jenkins的自动化单元测试实践

程序员文章站 2024-03-15 18:42:27
...

一、 单元测试并生成报告
1、maven插件

<reporting>
    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-surefire-report-plugin</artifactId>
            <version>2.4.2</version>
        </plugin>
    </plugins>
</reporting>

2、jenkins配置

构建脚本: mvn clean surefire-report:report
配置报告:

基于jenkins的自动化单元测试实践
配置报告的另一种方式是讲生成的html报告 集成到jenkins中;这需要jenkins的Publish HTML reports 插件,安装插件后 在 job中配置如下:
基于jenkins的自动化单元测试实践
定时检查代码,是否有新的提交,执行jenkins job:基于jenkins的自动化单元测试实践

二、 Findbugs
1、maven 插件

<reporting>
    <plugins>
        <plugin>
            <groupId>org.codehaus.mojo</groupId>
            <artifactId>findbugs-maven-plugin</artifactId>
            <version>3.0.1</version>
            <configuration>
                <xmlOutput>true</xmlOutput>
                <!-- Optional directoryto put findbugs xdoc xml report -->
                <!--<xmlOutputDirectory>target/site</xmlOutputDirectory>-->
                <findbugsXmlOutput>true</findbugsXmlOutput>
                <findbugsXmlWithMessages>true</findbugsXmlWithMessages>
            </configuration>
        </plugin>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-surefire-report-plugin</artifactId>
            <version>2.4.2</version>
        </plugin>
    </plugins>
</reporting>

2、jenkins配置

安装 jenkins的 Findbugs插件
构建脚本:mvn clean surefire-report:report findbugs:findbugs
配置报告:

基于jenkins的自动化单元测试实践

三、 PMD 静态代码检查

1、maven 插件

<reporting>
    <plugins>
        <plugin>
            <groupId>org.codehaus.mojo</groupId>
            <artifactId>findbugs-maven-plugin</artifactId>
            <version>3.0.1</version>
            <configuration>
                <xmlOutput>true</xmlOutput>
                <!-- Optional directoryto put findbugs xdoc xml report -->
                <!--<xmlOutputDirectory>target/site</xmlOutputDirectory>-->
                <findbugsXmlOutput>true</findbugsXmlOutput>
                <findbugsXmlWithMessages>true</findbugsXmlWithMessages>
            </configuration>
        </plugin>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-pmd-plugin</artifactId>
            <version>3.0.1</version>
        </plugin>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-surefire-report-plugin</artifactId>
            <version>2.4.2</version>
        </plugin>
    </plugins>
</reporting>

2、jenkins 配置

构建脚本:mvn clean surefire-report:report findbugs:findbugs pmd:pmd
报告配置:

基于jenkins的自动化单元测试实践