/apis/openstack-keystone/src/test/java/org/jclouds/openstack/keystone/v2_0/suppliers/RegionIdToURIFromAccessForTypeAndVersionTest.java
Java | 118 lines | 85 code | 17 blank | 16 comment | 0 complexity | 693eca01062fd5bf7f295946beb38c16 MD5 | raw file
- /*
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You 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.jclouds.openstack.keystone.v2_0.suppliers;
- import static org.testng.Assert.assertEquals;
- import java.net.URI;
- import java.util.NoSuchElementException;
- import javax.inject.Singleton;
- import org.jclouds.location.Provider;
- import org.jclouds.location.suppliers.RegionIdToURISupplier;
- import org.jclouds.openstack.keystone.v2_0.domain.Access;
- import org.jclouds.openstack.keystone.v2_0.parse.ParseAccessTest;
- import org.jclouds.openstack.keystone.v2_0.parse.ParseRackspaceAccessTest;
- import org.testng.annotations.Test;
- import com.google.common.base.Supplier;
- import com.google.common.base.Suppliers;
- import com.google.common.collect.ImmutableMap;
- import com.google.common.collect.Maps;
- import com.google.inject.AbstractModule;
- import com.google.inject.Guice;
- import com.google.inject.Provides;
- import com.google.inject.TypeLiteral;
- import com.google.inject.assistedinject.FactoryModuleBuilder;
- @Test(groups = "unit", testName = "RegionIdToURIFromAccessForTypeAndVersionTest")
- public class RegionIdToURIFromAccessForTypeAndVersionTest {
- private final RegionIdToURISupplier.Factory factory = Guice.createInjector(new AbstractModule() {
- @Override
- protected void configure() {
- bindConstant().annotatedWith(Provider.class).to("openstack-keystone");
- bind(new TypeLiteral<Supplier<URI>>() {
- }).annotatedWith(Provider.class).toInstance(Suppliers.ofInstance(URI.create("https://identity")));
- install(new FactoryModuleBuilder().implement(RegionIdToURISupplier.class,
- RegionIdToURIFromAccessForTypeAndVersion.class).build(
- RegionIdToURISupplier.Factory.class));
- }
- @Provides
- @Singleton
- public Supplier<Access> provide() {
- return Suppliers.ofInstance(new ParseAccessTest().expected());
- }
- }).getInstance(RegionIdToURISupplier.Factory.class);
- @SuppressWarnings("CheckReturnValue")
- @Test(expectedExceptions = NoSuchElementException.class)
- public void testRegionUnmatches() {
- Maps.transformValues(factory.createForApiTypeAndVersion("compute", "1.0").get(),
- Suppliers.<URI> supplierFunction());
- }
-
- public void testRegionMatches() {
- assertEquals(Maps.transformValues(factory.createForApiTypeAndVersion("compute", "2").get(), Suppliers
- .<URI> supplierFunction()), ImmutableMap.of("az-1.region-a.geo-1", URI
- .create("https://az-1.region-a.geo-1.compute.hpcloudsvc.com/v2/3456"), "az-2.region-a.geo-1", URI
- .create("https://az-2.region-a.geo-1.compute.hpcloudsvc.com/v2/3456"), "az-3.region-a.geo-1", URI
- .create("https://az-3.region-a.geo-1.compute.hpcloudsvc.com/v2/3456")));
- }
- private final RegionIdToURISupplier.Factory raxFactory = Guice.createInjector(new AbstractModule() {
- @Override
- protected void configure() {
- bindConstant().annotatedWith(Provider.class).to("rackspace");
- bind(new TypeLiteral<Supplier<URI>>() {
- }).annotatedWith(Provider.class).toInstance(Suppliers.ofInstance(URI.create("https://identity")));
- install(new FactoryModuleBuilder().implement(RegionIdToURISupplier.class,
- RegionIdToURIFromAccessForTypeAndVersion.class).build(
- RegionIdToURISupplier.Factory.class));
- }
- @Provides
- @Singleton
- public Supplier<Access> provide() {
- return Suppliers.ofInstance(new ParseRackspaceAccessTest().expected());
- }
- }).getInstance(RegionIdToURISupplier.Factory.class);
- @Test(expectedExceptions = NoSuchElementException.class)
- public void testWhenNotInList() {
- assertEquals(Maps.transformValues(raxFactory.createForApiTypeAndVersion("goo", "1.0").get(), Suppliers
- .<URI> supplierFunction()), ImmutableMap.of("rackspace", URI
- .create("https://servers.api.rackspacecloud.com/v1.0/40806637803162")));
- }
- public void testProviderWhenNoRegions() {
- assertEquals(Maps.transformValues(raxFactory.createForApiTypeAndVersion("compute", "1.0").get(), Suppliers
- .<URI> supplierFunction()), ImmutableMap.of("rackspace", URI
- .create("https://servers.api.rackspacecloud.com/v1.0/40806637803162")));
- }
- public void testOkWithNoVersions() {
- assertEquals(Maps.transformValues(raxFactory.createForApiTypeAndVersion("rax:database", null).get(), Suppliers
- .<URI> supplierFunction()), ImmutableMap.of("DFW", URI
- .create("https://dfw.databases.api.rackspacecloud.com/v1.0/40806637803162"), "ORD", URI
- .create("https://ord.databases.api.rackspacecloud.com/v1.0/40806637803162")));
- }
- }