接口自動化框架(java)--1.項目概述


項目github地址:

https://github.com/tianchiTester/API_AutoFramework

 這套框架的報告是自己封裝的

 

 

1.測試基類TestBase:

接口請求的testcase類需要繼承此類去讀取properties文件

package com.qa.base;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.util.Properties;
 
public class TestBase {
    //這個類作為所有接口請求的父類,加載讀取properties文件
    public Properties prop;
    //構造函數
    public TestBase(){
        try{
            prop = new Properties();
            FileInputStream fis = new FileInputStream(System.getProperty("user.dir")+"/src/main/java/com/qa/config/config.properties");
            prop.load(fis);
        }catch(FileNotFoundException f){
            f.printStackTrace();
        }catch (IOException i){
            i.printStackTrace();
        }
    }
}

2.配置文件

配置文件里存放項目的endpoint,可以通過修改endpoint進行環境的切換

測試數據存放讀取excel的地址

tokenpath存放jsonpath的所在路徑用於需要token才能調用的接口

#項目的根url(endpoint)
Host= https://xxx.com
 
#測試數據excel地址
postdata = xxx
getdata = xxx
 
 
#通過jsonpath獲取返回結果token的所在路徑
tokenPath = xxx

3.Excel文件中測試數據存放接口地址endpoint后面的url

4.report樣式,我使用的是extentreprot插件,實現方式是實現testNG的IReporter接口,再通過testng.xml中listener標簽進行監聽

package com.qa.report;
 
import com.aventstack.extentreports.ExtentReports;
import com.aventstack.extentreports.ExtentTest;
import com.aventstack.extentreports.ResourceCDN;
import com.aventstack.extentreports.Status;
import com.aventstack.extentreports.model.TestAttribute;
import com.aventstack.extentreports.reporter.ExtentHtmlReporter;
import com.aventstack.extentreports.reporter.configuration.ChartLocation;
import org.testng.*;
import org.testng.xml.XmlSuite;
 
import java.io.File;
import java.util.*;
 
public class ExtentTestNGReporterListener implements IReporter{
 
    //生成的路徑以及文件名
    private static final String OUTPUT_FOLDER = "test-output/";
    private static final String FILE_NAME = "index.html";
    private ExtentReports extent;
 
    @Override
    public void generateReport(List<XmlSuite>  xmlSuites, List<ISuite> suites, String outputDirectory) {
        init();
        boolean createSuiteNode = false;
        if(suites.size()>1){
            createSuiteNode=true;
        }
        for (ISuite suite : suites) {
            Map<String, ISuiteResult> result = suite.getResults();
            //如果suite里面沒有任何用例,直接跳過,不在報告里生成
            if(result.size()==0){
                continue;
            }
            //統計suite下的成功、失敗、跳過的總用例數
            int suiteFailSize=0;
            int suitePassSize=0;
            int suiteSkipSize=0;
            ExtentTest suiteTest=null;
            //存在多個suite的情況下,在報告中將同一個一個suite的測試結果歸為一類,創建一級節點。
            if(createSuiteNode){
                suiteTest = extent.createTest(suite.getName()).assignCategory(suite.getName());
 
            }
            boolean createSuiteResultNode = false;
            if(result.size()>1){
                createSuiteResultNode=true;
            }
            for (ISuiteResult r : result.values()) {
                ExtentTest resultNode;
                ITestContext context = r.getTestContext();
                if(createSuiteResultNode){
                    //沒有創建suite的情況下,將在SuiteResult的創建為一級節點,否則創建為suite的一個子節點。
                    if( null == suiteTest){
                        resultNode = extent.createTest(r.getTestContext().getName());
                    }else{
                        resultNode = suiteTest.createNode(r.getTestContext().getName());
                    }
                }else{
                    resultNode = suiteTest;
                }
                if(resultNode != null){
                    resultNode.getModel().setName(suite.getName()+" : "+r.getTestContext().getName());
                    if(resultNode.getModel().hasCategory()){
                        resultNode.assignCategory(r.getTestContext().getName());
                    }else{
                        resultNode.assignCategory(suite.getName(),r.getTestContext().getName());
                    }
                    resultNode.getModel().setStartTime(r.getTestContext().getStartDate());
                    resultNode.getModel().setEndTime(r.getTestContext().getEndDate());
                    //統計SuiteResult下的數據
                    int passSize = r.getTestContext().getPassedTests().size();
                    int failSize = r.getTestContext().getFailedTests().size();
                    int skipSize = r.getTestContext().getSkippedTests().size();
                    suitePassSize += passSize;
                    suiteFailSize += failSize;
                    suiteSkipSize += skipSize;
                    if(failSize>0){
                        resultNode.getModel().setStatus(Status.FAIL);
                    }
                    resultNode.getModel().setDescription(String.format("Pass: %s ; Fail: %s ; Skip: %s ;",passSize,failSize,skipSize));
                }
                buildTestNodes(resultNode,context.getFailedTests(), Status.FAIL);
                buildTestNodes(resultNode,context.getSkippedTests(), Status.SKIP);
                buildTestNodes(resultNode,context.getPassedTests(), Status.PASS);
            }
            if(suiteTest!= null){
                suiteTest.getModel().setDescription(String.format("Pass: %s ; Fail: %s ; Skip: %s ;",suitePassSize,suiteFailSize,suiteSkipSize));
                if(suiteFailSize>0){
                    suiteTest.getModel().setStatus(Status.FAIL);
                }
            }
 
        }
 
        extent.flush();
    }
 
