2 * Copyright © 2018 IBM.
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
8 * http://www.apache.org/licenses/LICENSE-2.0
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.
17 package org.onap.ccsdk.apps.controllerblueprints.service.validator;
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;
26 public class ModelTypeValidatorTest {
30 ModelTypeValidator modelTypeValidator;
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);
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);