Package org.jclouds.openstack.trove.v1.features

Source Code of org.jclouds.openstack.trove.v1.features.FlavorApiLiveTest

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

import static org.testng.Assert.assertEquals;
import static org.testng.Assert.assertNotNull;
import static org.testng.Assert.assertNull;
import static org.testng.Assert.assertTrue;
import org.jclouds.openstack.trove.v1.domain.Flavor;
import org.jclouds.openstack.trove.v1.internal.BaseTroveApiLiveTest;
import org.testng.annotations.BeforeClass;
import org.testng.annotations.Test;
import com.google.common.collect.FluentIterable;

@Test(groups = "live", testName = "FlavorApiLiveTest")
public class FlavorApiLiveTest extends BaseTroveApiLiveTest {

    @Override
    @BeforeClass(groups = { "integration", "live" })
    public void setup() {
        super.setup();
    }

    private void checkFlavor(Flavor flavor) {
        assertNotNull(flavor.getId(), "Id cannot be null for " + flavor);
        assertNotNull(flavor.getName(), "Name cannot be null for " + flavor);
    }

    @Test
    public void testListFlavorsByAccount() {
        for (String region : api.getConfiguredRegions()) {
            FlavorApi flavorApi = api.getFlavorApi(region);

            FluentIterable<Flavor> response = flavorApi.list( api.getCurrentTenantId().get().getId() ); // tenant id, but referred to as account id.
            for (Flavor flavor : response) {
                checkFlavor(flavor);
            }
        }
    }

    @Test
    public void testListFlavorsByAccountWhenAccountIdNotFound() {
        for (String region : api.getConfiguredRegions()) {
            FlavorApi flavorApi = api.getFlavorApi(region);
            assertTrue(flavorApi.list("9999").isEmpty());
        }
    }

    @Test
    public void testGetFlavor() {
        for (String region : api.getConfiguredRegions()) {
            FlavorApi flavorApi = api.getFlavorApi(region);
            for (Flavor flavor : flavorApi.list()) {
                Flavor flavorFromGet = flavorApi.get(flavor.getId());
                assertEquals(flavorFromGet.getId(), flavor.getId());
                assertEquals(flavorFromGet.getRam(), flavor.getRam());
                assertEquals(flavorFromGet.getName(), flavor.getName());
                assertEquals(flavorFromGet.getLinks(), flavor.getLinks());
            }
        }
    }

    @Test
    public void testGetFlavorWhenNotFound() {
        for (String region : api.getConfiguredRegions()) {
            FlavorApi flavorApi = api.getFlavorApi(region);
            assertNull(flavorApi.get(9999));
        }
    }
}
TOP

Related Classes of org.jclouds.openstack.trove.v1.features.FlavorApiLiveTest

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.