8ecb087571983bbfc1e5368dcf08b210a36a17ba
[appc.git] /
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP : APPC
4  * ================================================================================
5  * Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Copyright (C) 2017 Amdocs
8  * =============================================================================
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  * 
13  *      http://www.apache.org/licenses/LICENSE-2.0
14  * 
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  * 
21  * ============LICENSE_END=========================================================
22  */
23
24 package org.onap.appc.requesthandler.impl;
25
26 import org.junit.Before;
27 import org.junit.Ignore;
28 import org.junit.Test;
29 import org.mockito.Mockito;
30 import org.mockito.internal.util.reflection.Whitebox;
31 import org.onap.appc.configuration.Configuration;
32 import org.onap.appc.exceptions.APPCException;
33
34 import java.util.Properties;
35
36 import static org.mockito.Mockito.mock;
37
38 public class RequestValidatorImplTest {
39     private Configuration mockConfig = mock(Configuration.class);
40     private RequestValidatorImpl impl;
41
42     @Before
43     public void setUp() throws Exception {
44         impl = new RequestValidatorImpl();
45         Whitebox.setInternalState(impl, "configuration", mockConfig);
46     }
47
48     // TODO: remove Ignore when initialize method actually throws APPCException
49     @Ignore
50     @Test(expected = APPCException.class)
51     public void testInitializeWithNullConfigProps() throws Exception {
52         Mockito.doReturn(null).when(mockConfig).getProperties();
53         impl.initialize();
54     }
55
56     // TODO: remove Ignore when initialize method actually throws APPCException
57     @Ignore
58     @Test(expected = APPCException.class)
59     public void testInitializeWithoutEndpointProp() throws Exception {
60         Properties mockProp = mock(Properties.class);
61         Mockito.doReturn(null).when(mockProp).getProperty(RequestValidatorImpl.SCOPE_OVERLAP_ENDPOINT);
62         Mockito.doReturn(mockProp).when(mockConfig).getProperties();
63         impl.initialize();
64     }
65
66     // TODO: remove Ignore when initialize method actually throws APPCException
67     @Ignore
68     @Test(expected = APPCException.class)
69     public void testInitializeWithMalFormatEndpoint() throws Exception {
70         Properties mockProp = mock(Properties.class);
71         Mockito.doReturn("a/b/c").when(mockProp).getProperty(RequestValidatorImpl.SCOPE_OVERLAP_ENDPOINT);
72         Mockito.doReturn(mockProp).when(mockConfig).getProperties();
73         impl.initialize();
74     }
75 }