summaryrefslogtreecommitdiffstats
path: root/adapters/mso-adapter-utils/src/test/java/org/openecomp/mso/adapter_utils/tests/CloudConfigTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'adapters/mso-adapter-utils/src/test/java/org/openecomp/mso/adapter_utils/tests/CloudConfigTest.java')
-rw-r--r--adapters/mso-adapter-utils/src/test/java/org/openecomp/mso/adapter_utils/tests/CloudConfigTest.java173
1 files changed, 173 insertions, 0 deletions
diff --git a/adapters/mso-adapter-utils/src/test/java/org/openecomp/mso/adapter_utils/tests/CloudConfigTest.java b/adapters/mso-adapter-utils/src/test/java/org/openecomp/mso/adapter_utils/tests/CloudConfigTest.java
new file mode 100644
index 0000000000..8632d02164
--- /dev/null
+++ b/adapters/mso-adapter-utils/src/test/java/org/openecomp/mso/adapter_utils/tests/CloudConfigTest.java
@@ -0,0 +1,173 @@
+/*-
+ * ============LICENSE_START=======================================================
+ * OPENECOMP - MSO
+ * ================================================================================
+ * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
+ * ================================================================================
+ * 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.
+ * ============LICENSE_END=========================================================
+ */
+
+package org.openecomp.mso.adapter_utils.tests;
+
+
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertNotNull;
+import static org.junit.Assert.assertNull;
+import org.junit.BeforeClass;
+import org.junit.Test;
+import java.util.Map;
+import org.openecomp.mso.cloud.CloudConfig;
+import org.openecomp.mso.cloud.CloudConfigFactory;
+import org.openecomp.mso.cloud.CloudIdentity;
+import org.openecomp.mso.cloud.CloudSite;
+
+
+/**
+ * This class implements test methods of the CloudConfig features.
+ *
+ *
+ */
+public class CloudConfigTest {
+
+ private static CloudConfig con;
+ private static CloudConfigFactory cloudConfigFactory= new CloudConfigFactory();
+
+ public CloudConfigTest () {
+
+ }
+
+ /**
+ * This method is called before any test occurs.
+ * It creates a fake tree from scratch
+ */
+ @BeforeClass
+ public static final void prepare () {
+ ClassLoader classLoader = CloudConfigTest.class.getClassLoader();
+ String config = classLoader.getResource("cloud_config.json").toString().substring(5);
+
+ cloudConfigFactory.initializeCloudConfig(config,1);
+ con = cloudConfigFactory.getCloudConfig();
+ }
+
+ /**
+ * This method implements a test for the getCloudConfig method.
+ */
+ @Test
+ public final void testGetCloudConfig () {
+ assertNotNull(con);
+ }
+
+ /**
+ * This method implements a test for the getCloudSites method.
+ */
+ @Test
+ public final void testGetCloudSites () {
+ Map<String,CloudSite> siteMap = con.getCloudSites();
+ assertNotNull(siteMap);
+
+ CloudSite site1 = siteMap.get("MT");
+ CloudSite site2 = siteMap.get("DAN");
+ CloudSite site3 = siteMap.get("MTINJVCC101");
+
+ assertEquals (site1.getRegionId(), "regionOne");
+ assertEquals (site1.getIdentityServiceId(), "MT_KEYSTONE");
+ assertEquals (site2.getRegionId(), "RegionOne");
+ assertEquals (site2.getIdentityServiceId(), "DAN_KEYSTONE");
+ assertEquals (site3.getRegionId(), "regionTwo");
+ assertEquals (site3.getIdentityServiceId(), "MTINJVCC101_DCP");
+
+ }
+
+
+ /**
+ * This method implements a test for the getIdentityServices method.
+ */
+ @Test
+ public final void testGetIdentityServices () {
+ Map<String,CloudIdentity> identityMap = con.getIdentityServices ();
+ assertNotNull(identityMap);
+
+ CloudIdentity identity1 = identityMap.get("MT_KEYSTONE");
+ CloudIdentity identity2 = identityMap.get("DAN_KEYSTONE");
+ CloudIdentity identity3 = identityMap.get("MTINJVCC101_DCP");
+ CloudIdentity identity4 = identityMap.get("MTSNJA3DCP1");
+
+// assertEquals (identity1.getKeystoneUrl(), "http://localhost:5000/v2.0");
+// assertEquals (identity1.getIdentityUrl(), "http://localhost:5000/v2.0");
+ assertEquals (identity1.getMsoId(), "john");
+ assertEquals (identity1.getMsoPass(), "changeme");
+ assertEquals (identity1.getAdminTenant(), "admin");
+ assertEquals (identity1.getMemberRole(), "_member_");
+ assertEquals (identity1.hasTenantMetadata(), false);
+
+// assertEquals (identity2.getKeystoneUrl(), "http://localhost:5000/v2.0");
+// assertEquals (identity2.getIdentityUrl(), "http://localhost:5000/v2.0");
+ assertEquals (identity2.getMsoId(), "mockId");
+ assertEquals (identity2.getMsoPass(), "stack123");
+ assertEquals (identity2.getAdminTenant(), "service");
+ assertEquals (identity2.getMemberRole(), "_member_");
+ assertEquals (identity2.hasTenantMetadata(), false);
+
+// assertEquals (identity3.getKeystoneUrl(), "http://localhost:5000/v2.0");
+// assertEquals (identity3.getIdentityUrl(), "http://localhost:5000/v2.0");
+ assertEquals (identity3.getMsoId(), "mockIdToo");
+ assertEquals (identity3.getMsoPass(), "AICG@mm@@2015");
+ assertEquals (identity3.getAdminTenant(), "service");
+ assertEquals (identity3.getMemberRole(), "admin");
+ assertEquals (identity3.hasTenantMetadata(), true);
+
+// assertEquals (identity4.getKeystoneUrl(), "https://localhost:5000/v2.0");
+// assertEquals (identity4.getIdentityUrl(), "https://localhost:5000/v2.0");
+ assertEquals (identity4.getMsoId(), "mockIdToo");
+ assertEquals (identity4.getMsoPass(), "2315QRS2015srq");
+ assertEquals (identity4.getAdminTenant(), "service");
+ assertEquals (identity4.getMemberRole(), "admin");
+ assertEquals (identity4.hasTenantMetadata(), true);
+
+ }
+
+ /**
+ * This method implements a test for the getCloudSite method.
+ */
+ @Test
+ public final void testGetCloudSite () {
+ CloudSite site1 = con.getCloudSite("MT");
+ assertNotNull(site1);
+ assertEquals (site1.getRegionId(), "regionOne");
+ assertEquals (site1.getIdentityServiceId(), "MT_KEYSTONE");
+
+
+
+ }
+
+ /**
+ * This method implements a test for the getIdentityService method.
+ */
+ @Test
+ public final void testGetIdentityService () {
+ CloudIdentity identity1 = con.getIdentityService("MT_KEYSTONE");
+ assertNotNull(identity1);
+// assertEquals (identity1.getKeystoneUrl(), "http://localhost:5000/v2.0");
+// assertEquals (identity1.getIdentityUrl(), "http://localhost:5000/v2.0");
+ assertEquals (identity1.getMsoId(), "john");
+ assertEquals (identity1.getMsoPass(), "changeme");
+ assertEquals (identity1.getAdminTenant(), "admin");
+ assertEquals (identity1.getMemberRole(), "_member_");
+ assertEquals (identity1.hasTenantMetadata(), false);
+
+ CloudIdentity identity2 = con.getIdentityService("Test");
+ assertNull(identity2);
+ }
+
+}