All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.hp.octane.integrations.uft.items.UftTestDiscoveryResult Maven / Gradle / Ivy

There is a newer version: 2.24.3.5
Show newest version
/**
 * Copyright 2017-2023 Open Text
 *
 * The only warranties for products and services of Open Text and
 * its affiliates and licensors (“Open Text”) are as may be set forth
 * in the express warranty statements accompanying such products and services.
 * Nothing herein should be construed as constituting an additional warranty.
 * Open Text shall not be liable for technical or editorial errors or
 * omissions contained herein. The information contained herein is subject
 * to change without notice.
 *
 * Except as specifically indicated otherwise, this document contains
 * confidential information and a valid license is required for possession,
 * use or copying. If this work is provided to the U.S. Government,
 * consistent with FAR 12.211 and 12.212, Commercial Computer Software,
 * Computer Software Documentation, and Technical Data for Commercial Items are
 * licensed to the U.S. Government under vendor's standard commercial license.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package com.hp.octane.integrations.uft.items;


import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.core.util.DefaultPrettyPrinter;
import com.fasterxml.jackson.databind.DeserializationFeature;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.databind.ObjectWriter;
import com.hp.octane.integrations.dto.executor.impl.TestingToolType;
import org.apache.commons.codec.Charsets;

import java.io.*;
import java.util.*;
import java.util.stream.Collectors;

/**
 * This file represents result of UFT discovery (tests and data tables)
 */
public class UftTestDiscoveryResult implements Serializable {

    private List tests = new ArrayList<>();

    private List scmResourceFiles = new ArrayList<>();

    private Map> combineDataTableHashCodeToTestPathListMap = new HashMap<>();

    private List deletedFolders = new ArrayList<>();

    private String scmRepositoryId;

    private String testRunnerId;

    private String workspaceId;

    private String configurationId;

    private TestingToolType testingToolType;

    private boolean fullScan;

    private boolean hasQuotedPaths;

    @JsonIgnore
    private List getTestByOctaneStatus(OctaneStatus status) {
        return tests.stream()
                .filter(automatedTest -> automatedTest.getOctaneStatus().equals(status))
                .collect(Collectors.collectingAndThen(Collectors.toList(),
                        Collections::unmodifiableList));
    }

    @JsonIgnore
    private List getResourceFilesByOctaneStatus(OctaneStatus status) {
        return scmResourceFiles.stream()
                .filter(scmResourceFile -> scmResourceFile.getOctaneStatus().equals(status))
                .collect(Collectors.collectingAndThen(Collectors.toList(),
                        Collections::unmodifiableList));
    }

    @JsonIgnore
    public List getNewTests() {
        return getTestByOctaneStatus(OctaneStatus.NEW);
    }

    @JsonIgnore
    public List getDeletedTests() {
        return getTestByOctaneStatus(OctaneStatus.DELETED);
    }

    @JsonIgnore
    public List getUpdatedTests() {
        return getTestByOctaneStatus(OctaneStatus.MODIFIED);
    }

    public String getScmRepositoryId() {
        return scmRepositoryId;
    }

    public void setScmRepositoryId(String scmRepositoryId) {
        this.scmRepositoryId = scmRepositoryId;
    }

    public String getWorkspaceId() {
        return workspaceId;
    }

    public void setWorkspaceId(String workspaceId) {
        this.workspaceId = workspaceId;
    }

    public boolean isFullScan() {
        return fullScan;
    }

    public void setFullScan(boolean fullScan) {
        this.fullScan = fullScan;
    }

    @JsonIgnore
    public boolean hasChanges() {
        return !getAllScmResourceFiles().isEmpty() || !getAllTests().isEmpty() || !getDeletedFolders().isEmpty();
    }

    @JsonIgnore
    public List getNewScmResourceFiles() {
        return getResourceFilesByOctaneStatus(OctaneStatus.NEW);
    }

    @JsonIgnore
    public List getDeletedScmResourceFiles() {
        return getResourceFilesByOctaneStatus(OctaneStatus.DELETED);
    }

    @JsonIgnore
    public List getUpdatedScmResourceFiles() {
        return getResourceFilesByOctaneStatus(OctaneStatus.MODIFIED);
    }

    public boolean isHasQuotedPaths() {
        return hasQuotedPaths;
    }

    public void setHasQuotedPaths(boolean hasQuotedPaths) {
        this.hasQuotedPaths = hasQuotedPaths;
    }


    public List getDeletedFolders() {
        return deletedFolders;
    }

    public void setDeletedFolders(List deletedFolders) {
        this.deletedFolders = deletedFolders;
    }

    @JsonProperty("tests")
    public List getAllTests() {
        return tests;
    }

    @JsonProperty("tests")
    public void setAllTests(List tests) {
        this.tests = tests;
    }

    @JsonProperty("dataTables")
    public List getAllScmResourceFiles() {
        return scmResourceFiles;
    }

    @JsonProperty("dataTables")
    public void setAllScmResourceFiles(List scmResourceFiles) {
        this.scmResourceFiles = scmResourceFiles;
    }

    @JsonProperty("combineDataTableHashCodeToTestPathListMap")
    public Map> getCombineDataTableHashCodeToTestPathListMap() {
        return combineDataTableHashCodeToTestPathListMap;
    }

    @JsonProperty("combineDataTableHashCodeToTestPathListMap")
    public void setCombineDataTableHashCodeToTestPathListMap(Map> combineDataTableHashCodeToTestPathListMap) {
        this.combineDataTableHashCodeToTestPathListMap = combineDataTableHashCodeToTestPathListMap;
    }



    public void writeToFile(File fileToWriteTo) throws IOException {
        ObjectMapper mapper = new ObjectMapper();
        mapper.setSerializationInclusion(JsonInclude.Include.NON_NULL);
        mapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false);

        ObjectWriter writer = mapper.writer(new DefaultPrettyPrinter());
        writer.writeValue(fileToWriteTo, this);//write with UTF8

    }

    public static UftTestDiscoveryResult readFromFile(File file) throws IOException {
        Reader reader = new InputStreamReader(new FileInputStream(file), Charsets.UTF_8);
        ObjectMapper mapper = new ObjectMapper();
        UftTestDiscoveryResult result = mapper.readValue(reader, UftTestDiscoveryResult.class);
        return result;
    }

    public void sortItems() {
        sortTests(tests);
        sortDataTables(scmResourceFiles);
    }

    private static void sortTests(List newTests) {
        Collections.sort(newTests, new Comparator() {
            @Override
            public int compare(AutomatedTest o1, AutomatedTest o2) {
                int comparePackage = o1.getPackage().compareTo(o2.getPackage());
                if (comparePackage == 0) {
                    return o1.getName().compareTo(o2.getName());
                } else {
                    return comparePackage;
                }
            }
        });
    }

    private static void sortDataTables(List dataTables) {
        Collections.sort(dataTables, new Comparator() {
            @Override
            public int compare(ScmResourceFile o1, ScmResourceFile o2) {
                return o1.getRelativePath().compareTo(o2.getRelativePath());
            }
        });
    }

    public String getTestRunnerId() {
        return testRunnerId;
    }

    public void setTestRunnerId(String testRunnerId) {
        this.testRunnerId = testRunnerId;
    }

    public String getConfigurationId() {
        return configurationId;
    }

    public void setConfigurationId(String configurationId) {
        this.configurationId = configurationId;
    }

    public TestingToolType getTestingToolType() {
        return testingToolType;
    }

    public void setTestingToolType(TestingToolType testingToolType) {
        this.testingToolType = testingToolType;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy