Package org.jclouds.openstack.swift.v1.features

Source Code of org.jclouds.openstack.swift.v1.features.ContainerApiLiveTest

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

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

import java.util.Map;
import java.util.Map.Entry;

import org.jclouds.openstack.swift.v1.domain.Container;
import org.jclouds.openstack.swift.v1.internal.BaseSwiftApiLiveTest;
import org.jclouds.openstack.swift.v1.options.CreateContainerOptions;
import org.testng.annotations.AfterClass;
import org.testng.annotations.BeforeClass;
import org.testng.annotations.Test;

import com.google.common.collect.FluentIterable;
import com.google.common.collect.ImmutableMap;

/**
* @author Adrian Cole
*/
@Test(groups = "live", testName = "ContainerApiLiveTest")
public class ContainerApiLiveTest extends BaseSwiftApiLiveTest {

   private String name = getClass().getSimpleName();

   @Test
   public void list() throws Exception {
      for (String regionId : regions) {
         ContainerApi containerApi = api.containerApiInRegion(regionId);
         FluentIterable<Container> response = containerApi.listFirstPage();
         assertNotNull(response);
         for (Container container : response) {
            assertNotNull(container.name());
            assertTrue(container.objectCount() >= 0);
            assertTrue(container.bytesUsed() >= 0);
         }
      }
   }

   public void get() throws Exception {
      for (String regionId : regions) {
         Container container = api.containerApiInRegion(regionId).get(name);
         assertEquals(container.name(), name);
         assertTrue(container.objectCount() == 0);
         assertTrue(container.bytesUsed() == 0);
      }
   }

   public void listAt() throws Exception {
      String lexicographicallyBeforeName = name.substring(0, name.length() - 1);
      for (String regionId : regions) {
         Container container = api.containerApiInRegion(regionId).listAt(lexicographicallyBeforeName).get(0);
         assertEquals(container.name(), name);
         assertTrue(container.objectCount() == 0);
         assertTrue(container.bytesUsed() == 0);
      }
   }

   public void updateMetadata() throws Exception {
      for (String regionId : regions) {
         ContainerApi containerApi = api.containerApiInRegion(regionId);

         Map<String, String> meta = ImmutableMap.of("MyAdd1", "foo", "MyAdd2", "bar");

         assertTrue(containerApi.updateMetadata(name, meta));

         containerHasMetadata(containerApi, name, meta);
      }
   }

   public void deleteMetadata() throws Exception {
      for (String regionId : regions) {
         ContainerApi containerApi = api.containerApiInRegion(regionId);

         Map<String, String> meta = ImmutableMap.of("MyDelete1", "foo", "MyDelete2", "bar");

         assertTrue(containerApi.updateMetadata(name, meta));
         containerHasMetadata(containerApi, name, meta);

         assertTrue(containerApi.deleteMetadata(name, meta));
         Container container = containerApi.get(name);
         for (Entry<String, String> entry : meta.entrySet()) {
            // note keys are returned in lower-case!
            assertFalse(container.metadata().containsKey(entry.getKey().toLowerCase()));
         }
      }
   }

   static void containerHasMetadata(ContainerApi containerApi, String name, Map<String, String> meta) {
      Container container = containerApi.get(name);
      for (Entry<String, String> entry : meta.entrySet()) {
         // note keys are returned in lower-case!
         assertEquals(container.metadata().get(entry.getKey().toLowerCase()), entry.getValue(), //
               container + " didn't have metadata: " + entry);
      }
   }

   @Override
   @BeforeClass(groups = "live")
   public void setup() {
      super.setup();
      for (String regionId : regions) {
         api.containerApiInRegion(regionId).createIfAbsent(name, CreateContainerOptions.NONE);
      }
   }

   @Override
   @AfterClass(groups = "live")
   public void tearDown() {
      for (String regionId : regions) {
         api.containerApiInRegion(regionId).deleteIfEmpty(name);
      }
      super.tearDown();
   }
}
TOP

Related Classes of org.jclouds.openstack.swift.v1.features.ContainerApiLiveTest

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.