AAI-1523 checkstyle warnings for aai-schema-ingest
[aai/aai-common.git] / aai-schema-ingest / src / test / java / org / onap / aai / validation / CheckEverythingStrategyTest.java
1 /** 
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017-18 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.aai.validation;
22
23 import static org.junit.Assert.*;
24
25 import org.junit.Test;
26 import org.onap.aai.validation.CheckEverythingStrategy;
27
28 public class CheckEverythingStrategyTest {
29
30     @Test
31     public void test() {
32         CheckEverythingStrategy strat = new CheckEverythingStrategy();
33         //no issues so nothing notified, should be fine
34         assertTrue(strat.isOK());
35         assertTrue("No errors found.".equals(strat.getErrorMsg()));
36         
37         //simulate post one error
38         String testError1 = "oh noes a problem with the gooble-gobble edge rule!";
39         strat.notifyOnError(testError1);
40         assertFalse(strat.isOK());
41         assertTrue(testError1.equals(strat.getErrorMsg()));
42         
43         //simulate multiple found
44         String testError2 = "error 2";
45         String testError3 = "duplicate labels not everything is a fork";
46         strat.notifyOnError(testError2);
47         strat.notifyOnError(testError3);
48         assertFalse(strat.isOK());
49         System.out.println(strat.getErrorMsg());
50         assertTrue(strat.getErrorMsg().contains(testError1));
51         assertTrue(strat.getErrorMsg().contains(testError2));
52         assertTrue(strat.getErrorMsg().contains(testError3));
53     }
54
55 }