aboutsummaryrefslogtreecommitdiffstats
path: root/ui-ci/src/main/java/org/openecomp/sdc/ci/tests/pages/VspCreationModal.java
blob: c4540c748db03c3a7494877585fce9becc36b9b5 (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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
/*
 * ============LICENSE_START=======================================================
 *  Copyright (C) 2019 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.openecomp.sdc.ci.tests.pages;

import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.support.ui.Select;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import static org.openecomp.sdc.ci.tests.pages.VspCreationModal.XpathSelector.METHOD_RADIO;
import static org.openecomp.sdc.ci.tests.pages.VspCreationModal.XpathSelector.MODAL_XPATH;

/**
 * Handles the VSP Creation Modal UI actions
 */
public class VspCreationModal extends AbstractPageObject {

    private static final Logger LOGGER = LoggerFactory.getLogger(VspCreationModal.class);

    private WebElement wrappingElement;

    public VspCreationModal(final WebDriver webDriver) {
        super(webDriver);
        timeoutInSeconds = 5;
    }

    @Override
    public void isLoaded() {
        LOGGER.debug("Finding element with xpath '{}'", MODAL_XPATH.getXpath());
        wrappingElement = waitForElementVisibility(MODAL_XPATH.getXpath());
    }

    /**
     * Fills the creation form for the given vsp name.
     *
     * @param vspName the name of the Vendor Software Product
     */
    public void fillCreationForm(final String vspName) {
        fillName(vspName);
        selectVendorFirstVendor();
        selectCategory("resourceNewCategory.network l4+.common network resources");
        fillDescription(vspName);
        selectNetworkPackageOnboardingProcedure();
    }

    /**
     * Clicks on the create button.
     *
     * @return the next page object
     */
    public SoftwareProductOnboarding clickOnCreate() {
        clickElement(XpathSelector.CREATE_BTN);
        return new SoftwareProductOnboarding(webDriver, new VspCommitModal(webDriver));
    }

    /**
     * Fills the VSP name.
     *
     * @param vspName the VSP name
     */
    public void fillName(final String vspName) {
        setInputValue(XpathSelector.NAME_TXT, vspName);
    }

    /**
     * Fills the VSP description.
     *
     * @param description the VSP description
     */
    public void fillDescription(final String description) {
        setInputValue(XpathSelector.DESCRIPTION_TXT, description);
    }

    /**
     * Selects the first vendor in the vendor list.
     */
    public void selectVendorFirstVendor() {
        setSelectIndex(XpathSelector.VENDOR_SELECT, 1);
    }

    /**
     * Selects a category in the category list based on the option value.
     *
     * @param categoryOptionValue the option value
     */
    public void selectCategory(final String categoryOptionValue) {
        setSelectValue(XpathSelector.CATEGORY_SELECT, categoryOptionValue);
    }

    /**
     * Selects the network package onboarding procedure option.
     */
    public void selectNetworkPackageOnboardingProcedure() {
        wrappingElement.findElement(By.xpath(METHOD_RADIO.getXpath())).click();
    }

    private void setInputValue(final XpathSelector inputTestId, final String value) {
        findSubElement(wrappingElement, By.xpath(inputTestId.getXpath())).sendKeys(value);
    }

    private void setSelectIndex(final XpathSelector inputTestId, final int index) {
        new Select(findSubElement(wrappingElement, By.xpath(inputTestId.getXpath()))).selectByIndex(index);
    }

    private void setSelectValue(final XpathSelector inputTestId, final String value) {
        new Select(findSubElement(wrappingElement, By.xpath(inputTestId.getXpath()))).selectByValue(value);
    }

    private void clickElement(final XpathSelector elementTestId) {
        wrappingElement.findElement(By.xpath(elementTestId.getXpath())).click();
    }

    /**
     * Enum that contains identifiers and xpath expressions to elements related to the enclosing page object.
     */
    public enum XpathSelector {
        MODAL_XPATH("software-product-creation-page", "//div[@class='%s']"),
        NAME_TXT("new-vsp-name", "//input[@data-test-id='%s']"),
        VENDOR_SELECT("new-vsp-vendor", "//select[@data-test-id='%s']"),
        CATEGORY_SELECT("new-vsp-category", "//select[@data-test-id='%s']"),
        DESCRIPTION_TXT("new-vsp-description", "//textarea[@data-test-id='%s']"),
        METHOD_RADIO("new-vsp-creation-procedure-heat", "//input[@data-test-id='%s']/parent::label"),
        CREATE_BTN("form-submit-button", "//*[@data-test-id='%s']");

        private final String id;
        private final String xpathFormat;

        XpathSelector(final String id, final String xpathFormat) {
            this.id = id;
            this.xpathFormat = xpathFormat;
        }

        public String getId() {
            return id;
        }

        public String getXpath() {
            return String.format(xpathFormat, id);
        }
    }

}