1f6d7619befc637efee7a7013c55352d4e6ca598
[dcaegen2/services.git] /
1 /*
2  * ============LICENSE_START=======================================================
3  * ONAP : DATALAKE
4  * ================================================================================
5  * Copyright 2019 China Mobile
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.datalake.feeder.domain;
22
23 import org.junit.Test;
24
25 import static org.junit.Assert.*;
26
27 public class PortalDesignTest {
28
29     @Test
30     public void testIs() {
31
32         PortalDesign portalDesign = new PortalDesign();
33         portalDesign.setId(1);
34         portalDesign.setSubmitted(false);
35         portalDesign.setBody("jsonString");
36         portalDesign.setName("templateTest");
37         Topic topic = new Topic("_DL_DEFAULT_");
38         portalDesign.setTopic(topic);
39         DesignType designType = new DesignType();
40         designType.setName("Kibana");
41         portalDesign.setDesignType(designType);
42         portalDesign.setNote("test");
43         assertFalse("1".equals(portalDesign.getId()));
44         assertTrue("templateTest".equals(portalDesign.getName()));
45         assertTrue("jsonString".equals(portalDesign.getBody()));
46         assertFalse("_DL_DEFAULT_".equals(portalDesign.getTopic()));
47         assertTrue("test".equals(portalDesign.getNote()));
48         assertFalse("Kibana".equals(portalDesign.getDesignType()));
49         assertFalse("false".equals(portalDesign.getSubmitted()));
50     }
51
52 }