added schema validation tools
[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 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  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
21  */
22
23 package org.onap.aai.validation;
24
25 import static org.junit.Assert.*;
26
27 import org.junit.Test;
28 import org.onap.aai.validation.CheckEverythingStrategy;
29
30 public class CheckEverythingStrategyTest {
31
32         @Test
33         public void test() {
34                 CheckEverythingStrategy strat = new CheckEverythingStrategy();
35                 //no issues so nothing notified, should be fine
36                 assertTrue(strat.isOK());
37                 assertTrue("No errors found.".equals(strat.getErrorMsg()));
38                 
39                 //simulate post one error
40                 String testError1 = "oh noes a problem with the gooble-gobble edge rule!";
41                 strat.notifyOnError(testError1);
42                 assertFalse(strat.isOK());
43                 assertTrue(testError1.equals(strat.getErrorMsg()));
44                 
45                 //simulate multiple found
46                 String testError2 = "error 2";
47                 String testError3 = "duplicate labels not everything is a fork";
48                 strat.notifyOnError(testError2);
49                 strat.notifyOnError(testError3);
50                 assertFalse(strat.isOK());
51                 System.out.println(strat.getErrorMsg());
52                 assertTrue(strat.getErrorMsg().contains(testError1));
53                 assertTrue(strat.getErrorMsg().contains(testError2));
54                 assertTrue(strat.getErrorMsg().contains(testError3));
55         }
56
57 }