Merge "Integrate sdc-tosca parser jar"
[externalapi/nbi.git] / src / test / java / org / onap / nbi / apis / 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.apis;
17
18
19 import static org.junit.Assert.assertFalse;
20 import static org.junit.Assert.assertNotNull;
21 import java.util.List;
22 import org.junit.Before;
23 import org.junit.Test;
24 import org.junit.runner.RunWith;
25 import org.onap.nbi.apis.serviceorder.model.ServiceOrder;
26 import org.onap.nbi.apis.serviceorder.model.StateType;
27 import org.onap.nbi.apis.serviceorder.repositories.ServiceOrderRepository;
28 import org.springframework.beans.factory.annotation.Autowired;
29 import org.springframework.boot.test.context.SpringBootTest;
30 import org.springframework.test.context.junit4.SpringRunner;
31
32 @RunWith(SpringRunner.class)
33 @SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)
34 public class ServiceOrderRepositoryTest {
35
36     @Autowired
37     ServiceOrderRepository serviceOrderRepository;
38
39
40     @Before
41     public void setUp() {
42         ServiceOrder serviceOrder = new ServiceOrder();
43         serviceOrder.setId("test");
44         serviceOrder.setState(StateType.INPROGRESS);
45         serviceOrderRepository.save(serviceOrder);
46     }
47
48     @Test
49     public void findById() {
50         ServiceOrder result = serviceOrderRepository.findOne("test");
51         assertNotNull(result);
52     }
53
54     @Test
55     public void findByState() {
56         List<ServiceOrder> result = serviceOrderRepository.findByState(StateType.INPROGRESS);
57         assertFalse(result.isEmpty());
58     }
59
60 }