    private void init() {
        //文件夾不存在的話進行創建
        File reportDir= new File(OUTPUT_FOLDER);
        if(!reportDir.exists()&& !reportDir .isDirectory()){
            reportDir.mkdir();
        }
        ExtentHtmlReporter htmlReporter = new ExtentHtmlReporter(OUTPUT_FOLDER + FILE_NAME);
        htmlReporter.config().setDocumentTitle("api自動化測試報告");
        htmlReporter.config().setReportName("api自動化測試報告");
 
        htmlReporter.config().setChartVisibilityOnOpen(true);
        htmlReporter.config().setTestViewChartLocation(ChartLocation.TOP);
        // htmlReporter.config().setTheme(Theme.STANDARD);
        htmlReporter.config().setResourceCDN(ResourceCDN.EXTENTREPORTS);
        htmlReporter.config().setCSS(".node.level-1  ul{ display:none;} .node.level-1.active ul{display:block;}");
        extent = new ExtentReports();
        extent.attachReporter(htmlReporter);
        extent.setReportUsesManualConfiguration(true);
    }
 
    private void buildTestNodes(ExtentTest extenttest,IResultMap tests, Status status) {
        //存在父節點時,獲取父節點的標簽
        String[] categories=new String[0];
        if(extenttest != null ){
            List<TestAttribute> categoryList = extenttest.getModel().getCategoryContext().getAll();
            categories = new String[categoryList.size()];
            for(int index=0;index<categoryList.size();index++){
                categories[index] = categoryList.get(index).getName();
            }
        }
 
        ExtentTest test;
 
        if (tests.size() > 0) {
            //調整用例排序,按時間排序
            Set<ITestResult> treeSet = new TreeSet<ITestResult>(new Comparator<ITestResult>() {
                @Override
                public int compare(ITestResult o1, ITestResult o2) {
                    return o1.getStartMillis()<o2.getStartMillis()?-1:1;
                }
            });
            treeSet.addAll(tests.getAllResults());
            for (ITestResult result : treeSet) {
                Object[] parameters = result.getParameters();
                String name="";
                //如果有參數,則使用參數的toString組合代替報告中的name
//                for(Object param:parameters){
//                    name+=param.toString();
//                }
                //如果有參數只取第一個參數作test-name
                for(int i=0;i<parameters.length;i++){
                    name = parameters[0].toString();
                }
 
                if(name.length()>0){
                    if(name.length()>100){
                        name= name.substring(0,100)+"...";
                    }
                }else{
                    name = result.getMethod().getMethodName();
                }
                if(extenttest==null){
                    test = extent.createTest(name);
                }else{
                    //作為子節點進行創建時,設置同父節點的標簽一致,便於報告檢索。
                    test = extenttest.createNode(name).assignCategory(categories);
                }
                //test.getModel().setDescription(description.toString());
                //test = extent.createTest(result.getMethod().getMethodName());
                for (String group : result.getMethod().getGroups())
                    test.assignCategory(group);
 
                List<String> outputList = Reporter.getOutput(result);
                for(String output:outputList){
                    //將用例的log輸出報告中
                    test.debug(output);
                }
                if (result.getThrowable() != null) {
                    test.log(status, result.getThrowable());
                }
                else {
                    test.log(status, "Test " + status.toString().toLowerCase() + "ed");
                }
 
                test.getModel().setStartTime(getTime(result.getStartMillis()));
                test.getModel().setEndTime(getTime(result.getEndMillis()));
            }
        }
    }
 
    private Date getTime(long millis) {
        Calendar calendar = Calendar.getInstance();
        calendar.setTimeInMillis(millis);
        return calendar.getTime();
    }
}

5.接口請求方法

封裝post方法, 普通get方法,需要header的get方法,delete方法

 1 package com.qa.restclient;
 2  
 3  
 4 import org.apache.http.client.ClientProtocolException;
 5  
 6 import org.apache.http.client.methods.CloseableHttpResponse;
 7 import org.apache.http.client.methods.HttpDelete;
 8 import org.apache.http.client.methods.HttpGet;
 9 import org.apache.http.client.methods.HttpPost;
