JUnit additions for PDP-REST,ONAP-SDK-APP
[policy/engine.git] / ONAP-PDP-REST / src / test / java / org / onap / policy / pdp / rest / api / services / PolicyEngineImportServiceTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP-PAP-REST
4  * ================================================================================
5  * Copyright (C) 2018 AT&T Intellectual Property. All rights reserved.
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
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
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=========================================================
19  */
20 package org.onap.policy.pdp.rest.api.services;
21
22 import static org.junit.Assert.*;
23 import org.junit.Test;
24 import org.springframework.mock.web.MockMultipartFile;
25 import org.springframework.web.multipart.MultipartFile;
26
27 public class PolicyEngineImportServiceTest {
28         @Test
29         public final void negativeTestService1() {
30                 // Negative test constructor
31                 String json = "testJson";
32                 MultipartFile file = null;
33                 String id = "testID";
34                 PolicyEngineImportService service = new PolicyEngineImportService(json, file, id);
35                 
36                 // Test gets
37                 assertNotNull(service.getResult());
38                 assertEquals(service.getResponseCode().value(), 400);
39         }
40
41         @Test
42         public final void negativeTestService2() {
43                 // Negative test constructor
44                 String json = "{\n\"serviceName\": \"testVal\"\n}\n";
45                 byte[] content = "bar".getBytes();
46                 MultipartFile file = new MockMultipartFile("foo", content);
47                 String id = "testID";
48                 PolicyEngineImportService service = new PolicyEngineImportService(json, file, id);
49                 
50                 // Test gets
51                 assertNotNull(service.getResult());
52                 assertEquals(service.getResponseCode().value(), 400);
53         }
54 }