Provide user to specify the ouput name while declaring the atrributes
[sdc.git] / integration-tests / src / test / java / org / onap / sdc / frontend / ci / tests / pages / TesterOperationPage.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.sdc.frontend.ci.tests.pages;
22
23 import com.aventstack.extentreports.Status;
24 import org.onap.sdc.frontend.ci.tests.datatypes.DataTestIdEnum;
25 import org.onap.sdc.frontend.ci.tests.execute.setup.ExtentTestActions;
26 import org.onap.sdc.frontend.ci.tests.utilities.GeneralUIUtils;
27
28 public class TesterOperationPage {
29
30     private TesterOperationPage() {
31
32     }
33
34     public static void certifyComponent(String componentName) throws Exception {
35         clickStartTestingButton();
36         clickAcceptCertificationButton(componentName);
37     }
38
39     public static void clickAcceptCertificationButton(String componentName) throws Exception {
40         ExtentTestActions.log(Status.INFO, "Accepting certification of " + componentName);
41         String actionDuration = GeneralUIUtils.getActionDuration(() ->
42         {
43             try {
44                 clickAcceptCertificationButtonWithoutDuration(componentName);
45             } catch (Exception e) {
46                 e.printStackTrace();
47             }
48         });
49         ExtentTestActions.log(Status.INFO, componentName + " is certified", actionDuration);
50
51     }
52
53     public static void clickStartTestingButton() throws Exception {
54         ExtentTestActions.log(Status.INFO, "Starting to test");
55         String actionDuration = GeneralUIUtils.getActionDuration(() -> {
56             try {
57                 clickStartTestingButtonWithoutDuration();
58             } catch (Exception e) {
59                 e.printStackTrace();
60             }
61         });
62         ExtentTestActions.log(Status.INFO, "Ready for certification", actionDuration);
63     }
64
65
66     private static void clickAcceptCertificationButtonWithoutDuration(String componentName) throws Exception {
67         try {
68             GeneralUIUtils.clickOnElementByTestId(DataTestIdEnum.LifeCyleChangeButtons.ACCEPT.getValue());
69             GeneralUIUtils.getWebElementByTestID(DataTestIdEnum.ModalItems.ACCEPT_TESTING_MESSAGE.getValue()).sendKeys(componentName + " tested successfuly");
70             GeneralPageElements.clickOKButton();
71             GeneralUIUtils.getWebElementByTestID(DataTestIdEnum.MainMenuButtons.SEARCH_BOX.getValue());
72         } catch (Exception e) {
73             throw new Exception("Accepting certification of " + componentName + " failed");
74         }
75     }
76
77     private static void clickStartTestingButtonWithoutDuration() throws Exception {
78         try {
79             GeneralUIUtils.clickOnElementByTestId(DataTestIdEnum.LifeCyleChangeButtons.START_TESTING.getValue());
80             GeneralUIUtils.getWebElementByTestID(DataTestIdEnum.LifeCyleChangeButtons.ACCEPT.getValue());
81         } catch (Exception e) {
82             throw new Exception("Start testing failed");
83         }
84     }
85
86 }