[SDC-29] rebase continue work to align source
[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 org.openecomp.sdc.be.dao.api.ActionStatus;
24 import org.openecomp.sdc.ci.tests.datatypes.ErrorMessageProperties;
25 import org.openecomp.sdc.ci.tests.datatypes.enums.ErrorInfo;
26 import org.openecomp.sdc.ci.tests.execute.setup.ExtentTestActions;
27 import org.openecomp.sdc.ci.tests.utilities.GeneralUIUtils;
28 import org.openecomp.sdc.ci.tests.utils.validation.ErrorValidationUtils;
29 import org.testng.Assert;
30
31 import com.aventstack.extentreports.Status;
32
33 public class ErrorMessageUIVerificator {
34
35         private static ErrorMessageProperties getErrorByType(ActionStatus errorType){
36                 try{
37                         ErrorInfo errorInfo = ErrorValidationUtils.parseErrorConfigYaml(errorType.name());
38                         String messageId = errorInfo.getMessageId();
39                         String code = errorInfo.getCode().toString();
40                         
41                         return new ErrorMessageProperties(messageId, code);
42                 }
43                 catch(Exception e){
44                         return null;
45                 }
46         }
47
48         public static void validateErrorMessage(ActionStatus errorMessage) {
49                 String errorMessageBox = null;
50                 try{
51                         errorMessageBox = GeneralUIUtils.getWebElementByClassName("w-sdc-modal-caption").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 }