add the mvn jetty:run command to the README, improve the formatting
[sdc.git] / integration-tests / src / test / java / org / onap / sdc / frontend / ci / tests / flow / EditComponentInputsFlow.java
1 /*
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2022 Nordix Foundation
4  *  ================================================================================
5  *  Licensed under the Apache License, Version 2.0 (the "License");
6  *  you may not use this file except in compliance with the License.
7  *  You may obtain a copy of the License at
8  *
9  *        http://www.apache.org/licenses/LICENSE-2.0
10  *  Unless required by applicable law or agreed to in writing, software
11  *  distributed under the License is distributed on an "AS IS" BASIS,
12  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  *  See the License for the specific language governing permissions and
14  *  limitations under the License.
15  *
16  *  SPDX-License-Identifier: Apache-2.0
17  *  ============LICENSE_END=========================================================
18  */
19
20 package org.onap.sdc.frontend.ci.tests.flow;
21
22 import com.aventstack.extentreports.Status;
23 import java.util.Map;
24 import java.util.Optional;
25 import org.apache.commons.collections4.MapUtils;
26 import org.onap.sdc.frontend.ci.tests.execute.setup.ExtentTestActions;
27 import org.onap.sdc.frontend.ci.tests.pages.ComponentPage;
28 import org.onap.sdc.frontend.ci.tests.pages.PageObject;
29 import org.onap.sdc.frontend.ci.tests.pages.ResourcePropertiesAssignmentPage;
30 import org.openqa.selenium.WebDriver;
31
32 public class EditComponentInputsFlow extends AbstractUiTestFlow {
33
34     private final Map<String, Object> inputsMap;
35     private ComponentPage componentPage;
36
37     public EditComponentInputsFlow(final WebDriver webDriver, final Map<String, Object> inputsMap) {
38         super(webDriver);
39         this.inputsMap = inputsMap;
40     }
41
42     @Override
43     public Optional<ComponentPage> run(final PageObject... pageObjects) {
44         componentPage = getParameter(pageObjects, ComponentPage.class).orElseGet(() -> new ComponentPage(webDriver));
45         componentPage.isLoaded();
46         if (MapUtils.isEmpty(inputsMap)) {
47             return Optional.of(componentPage);
48         }
49         final ResourcePropertiesAssignmentPage resourcePropertiesAssignmentPage = componentPage.goToPropertiesAssignment();
50         resourcePropertiesAssignmentPage.isLoaded();
51         resourcePropertiesAssignmentPage.selectInputTab();
52         final String inputNames = String.join(", ", inputsMap.keySet());
53         ExtentTestActions.takeScreenshot(Status.INFO, "etsi-ns-edited-properties", String.format("Before editing inputs: %s", inputNames));
54         extendTest.log(Status.INFO, "Editing inputs " + inputNames);
55
56         inputsMap.forEach(resourcePropertiesAssignmentPage::setInputValue);
57         resourcePropertiesAssignmentPage.saveInputs();
58         ExtentTestActions.takeScreenshot(Status.INFO, "etsi-ns-edited-properties", String.format("Inputs edited: %s", inputNames));
59         resourcePropertiesAssignmentPage.selectPropertiesTab();
60         return Optional.of(componentPage);
61     }
62
63     @Override
64     public Optional<ComponentPage> getLandedPage() {
65         return Optional.ofNullable(componentPage);
66     }
67 }