Package org.jclouds.googlecomputeengine.features

Source Code of org.jclouds.googlecomputeengine.features.RegionApiLiveTest

/*
* 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.googlecomputeengine.features;

import static org.testng.Assert.assertEquals;
import static org.testng.Assert.assertNotNull;
import static org.testng.Assert.assertSame;
import static org.testng.Assert.assertTrue;

import java.util.Iterator;
import java.util.List;

import org.jclouds.collect.IterableWithMarker;
import org.jclouds.collect.PagedIterable;
import org.jclouds.googlecomputeengine.domain.Region;
import org.jclouds.googlecomputeengine.internal.BaseGoogleComputeEngineApiLiveTest;
import org.jclouds.googlecomputeengine.options.ListOptions;
import org.testng.annotations.Test;

import com.google.common.collect.Iterables;
import com.google.common.collect.Lists;

public class RegionApiLiveTest extends BaseGoogleComputeEngineApiLiveTest {

   private Region region;

   private RegionApi api() {
      return api.getRegionApiForProject(userProject.get());
   }

   @Test(groups = "live")
   public void testListRegion() {

      PagedIterable<Region> regions = api().list(new ListOptions.Builder()
              .maxResults(1));

      Iterator<IterableWithMarker<Region>> pageIterator = regions.iterator();
      assertTrue(pageIterator.hasNext());

      IterableWithMarker<Region> singlePageIterator = pageIterator.next();
      List<Region> regionAsList = Lists.newArrayList(singlePageIterator);

      assertSame(regionAsList.size(), 1);

      this.region = Iterables.getOnlyElement(regionAsList);
   }


   @Test(groups = "live", dependsOnMethods = "testListRegion")
   public void testGetRegion() {
      Region region = api().get(this.region.getName());
      assertNotNull(region);
      assertRegionEquals(region, this.region);
   }

   private void assertRegionEquals(Region result, Region expected) {
      assertEquals(result.getName(), expected.getName());
   }

}
TOP

Related Classes of org.jclouds.googlecomputeengine.features.RegionApiLiveTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.