16b2bc815dabb452a110de69234dcd2a2d2b1269
[ccsdk/cds.git] /
1 /*
2  * Copyright © 2018 IBM.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package org.onap.ccsdk.apps.controllerblueprints.service.validator;
18
19 import com.fasterxml.jackson.databind.JsonNode;
20 import org.junit.Assert;
21 import org.junit.Before;
22 import org.junit.Test;
23 import org.onap.ccsdk.apps.controllerblueprints.core.BluePrintException;
24 import org.onap.ccsdk.apps.controllerblueprints.service.domain.ModelType;
25
26 public class ModelTypeValidatorTest {
27
28     @Before
29     public void setup(){
30         ModelTypeValidator modelTypeValidator;
31     }
32
33     @Test
34     public void testGetValidModelDefinitionType_definitionContentNULL() throws Exception{
35         String definitionType=null;
36         JsonNode definitionContent=null;
37         boolean valid= ModelTypeValidator.validateModelTypeDefinition(definitionType, definitionContent);
38         Assert.assertTrue(valid);
39
40     }
41
42     @Test(expected=BluePrintException.class)
43     public void testvalidateModelType() throws Exception{
44         ModelType modelType = new ModelType();
45         modelType.setDefinitionType("");
46         modelType.setDerivedFrom("");
47         modelType.setDescription("");
48         JsonNode definitionContent=null;
49         modelType.setDefinition(definitionContent);
50         modelType.setModelName("");
51         modelType.setVersion("");
52         modelType.setTags("");
53         modelType.setUpdatedBy("");
54         ModelTypeValidator.validateModelType(modelType);
55     }
56 }