summaryrefslogtreecommitdiffstats
path: root/integration-tests/src/test/java/org/onap/sdc/frontend/ci/tests/flow/composition/CreateRelationshipFlow.java
blob: a3fdc9884b6344ed710bdd90d8296a64f13f94c1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
/*
 * ============LICENSE_START=======================================================
 *  Copyright (C) 2021 Nordix Foundation
 *  ================================================================================
 *  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.
 *
 *  SPDX-License-Identifier: Apache-2.0
 *  ============LICENSE_END=========================================================
 */

package org.onap.sdc.frontend.ci.tests.flow.composition;

import com.aventstack.extentreports.Status;
import java.util.Objects;
import java.util.Optional;
import org.onap.sdc.frontend.ci.tests.datatypes.composition.RelationshipInformation;
import org.onap.sdc.frontend.ci.tests.execute.setup.ExtentTestActions;
import org.onap.sdc.frontend.ci.tests.flow.AbstractUiTestFlow;
import org.onap.sdc.frontend.ci.tests.pages.PageObject;
import org.onap.sdc.frontend.ci.tests.pages.component.workspace.CompositionPage;
import org.onap.sdc.frontend.ci.tests.pages.component.workspace.RelationshipWizardComponent;
import org.onap.sdc.frontend.ci.tests.pages.component.workspace.RelationshipWizardInterfaceOperation;
import org.onap.sdc.frontend.ci.tests.pages.component.workspace.RelationshipWizardInterfaceOperation.InterfaceOperationsData;
import org.onap.sdc.frontend.ci.tests.pages.component.workspace.RelationshipWizardRequirementCapabilityComponent;
import org.openqa.selenium.WebDriver;

/**
 * Creates a relationship between two nodes/component instances
 */
public class CreateRelationshipFlow extends AbstractUiTestFlow {

    private final RelationshipInformation relationshipInformation;
    private CompositionPage compositionPage;
    private InterfaceOperationsData interfaceOperationsData;

    public CreateRelationshipFlow(final WebDriver webDriver, final RelationshipInformation relationshipInformation) {
        super(webDriver);
        this.relationshipInformation = relationshipInformation;
    }

    public CreateRelationshipFlow(final WebDriver webDriver, final RelationshipInformation relationshipInformation,
        final InterfaceOperationsData interfaceOperationsData) {
        super(webDriver);
        this.relationshipInformation = relationshipInformation;
        this.interfaceOperationsData =  interfaceOperationsData;
    }

    @Override
    public Optional<? extends PageObject> run(final PageObject... pageObjects) {
        compositionPage = findParameter(pageObjects, CompositionPage.class);
        compositionPage.isLoaded();
        final RelationshipWizardComponent relationshipWizardComponent = compositionPage
            .createLink(relationshipInformation.getFromNode(), relationshipInformation.getToNode());
        final RelationshipWizardRequirementCapabilityComponent requirementCapabilityComponent =
            new RelationshipWizardRequirementCapabilityComponent(webDriver);
        requirementCapabilityComponent.isLoaded();
        requirementCapabilityComponent.selectRequirementOrCapability(relationshipInformation.getFromCapability());
        ExtentTestActions.takeScreenshot(Status.INFO, "capability-selected",
            String.format("Selected capability '%s'", relationshipInformation.getFromCapability()));
        relationshipWizardComponent.clickOnNext();
        requirementCapabilityComponent.isLoaded();
        requirementCapabilityComponent.selectRequirementOrCapability(relationshipInformation.getToRequirement());
        ExtentTestActions.takeScreenshot(Status.INFO, "requirement-selected",
            String.format("Selected requirement '%s'", relationshipInformation.getToRequirement()));
        relationshipWizardComponent.clickOnNext();
        relationshipWizardComponent.clickOnNext();
        relationshipWizardComponent.clickOnAddOperation();
        if (Objects.nonNull(interfaceOperationsData)) {
            addInterfaceOperationAndInput(interfaceOperationsData);
        }
        relationshipWizardComponent.clickOnFinish();
        compositionPage.isLoaded();
        ExtentTestActions.takeScreenshot(Status.INFO, "relationship-created",
            String.format("Relationship from '%s' to '%s' created", relationshipInformation.getFromNode(), relationshipInformation.getToNode()));
        return Optional.of(compositionPage);
    }

    /**
     * Adds an Interface Operation and Input to the relationship template
     * @param interfaceOperationsData the Interface Operation data
     */
    private void addInterfaceOperationAndInput(final InterfaceOperationsData interfaceOperationsData) {
        ExtentTestActions.takeScreenshot(Status.INFO, "add-interface-operation",
            String.format("Adding Interface Operation on node '%s'", relationshipInformation.getFromNode()));
        final RelationshipWizardInterfaceOperation relationshipWizardInterfaceOperation = new RelationshipWizardInterfaceOperation(webDriver);
        relationshipWizardInterfaceOperation.isLoaded();
        relationshipWizardInterfaceOperation.addInterfaceOperation(interfaceOperationsData);
        ExtentTestActions.takeScreenshot(Status.INFO, "added-interface-operation",
            String.format("Interface Operation added on node '%s'", relationshipInformation.getFromNode()));
    }

    @Override
    public Optional<CompositionPage> getLandedPage() {
        return Optional.of(compositionPage);
    }
}