11ed4938d0adbb1c515da8f7dd38564e8d3c6f17
[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
22 import java.util.List;
23 import org.junit.Before;
24 import org.junit.Test;
25 import org.junit.runner.RunWith;
26 import org.onap.nbi.apis.serviceorder.model.ServiceOrder;
27 import org.onap.nbi.apis.serviceorder.model.StateType;
28 import org.onap.nbi.apis.serviceorder.repositories.ServiceOrderRepository;
29 import org.springframework.beans.factory.annotation.Autowired;
30 import org.springframework.boot.test.context.SpringBootTest;
31 import org.springframework.test.annotation.DirtiesContext;
32 import org.springframework.test.annotation.DirtiesContext.ClassMode;
33 import org.springframework.test.context.ActiveProfiles;
34 import org.springframework.test.context.junit4.SpringRunner;
35
36 @RunWith(SpringRunner.class)
37 @SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
38 @DirtiesContext(classMode= ClassMode.AFTER_CLASS)
39 @ActiveProfiles("test")
40 public class ServiceOrderRepositoryTest {
41
42     @Autowired
43     ServiceOrderRepository serviceOrderRepository;
44
45
46     @Before
47     public void setUp() {
48         ServiceOrder serviceOrder = new ServiceOrder();
49         serviceOrder.setId("test");
50         serviceOrder.setState(StateType.INPROGRESS);
51         serviceOrderRepository.save(serviceOrder);
52     }
53
54     @Test
55     public void findById() {
56         ServiceOrder result = serviceOrderRepository.findOne("test");
57         assertNotNull(result);
58     }
59
60     @Test
61     public void findByState() {
62         List<ServiceOrder> result = serviceOrderRepository.findByState(StateType.INPROGRESS);
63         assertFalse(result.isEmpty());
64     }
65
66 }