2  * ============LICENSE_START=======================================================
 
   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
 
  11  *     http://www.apache.org/licenses/LICENSE-2.0
 
  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=========================================================
 
  21 package org.onap.datalake.feeder.domain;
 
  23 import org.junit.Test;
 
  25 import static org.junit.Assert.*;
 
  27 public class PortalDesignTest {
 
  30     public void testIs() {
 
  32         PortalDesign portalDesign = new PortalDesign();
 
  33         portalDesign.setId(1);
 
  34         portalDesign.setSubmitted(false);
 
  35         portalDesign.setBody("jsonString");
 
  36         portalDesign.setName("templateTest");
 
  37         portalDesign.setTopicName(new TopicName("x"));
 
  38         Topic topic = new Topic("_DL_DEFAULT_");
 
  39         portalDesign.setTopicName(topic.getTopicName());
 
  40         DesignType designType = new DesignType();
 
  41         designType.setName("Kibana");
 
  42         portalDesign.setDesignType(designType);
 
  43         portalDesign.setNote("test");
 
  44         assertFalse("1".equals(portalDesign.getId()));
 
  45         assertTrue("templateTest".equals(portalDesign.getName()));
 
  46         assertTrue("jsonString".equals(portalDesign.getBody()));
 
  47         assertFalse("_DL_DEFAULT_".equals(portalDesign.getTopicName()));
 
  48         assertTrue("test".equals(portalDesign.getNote()));
 
  49         assertFalse("Kibana".equals(portalDesign.getDesignType()));
 
  50         assertFalse("false".equals(portalDesign.getSubmitted()));