From 62227fd4e49be7f61dee5ac0a6cb14d1609a58b6 Mon Sep 17 00:00:00 2001 From: xuegao Date: Mon, 20 Jan 2020 10:35:16 +0100 Subject: Add tests Add tests for Dictonary and DictionaryElements Issue-ID: CLAMP-591 Change-Id: I1a810e0211685aa7d0831399e727c01b36416bab Signed-off-by: xuegao --- .../tosca/DictionaryRepositoriesTestItCase.java | 96 ++++++++++++++++++++++ 1 file changed, 96 insertions(+) create mode 100644 src/test/java/org/onap/clamp/clds/tosca/DictionaryRepositoriesTestItCase.java diff --git a/src/test/java/org/onap/clamp/clds/tosca/DictionaryRepositoriesTestItCase.java b/src/test/java/org/onap/clamp/clds/tosca/DictionaryRepositoriesTestItCase.java new file mode 100644 index 00000000..7f5b6901 --- /dev/null +++ b/src/test/java/org/onap/clamp/clds/tosca/DictionaryRepositoriesTestItCase.java @@ -0,0 +1,96 @@ +/*- + * ============LICENSE_START======================================================= + * ONAP CLAMP + * ================================================================================ + * Copyright (C) 2020 AT&T Intellectual Property. All rights + * reserved. + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * ============LICENSE_END============================================ + * =================================================================== + * + */ +package org.onap.clamp.clds.tosca; + +import static org.assertj.core.api.Assertions.assertThat; + +import java.util.LinkedList; +import java.util.List; + +import org.junit.Test; +import org.junit.runner.RunWith; +import org.onap.clamp.clds.Application; +import org.onap.clamp.tosca.Dictionary; +import org.onap.clamp.tosca.DictionaryElement; +import org.onap.clamp.tosca.DictionaryRepository; +import org.springframework.beans.factory.annotation.Autowired; +import org.springframework.boot.test.context.SpringBootTest; +import org.springframework.test.context.junit4.SpringJUnit4ClassRunner; +import org.springframework.transaction.annotation.Transactional; + +@RunWith(SpringJUnit4ClassRunner.class) +@SpringBootTest(classes = Application.class) +public class DictionaryRepositoriesTestItCase { + @Autowired + private DictionaryRepository dictionaryRepository; + + @Test + @Transactional + public void crudTest() { + // Setup + Dictionary dictionaryTest1 = new Dictionary(); + dictionaryTest1.setName("testDictionary1"); + dictionaryTest1.setSecondLevelDictionary(1); + dictionaryTest1.setSubDictionaryType("testType"); + + DictionaryElement element1 = new DictionaryElement(); + element1.setDictionary(dictionaryTest1); + element1.setName("element1"); + element1.setShortName("shortName1"); + element1.setSubDictionary("subDictionary1"); + element1.setType("type1"); + element1.setDescription("description1"); + + LinkedList elementList1 = new LinkedList(); + elementList1.add(element1); + dictionaryTest1.setDictionaryElements(elementList1); + + Dictionary dictionaryTest2 = new Dictionary(); + dictionaryTest2.setName("testDictionary2"); + dictionaryTest2.setSecondLevelDictionary(1); + dictionaryTest2.setSubDictionaryType("testType"); + + DictionaryElement element2 = new DictionaryElement(); + element2.setDictionary(dictionaryTest2); + element2.setName("element2"); + element2.setShortName("shortName2"); + element2.setSubDictionary("subDictionary2"); + element2.setType("type2"); + element2.setDescription("description2"); + + LinkedList elementList2 = new LinkedList(); + elementList2.add(element2); + dictionaryTest2.setDictionaryElements(elementList2); + + dictionaryRepository.save(dictionaryTest1); + List res1 = dictionaryRepository.getAllDictionaryNames(); + assertThat(res1.size()).isEqualTo(1); + assertThat(res1.get(0)).isEqualTo("testDictionary1"); + + dictionaryRepository.save(dictionaryTest2); + List res2 = dictionaryRepository.getAllDictionaryNames(); + assertThat(res2.size()).isEqualTo(2); + assertThat(res2.get(0)).isEqualTo("testDictionary1"); + assertThat(res2.get(1)).isEqualTo("testDictionary2"); + } +} -- cgit 1.2.3-korg