Implement Attributes/Outputs BE (part 1)
[sdc.git] / catalog-model / src / test / java / org / openecomp / sdc / be / model / ComponentParametersViewTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2019 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.openecomp.sdc.be.model;
22
23 import org.junit.Test;
24 import org.openecomp.sdc.be.dao.jsongraph.types.JsonParseFlagEnum;
25 import org.openecomp.sdc.be.datatypes.enums.ComponentFieldsEnum;
26 import org.openecomp.sdc.be.datatypes.enums.ComponentTypeEnum;
27
28 import java.util.LinkedList;
29
30 import static org.junit.Assert.assertSame;
31
32 public class ComponentParametersViewTest {
33
34         private ComponentParametersView createTestSubject() {
35                 return new ComponentParametersView();
36         }
37
38         @Test
39         public void testCtor() throws Exception {
40                 new ComponentParametersView(true);
41                 
42                 LinkedList<String> linkedList = new LinkedList<>();
43                 for (ComponentFieldsEnum iterable_element : ComponentFieldsEnum.values()) {
44                         linkedList.add(iterable_element.getValue());
45                 }
46                 new ComponentParametersView(linkedList);
47         }
48         
49         @Test
50         public void testFilter() throws Exception {
51                 ComponentParametersView testSubject;
52                 Component component = null;
53                 ComponentTypeEnum componentType = ComponentTypeEnum.RESOURCE;
54                 Component result;
55
56                 // default test
57                 testSubject = createTestSubject();
58                 result = testSubject.filter(component, componentType);
59                 testSubject.disableAll();
60                 result = testSubject.filter(new Resource(), componentType);
61         }
62
63         
64         @Test
65         public void testDisableAll() throws Exception {
66                 ComponentParametersView testSubject;
67
68                 // default test
69                 testSubject = createTestSubject();
70                 testSubject.disableAll();
71         }
72
73         @Test
74         public void testDetectParseFlag() throws Exception {
75                 ComponentParametersView testSubject;
76                 JsonParseFlagEnum result;
77
78                 // default test
79                 testSubject = createTestSubject();
80                 result = testSubject.detectParseFlag();
81         }
82 }