re base code
[sdc.git] / ui-ci / src / main / java / org / openecomp / sdc / ci / tests / verificator / ErrorMessageUIVerificator.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.openecomp.sdc.ci.tests.verificator;
22
23 import com.aventstack.extentreports.Status;
24 import org.openecomp.sdc.be.dao.api.ActionStatus;
25 import org.openecomp.sdc.ci.tests.datatypes.ErrorMessageProperties;
26 import org.openecomp.sdc.ci.tests.datatypes.enums.ErrorInfo;
27 import org.openecomp.sdc.ci.tests.execute.setup.ExtentTestActions;
28 import org.openecomp.sdc.ci.tests.utilities.GeneralUIUtils;
29 import org.openecomp.sdc.ci.tests.utils.validation.ErrorValidationUtils;
30 import org.testng.Assert;
31
32 public class ErrorMessageUIVerificator {
33
34         private static ErrorMessageProperties getErrorByType(ActionStatus errorType){
35                 try{
36                         ErrorInfo errorInfo = ErrorValidationUtils.parseErrorConfigYaml(errorType.name());
37                         String messageId = errorInfo.getMessageId();
38                         String code = errorInfo.getCode().toString();
39                         
40                         return new ErrorMessageProperties(messageId, code);
41                 }
42                 catch(Exception e){
43                         return null;
44                 }
45         }
46
47         public static void validateErrorMessage(ActionStatus errorMessage) {
48                 String errorMessageBox = null;
49                 try{
50 //                      errorMessageBox = GeneralUIUtils.getWebElementByClassName("w-sdc-modal-caption").getText();
51                         errorMessageBox = GeneralUIUtils.getWebElementByClassName("error-message-component").getText();
52                 }
53                 catch(Exception e){
54                         ExtentTestActions.log(Status.INFO, "Did not find an error message popup.");
55                         Assert.fail("Did not find an error message popup.");
56                 }
57                 
58                 ExtentTestActions.log(Status.INFO, "An error message raised, validating its content.");
59                 ErrorMessageProperties expectedResponseError = getErrorByType(errorMessage);
60                 Assert.assertTrue(errorMessageBox.contains(expectedResponseError.getCode()), "Error message code is not " + expectedResponseError.getCode());
61                 Assert.assertTrue(errorMessageBox.contains(expectedResponseError.getMessageId()), "Error message ID is not " + expectedResponseError.getMessageId());
62         }
63
64 }