2  * ============LICENSE_START=======================================================
 
   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
 
  13  *      http://www.apache.org/licenses/LICENSE-2.0
 
  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.
 
  21  * ============LICENSE_END=========================================================
 
  24 package org.onap.appc.requesthandler.impl;
 
  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;
 
  34 import java.util.Properties;
 
  36 import static org.mockito.Mockito.mock;
 
  38 public class RequestValidatorImplTest {
 
  39     private Configuration mockConfig = mock(Configuration.class);
 
  40     private RequestValidatorImpl impl;
 
  43     public void setUp() throws Exception {
 
  44         impl = new RequestValidatorImpl();
 
  45         Whitebox.setInternalState(impl, "configuration", mockConfig);
 
  48     // TODO: remove Ignore when initialize method actually throws APPCException
 
  50     @Test(expected = APPCException.class)
 
  51     public void testInitializeWithNullConfigProps() throws Exception {
 
  52         Mockito.doReturn(null).when(mockConfig).getProperties();
 
  56     // TODO: remove Ignore when initialize method actually throws APPCException
 
  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();
 
  66     // TODO: remove Ignore when initialize method actually throws APPCException
 
  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();