fd83ec095620586d583fb0f9dee1d8716cb77bdc
[externalapi/nbi.git] / src / test / java / org / onap / nbi / test / ServiceOrderRepositoryTest.java
1 /**
2  *     Copyright (c) 2018 Orange
3  *
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
7  *
8  *         http://www.apache.org/licenses/LICENSE-2.0
9  *
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.
15  */
16 package org.onap.nbi.test;
17
18
19 import static org.junit.Assert.assertFalse;
20 import static org.junit.Assert.assertNotNull;
21 import static org.junit.Assert.assertTrue;
22
23 import java.util.List;
24 import java.util.Optional;
25 import org.junit.Before;
26 import org.junit.Test;
27 import org.junit.runner.RunWith;
28 import org.onap.nbi.apis.serviceorder.model.ServiceOrder;
29 import org.onap.nbi.apis.serviceorder.model.StateType;
30 import org.onap.nbi.apis.serviceorder.repositories.ServiceOrderRepository;
31 import org.springframework.beans.factory.annotation.Autowired;
32 import org.springframework.boot.test.context.SpringBootTest;
33 import org.springframework.test.annotation.DirtiesContext;
34 import org.springframework.test.annotation.DirtiesContext.ClassMode;
35 import org.springframework.test.context.ActiveProfiles;
36 import org.springframework.test.context.junit4.SpringRunner;
37
38 @RunWith(SpringRunner.class)
39 @SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
40 @DirtiesContext(classMode= ClassMode.AFTER_CLASS)
41 @ActiveProfiles("test")
42 public class ServiceOrderRepositoryTest {
43
44     @Autowired
45     ServiceOrderRepository serviceOrderRepository;
46
47
48     @Before
49     public void setUp() {
50         ServiceOrder serviceOrder = new ServiceOrder();
51         serviceOrder.setId("test");
52         serviceOrder.setState(StateType.INPROGRESS);
53         serviceOrderRepository.save(serviceOrder);
54     }
55
56     @Test
57     public void findById() {
58         Optional<ServiceOrder> optionalServiceOrderChecked = serviceOrderRepository.findById("test");
59         assertTrue(optionalServiceOrderChecked.isPresent());
60     }
61
62     @Test
63     public void findByState() {
64         List<ServiceOrder> result = serviceOrderRepository.findByState(StateType.INPROGRESS);
65         assertFalse(result.isEmpty());
66     }
67
68 }