Merge "second part of tests"
[vid.git] / vid-automation / src / main / java / vid / automation / test / sections / VidBasePage.java
1 package vid.automation.test.sections;
2
3 import static org.hamcrest.CoreMatchers.containsString;
4 import static org.hamcrest.MatcherAssert.assertThat;
5 import static org.onap.sdc.ci.tests.utilities.GeneralUIUtils.getDriver;
6
7 import com.aventstack.extentreports.Status;
8 import java.io.IOException;
9 import java.net.URI;
10 import java.net.URISyntaxException;
11 import java.text.SimpleDateFormat;
12 import java.util.Calendar;
13 import java.util.Date;
14 import java.util.List;
15 import java.util.function.Function;
16 import org.junit.Assert;
17 import org.onap.sdc.ci.tests.execute.setup.ExtentTestActions;
18 import org.onap.sdc.ci.tests.utilities.GeneralUIUtils;
19 import org.openqa.selenium.By;
20 import org.openqa.selenium.WebDriver;
21 import org.openqa.selenium.WebElement;
22 import org.openqa.selenium.support.ui.ExpectedConditions;
23 import org.openqa.selenium.support.ui.WebDriverWait;
24 import vid.automation.test.Constants;
25 import vid.automation.test.infra.Click;
26 import vid.automation.test.infra.Exists;
27 import vid.automation.test.infra.Get;
28 import vid.automation.test.infra.Input;
29 import vid.automation.test.infra.SelectOption;
30 import vid.automation.test.infra.Wait;
31
32 public class VidBasePage {
33
34
35     public VidBasePage setInstanceName(String name) {
36         setInputText(Constants.INSTANCE_NAME_SELECT_TESTS_ID, name);
37         return this;
38     }
39
40
41     public VidBasePage setLegacyRegion(String name) {
42         setInputText(Constants.ViewEdit.LEGACY_REGION_INPUT_TESTS_ID, name);
43         return this;
44     }
45
46     public String generateAndSetInstanceName(String prefix) {
47         String instanceName = generateInstanceName(prefix);
48         setInstanceName(instanceName);
49         return instanceName;
50     }
51
52     public VidBasePage setInputText(String inputTestsId, String text) {
53         WebElement instanceNameInput = GeneralUIUtils.getInputElement(inputTestsId);
54         instanceNameInput.sendKeys(text);
55         return this;
56     }
57
58     public String getInputValue(String inputTestsId) {
59         WebElement instanceNameInput = GeneralUIUtils.getInputElement(inputTestsId);
60         String value =instanceNameInput.getAttribute("value");
61         return value;
62     }
63
64     public String generateInstanceName(String prefix) {
65         SimpleDateFormat sdf = new SimpleDateFormat(Constants.BrowseASDC.DATE_FORMAT);
66         Date now = Calendar.getInstance().getTime();
67         return prefix + sdf.format(now);
68     }
69
70     public VidBasePage selectServiceTypeByName(String serviceType) {
71         SelectOption.byTestIdAndVisibleText(serviceType, Constants.SERVICE_TYPE_SELECT_TESTS_ID);
72         return this;
73     }
74     public VidBasePage selectFromDropdownByTestId(String itemTestId, String dropdownButtonTestId) {
75         GeneralUIUtils.clickOnElementByTestId(dropdownButtonTestId, 60);
76         Assert.assertTrue(String.format(Constants.ViewEdit.OPTION_IN_DROPDOWN_NOT_EXISTS,itemTestId, dropdownButtonTestId),GeneralUIUtils.getWebElementByTestID(itemTestId) != null );
77         GeneralUIUtils.clickOnElementByTestId(itemTestId, 60);
78         return this;
79     }
80     public VidBasePage noOptionDropdownByTestId( String dropdownButtonTestId) {
81         List<WebElement> selectList= SelectOption.getList(dropdownButtonTestId);
82         Assert.assertTrue("The Select Input "+ dropdownButtonTestId+" should be empty",selectList.size()==1);
83         return this;
84     }
85
86     public static void selectSubscriberById(String subscriberId) {
87         SelectOption.byValue(subscriberId, Constants.SUBSCRIBER_NAME_SELECT_TESTS_ID);
88     }
89
90     public VidBasePage selectSubscriberByName(String subscriberName) {
91         SelectOption.byTestIdAndVisibleText(subscriberName, Constants.SUBSCRIBER_NAME_SELECT_TESTS_ID);
92         return this;
93     }
94
95     public VidBasePage selectProductFamily(String productFamily) {
96         SelectOption.byValue(productFamily, Constants.ViewEdit.PRODUCT_FAMILY_SELECT_TESTS_ID);
97         return this;
98     }
99
100     public VidBasePage selectSuppressRollback(String shouldSuppress) {
101         SelectOption.byTestIdAndVisibleText(shouldSuppress, Constants.SUPPRESS_ROLLBACK_SELECT_TESTS_ID);
102         return this;
103     }
104
105     public VidBasePage clickDeployServiceButtonByServiceUUID(String serviceUUID) {
106         Input.replaceText(serviceUUID, Constants.BROWSE_SEARCH);
107         GeneralUIUtils.ultimateWait();
108         String elementTestId = Constants.DEPLOY_BUTTON_TESTS_ID_PREFIX + serviceUUID;
109         GeneralUIUtils.clickOnElementByTestId(elementTestId, 30);
110         GeneralUIUtils.ultimateWait();
111
112         screenshotDeployDialog(serviceUUID);
113
114         return this;
115     }
116
117     public void screenshotDeployDialog(String serviceUUID) {
118         try {
119             GeneralUIUtils.ultimateWait();
120             GeneralUIUtils.ultimateWait(); // better screenshot
121             String screenshotName = "deployService-" + serviceUUID;
122             ExtentTestActions.addScreenshot(Status.INFO, screenshotName, screenshotName);
123         } catch (IOException e) {
124             throw new RuntimeException(e);
125         }
126     }
127
128
129     public VidBasePage clickEditViewByInstanceId(String instanceId) {
130         String elementTestId = Constants.VIEW_EDIT_TEST_ID_PREFIX + instanceId;
131         GeneralUIUtils.clickOnElementByTestId(elementTestId, 100);
132
133         return this;
134     }
135
136     public Boolean checkEditOrViewExistsByInstanceId(String instanceId) {
137         String elementTestId = Constants.VIEW_EDIT_TEST_ID_PREFIX + instanceId;
138         return Exists.byTestId(elementTestId);
139     }
140
141
142
143     public VidBasePage clickSubmitButton() {
144         GeneralUIUtils.clickOnElementByText(Constants.SUBMIT_BUTTON_TEXT, 30);
145         return this;
146     }
147
148     public VidBasePage clickCancelButton() {
149         Click.byId(Constants.generalCancelButtonId);
150         return this;
151     }
152
153     public VidBasePage clickCancelButtonByTestID() {
154         GeneralUIUtils.clickOnElementByTestId(Constants.CANCEL_BUTTON_TEST_ID, 30);
155         return this;
156     }
157
158
159     public VidBasePage clickConfirmButton() {
160         GeneralUIUtils.clickOnElementByTestId(Constants.CONFIRM_BUTTON_TESTS_ID, 30);
161         return this;
162     }
163
164     public VidBasePage clickConfirmButtonInResumeDelete() {
165         GeneralUIUtils.clickOnElementByTestId(Constants.CONFIRM_RESUME_DELETE_TESTS_ID);
166         return this;
167     }
168
169     public VidBasePage clickButtonByTestId(String testId) {
170         GeneralUIUtils.clickOnElementByTestId(testId);
171         return this;
172     }
173
174     public VidBasePage clickCommitCloseButton() {
175         GeneralUIUtils.clickOnElementByTestId(Constants.COMMIT_CLOSE_BUTTON_ID, 30);
176         return this;
177     }
178
179     public VidBasePage clickCloseButton() {
180         return clickCloseButton(30);
181     }
182
183     public VidBasePage clickCloseButton(int customTimeout) {
184         GeneralUIUtils.clickOnElementByText(Constants.CLOSE_BUTTON_TEXT, customTimeout);
185         return this;
186     }
187
188
189     public VidBasePage selectLcpRegion(String lcpRegion) {
190         GeneralUIUtils.ultimateWait();
191         SelectOption.byValue(lcpRegion, Constants.ViewEdit.LCP_REGION_SELECT_TESTS_ID);
192         return this;
193     }
194
195     public VidBasePage selectTenant(String tenant) {
196         GeneralUIUtils.ultimateWait();
197         SelectOption.byValue(tenant, Constants.ViewEdit.TENANT_SELECT_TESTS_ID);
198         return this;
199     }
200
201     public VidBasePage selectAicZone(String aicZone) {
202         SelectOption.byValue(aicZone, Constants.ViewEdit.AIC_ZONE_TEST_ID);
203         return this;
204     }
205
206     public VidBasePage selectRollbackOption(boolean rollback) {
207         SelectOption.byValue(String.valueOf(rollback) , Constants.ViewEdit.ROLLBACK_TEST_ID);
208         return this;
209     }
210
211     public VidBasePage selectPlatform(String platform) {
212         SelectOption.byValue(platform, Constants.OwningEntity.PLATFORM_SELECT_TEST_ID);
213         return this;
214     }
215
216     public VidBasePage selectLineOfBusiness(String lob) {
217         SelectOption.byValue(lob, Constants.OwningEntity.LOB_SELECT_TEST_ID);
218         return this;
219     }
220
221     public void assertButtonState(String dataTestId, boolean shouldBeEnabled) {
222         assertButtonStateInternal(dataTestId, shouldBeEnabled,
223                 (dataTestIdInner) -> GeneralUIUtils.getWebElementByTestID(dataTestIdInner, 60));
224     }
225
226     public void assertButtonStateEvenIfButtonNotVisible(String dataTestId, boolean shouldBeEnabled) {
227         // getInputElement is quite similar to getWebElementByTestID, but doesn't use
228         // the visibility predicate, so button is reachable bhind the grayed-out panel
229         assertButtonStateInternal(dataTestId, shouldBeEnabled,
230                 (dataTestIdInner) -> GeneralUIUtils.getInputElement(dataTestIdInner));
231     }
232
233     protected void assertButtonStateInternal(String dataTestId, boolean shouldBeEnabled, Function<String,WebElement> strategy) {
234         GeneralUIUtils.ultimateWait();
235         boolean enabledElement= strategy.apply(dataTestId).getAttribute("disabled") == null;
236         if(shouldBeEnabled) {
237             Assert.assertTrue(String.format(Constants.ViewEdit.DISABLE_ERROR_MESSAGE,dataTestId), enabledElement);
238         }else{
239             Assert.assertFalse(String.format(Constants.ViewEdit.ENABLE_ERROR_MESSAGE,dataTestId),enabledElement);
240         }
241
242     }
243     public VidBasePage assertMsoRequestModal(String statusMsg) {
244         boolean waitForTextResult = Wait.waitByClassAndText("status", statusMsg, 20);
245         Assert.assertTrue(statusMsg + " message didn't appear on time", waitForTextResult);
246
247         return this;
248     }
249
250     public VidBasePage refreshPage() {
251         getDriver().navigate().refresh();
252         return this;
253     }
254
255     public String navigateTo(String path) {
256         String envUrl = System.getProperty("ENV_URL");
257         URI uri;
258         try {
259             uri = new URI(envUrl);
260         } catch (URISyntaxException e) {
261             throw new RuntimeException(e);
262         }
263         String target = uri.resolve(path).toString();
264
265         getDriver().navigate().to(target);
266         GeneralUIUtils.ultimateWait();
267
268         return target;
269     }
270
271     public String getTextByTestID(String testId){
272         WebElement webElement= GeneralUIUtils.getWebElementByTestID(testId);
273         return webElement.getText();
274     }
275
276     public void checkAndCloseAlert(String expectedText) {
277        String alertText= Get.alertText();
278        Assert.assertEquals(expectedText, alertText);
279        Click.acceptAlert();
280     }
281     public static void goToIframe() {
282         final long start = System.currentTimeMillis();
283         goOutFromIframe();
284         GeneralUIUtils.ultimateWait();
285         System.out.println("ultimateWait waited " + (System.currentTimeMillis() - start));
286         final WebDriver iframeReady = new WebDriverWait(getDriver(), 20).until(
287                 ExpectedConditions.frameToBeAvailableAndSwitchToIt(By.tagName("iframe"))
288         );
289         Assert.assertNotNull("failed going into iframe", iframeReady);
290
291         final long start2 = System.currentTimeMillis();
292         GeneralUIUtils.ultimateWait();
293         System.out.println("ultimateWait waited " + (System.currentTimeMillis() - start2));
294     }
295
296     public static void goOutFromIframe(){
297         getDriver().switchTo().defaultContent();
298     }
299
300
301     public void verifyOpenOldViewEdit(String serviceInstanceName, String serviceInstanceId, boolean openShouldBeEnabled, boolean checkPortMirroring, boolean checkAddVnf) {
302         InstantiationStatusPage.checkMenuItem(serviceInstanceName, Constants.InstantiationStatus.CONTEXT_MENU_HEADER_OPEN_ITEM, openShouldBeEnabled, contextMenuOpen -> {
303             Click.byTestId(contextMenuOpen);
304             VidBasePage.goOutFromIframe();
305             GeneralUIUtils.ultimateWait();
306
307             Wait.byText("View/Edit Service Instance");
308             if (serviceInstanceId != null) {
309                 Wait.byText(serviceInstanceId);
310             }
311             Wait.byText(serviceInstanceName);
312
313             if (checkPortMirroring) {
314                 Wait.byText("Add node instance");
315                 Wait.byText("i'm a port");
316             }
317
318             if (checkAddVnf) {
319                 // Validate bug fix - we open old popup in view/edit
320                 Click.byTestId("addVNFButton");
321                 Click.byTestId("addVNFOption-2017-488_PASQUALE-vPE 0");
322                 assertThat(Get.byTestId("create-modal-title").getText(), containsString("a la carte"));
323                 Click.byTestId("cancelButton");
324                 //end of bug fix validation
325             }
326
327             screenshotDeployDialog("view-edit-" + serviceInstanceName);
328             SideMenu.navigateToMacroInstantiationStatus();
329         });
330     }
331
332
333     public static WebDriverWait waitUntilDriverIsReady(int time) {
334         return new WebDriverWait(getDriver(), (long)time);
335     }
336
337
338 }