我正在尝试使用Cucumber和Java设置自动化框架。我正在使用Itellij IDEA作为我的IDE。到目前为止,我已经能够自动化测试用例。我阅读了Xray文档,并意识到应该使用REST API更新Xray上的功能文件。

我与Cucumber和C#一起工作过,在Visual Studio上自动化了我的测试用例,并使用Hooks更新了TFS上的功能和执行状态。到目前为止,我希望通过Xray在Java上实现相同的功能。

我做了一些研究,意识到我要么应该在用Cucumber编写的Xray上创建一个测试用例,然后将其导出以在Intellij上自动化,要么自动化测试用例并使用Jenkins在Xray上对其进行更新。

我可以使用Intellij上的Java和Cucumber来解决Xray上的功能,还是可以解决的方法或教程?

最佳答案

对于那些与我的问题同样困扰的人,这是我能够将自己的黄瓜特征导出到Xray的方式。您只需要像这样发送黄瓜功能文件的路径和url-https://jira.yourdomain.com/rest/raven/1.0/import/feature其他参数是很容易理解的。

public static void importFeatureFilesToJira(String filePath, String resultTypeUrlValue){
    String jiraUrl = config.getJiraLoginValue();
    log.info(String.format("Starting upload of Cucumber features to XRAY on Jira project: %s\n Using Jira user: %s ", config.getJiraProjectValue(), config.getJiraLoginValue()));
    log.info(String.format("Path to Report: %s", filePath));
    String authentication = config.getJiraLoginValue() + ':' + config.getJiraPassword();
    BASE64Encoder encoder = new BASE64Encoder();
    String encoded = null;
    try {
        encoded = encoder.encode((authentication).getBytes("UTF-8"));
    } catch (UnsupportedEncodingException e) {
        e.printStackTrace();
    }
    Client client = ClientBuilder.newBuilder()
            .register(MultiPartFeature.class).property(HttpHeaders.AUTHORIZATION, encoded).build();

    //Import type is dynamic below
    StringBuffer url = new StringBuffer(resultTypeUrlValue);
    url.append("?projectKey=").append(config.getJiraProjectValue());
    WebTarget webTarget = client.target(url.toString());
    log.info(String.format("URL of the XRAY API: %s", url.toString()));
    MultiPart multiPart = new MultiPart();
    multiPart.setMediaType(MediaType.MULTIPART_FORM_DATA_TYPE);
    FileDataBodyPart fileDataBodyPart = new FileDataBodyPart("file",
            new File(filePath),
            MediaType.APPLICATION_OCTET_STREAM_TYPE);
    multiPart.bodyPart(fileDataBodyPart);

    Response response = webTarget.request(
            MediaType.MULTIPART_FORM_DATA)
            .accept(MediaType.APPLICATION_JSON).
                    header(HttpHeaders.AUTHORIZATION, "Basic " + encoded).post(
                    Entity.entity(multiPart, multiPart.getMediaType()));
    log.info(response.getStatus() + " "
            + response.getStatusInfo() + " " + response);
    int responseBody = response.getStatus();
    String responseBodySting = response.toString();
    try{
        if(responseBody==200 && responseBodySting.contains("200")){
            log.info("Cucumber features were uploaded successfully");
        }
    }catch (Exception e){
        log.info("There was an error uploading the Cucumber feature file");
    }
    log.info("End of XRAY file upload publication");
}

关于java - 在Jira中的Xray上更新Cucumber功能并测试执行结果,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/57711034/

10-10 08:17