Reduce the number of problems in aai-common by removing unused imports
[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
27 public class CheckEverythingStrategyTest {
28
29     @Test
30     public void test() {
31         CheckEverythingStrategy strat = new CheckEverythingStrategy();
32         // no issues so nothing notified, should be fine
33         assertTrue(strat.isOK());
34         assertTrue("No errors found.".equals(strat.getErrorMsg()));
35
36         // simulate post one error
37         String testError1 = "oh noes a problem with the gooble-gobble edge rule!";
38         strat.notifyOnError(testError1);
39         assertFalse(strat.isOK());
40         assertTrue(testError1.equals(strat.getErrorMsg()));
41
42         // simulate multiple found
43         String testError2 = "error 2";
44         String testError3 = "duplicate labels not everything is a fork";
45         strat.notifyOnError(testError2);
46         strat.notifyOnError(testError3);
47         assertFalse(strat.isOK());
48         System.out.println(strat.getErrorMsg());
49         assertTrue(strat.getErrorMsg().contains(testError1));
50         assertTrue(strat.getErrorMsg().contains(testError2));
51         assertTrue(strat.getErrorMsg().contains(testError3));
52     }
53
54 }