10 import org.apache.http.entity.StringEntity;
11 import org.apache.http.impl.client.CloseableHttpClient;
12 import org.apache.http.impl.client.HttpClients;
13 import org.apache.log4j.Logger;
14  
15  
16 import java.io.IOException;
17 import java.util.HashMap;
18 import java.util.Map;
19  
20  
21 public class RestClient {
22     //get接口帶header
23     public CloseableHttpResponse getApi(String url , Map<String,String> map) throws IOException{
24         CloseableHttpClient httpClient = HttpClients.createDefault();
25         HttpGet get = new HttpGet(url);
26  
27         for(Map.Entry<String,String> header: map.entrySet() ){
28             get.addHeader(header.getKey(),header.getValue());
29         }
30         CloseableHttpResponse httpResponse = httpClient.execute(get);
31         return httpResponse;
32     }
33  
34     //普通get接口
35     public CloseableHttpResponse getApi(String url) throws IOException{
36         CloseableHttpClient httpClient = HttpClients.createDefault();
37         HttpGet get = new HttpGet(url);
38         CloseableHttpResponse httpResponse = httpClient.execute(get);
39         System.out.println(httpResponse);
40         return httpResponse;
41     }
42  
43     //post接口
44     public CloseableHttpResponse postApi(String url, String entityString, HashMap<String,String> headermap) throws ClientProtocolException, IOException {
45         //創建一個可關閉的HttpClient對象
46         CloseableHttpClient httpclient = HttpClients.createDefault();
47         HttpPost httppost = new HttpPost(url);
48         httppost.setEntity(new StringEntity(entityString));
49         //加載請求頭到httppost對象
50         for(Map.Entry<String, String> entry : headermap.entrySet()) {
51             httppost.addHeader(entry.getKey(), entry.getValue());
52         }
53         //發送post請求
54         CloseableHttpResponse httpResponse = httpclient.execute(httppost);
55         return httpResponse;
56     }
57  
58  
59     //delete方法
60     public CloseableHttpResponse deleteApi(String url) throws ClientProtocolException, IOException {
61         CloseableHttpClient httpclient = HttpClients.createDefault();
62         HttpDelete httpdel = new HttpDelete(url);
63         //發送delete請求
64         CloseableHttpResponse httpResponse = httpclient.execute(httpdel);
65         return httpResponse;
66     }
67 }

6.測試用例

7.工具類

getToken:傳入接口請求返回結果對象和jsonpath路徑,獲取token

dtt : 讀取excel中的數據,傳入excel路徑和excel的sheet id

getstauteCode:獲取返回結果的狀態碼

 1 package com.qa.util;
 2  
 3 import com.jayway.jsonpath.JsonPath;
 4 import com.jayway.jsonpath.ReadContext;
 5  
 6 import org.apache.http.client.methods.CloseableHttpResponse;
 7 import org.apache.http.util.EntityUtils;
 8 import org.apache.poi.ss.usermodel.CellType;
 9  
10 import org.apache.poi.xssf.usermodel.XSSFCell;
11 import org.apache.poi.xssf.usermodel.XSSFSheet;
12 import org.apache.poi.xssf.usermodel.XSSFWorkbook;
13  
14 import java.io.File;
15 import java.io.FileInputStream;
16 import java.io.FileNotFoundException;
17 import java.io.IOException;
18 import java.util.HashMap;
19  
20  
21  
22 public class TestUtil {
23  
24     //獲取返回的token ,使用JsonPath獲取json路徑
25     public static HashMap<String,String> getToken(CloseableHttpResponse closeableHttpResponse,String jsonPath) throws Exception{
26         HashMap<String,String> responseToken = new HashMap<String, String>();
27         String responseString = EntityUtils.toString( closeableHttpResponse.getEntity(),"UTF-8");
28         ReadContext ctx = JsonPath.parse(responseString);
29         String Token = ctx.read(jsonPath); //"$.EFPV3AuthenticationResult.Token"
30         if(null == Token||"".equals(Token)){
31             new Exception("token不存在");
32         }
33  
34         responseToken.put("x-ba-token",Token);
35         return responseToken;
36     }
37  
38  
39     //遍歷excel,sheet參數
40     public static Object[][] dtt(String filePath,int sheetId) throws IOException{
41  
42         File file = new File(filePath);
43         FileInputStream fis = new FileInputStream(file);
44  
45         XSSFWorkbook wb = new XSSFWorkbook(fis);
46         XSSFSheet sh = wb.getSheetAt(sheetId);
47         int numberrow = sh.getPhysicalNumberOfRows();
48         int numbercell = sh.getRow(0).getLastCellNum();
49  
50         Object[][] dttData = new Object[numberrow][numbercell];
51         for(int i=0;i<numberrow;i++){
52             if(null==sh.getRow(i)||"".equals(sh.getRow(i))){
53                 continue;
54             }
55             for(int j=0;j<numbercell;j++) {
56                 if(null==sh.getRow(i).getCell(j)||"".equals(sh.getRow(i).getCell(j))){
57                     continue;
58                 }
59                 XSSFCell cell = sh.getRow(i).getCell(j);
60                 cell.setCellType(CellType.STRING);
61                 dttData[i][j] = cell.getStringCellValue();
62             }
63         }
64  
65         return dttData;
66     }
67  
68     //獲取狀態碼
69     public static int getStatusCode(CloseableHttpResponse closeableHttpResponse){
70         int StatusCode = closeableHttpResponse.getStatusLine().getStatusCode();
71         return StatusCode;
72     }
73  
74 }

 

原文地址https://blog.csdn.net/qq_34693151/article/details/81867044

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM