summaryrefslogtreecommitdiffstats
path: root/nokiav2/driver/src/test/java/org/onap/vfc/nfvo/driver/vnfm/svnfm/nokia/spring/TestConditions.java
diff options
context:
space:
mode:
Diffstat (limited to 'nokiav2/driver/src/test/java/org/onap/vfc/nfvo/driver/vnfm/svnfm/nokia/spring/TestConditions.java')
-rw-r--r--nokiav2/driver/src/test/java/org/onap/vfc/nfvo/driver/vnfm/svnfm/nokia/spring/TestConditions.java66
1 files changed, 66 insertions, 0 deletions
diff --git a/nokiav2/driver/src/test/java/org/onap/vfc/nfvo/driver/vnfm/svnfm/nokia/spring/TestConditions.java b/nokiav2/driver/src/test/java/org/onap/vfc/nfvo/driver/vnfm/svnfm/nokia/spring/TestConditions.java
new file mode 100644
index 00000000..f716cad6
--- /dev/null
+++ b/nokiav2/driver/src/test/java/org/onap/vfc/nfvo/driver/vnfm/svnfm/nokia/spring/TestConditions.java
@@ -0,0 +1,66 @@
+/*
+ * Copyright 2016-2017, Nokia Corporation
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.spring;
+
+import junit.framework.TestCase;
+import org.junit.Before;
+import org.junit.Test;
+import org.mockito.Mock;
+import org.mockito.MockitoAnnotations;
+import org.springframework.context.annotation.ConditionContext;
+import org.springframework.core.env.Environment;
+
+import static org.mockito.Mockito.when;
+
+public class TestConditions {
+
+ @Mock
+ private ConditionContext conditionContext;
+ @Mock
+ private Environment environment;
+
+ private String[] activeProfiles = new String[]{"a", "b"};
+
+ @Before
+ public void init() {
+ MockitoAnnotations.initMocks(this);
+ when(conditionContext.getEnvironment()).thenReturn(environment);
+ when(environment.getActiveProfiles()).thenReturn(activeProfiles);
+ }
+
+ /**
+ * if direct integration is not specified VF-C based integration is used
+ */
+ @Test
+ public void testVfcBased() throws Exception {
+ //verify
+ TestCase.assertTrue(new Conditions.UseForVfc().matches(conditionContext, null));
+ TestCase.assertFalse(new Conditions.UseForDirect().matches(conditionContext, null));
+ }
+
+ /**
+ * if direct integration is not specified VF-C based integration is used
+ */
+ @Test
+ public void testDirectBased() throws Exception {
+ activeProfiles[1] = "direct";
+ //verify
+ TestCase.assertFalse(new Conditions.UseForVfc().matches(conditionContext, null));
+ TestCase.assertTrue(new Conditions.UseForDirect().matches(conditionContext, null));
+ }
+
+}