com.intuit.tank.vm.settings.CloudCredentialsCpTest.java Source code

Java tutorial

Introduction

Here is the source code for com.intuit.tank.vm.settings.CloudCredentialsCpTest.java

Source

package com.intuit.tank.vm.settings;

/*
 * #%L
 * Intuit Tank Api
 * %%
 * Copyright (C) 2011 - 2015 Intuit Inc.
 * %%
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * which accompanies this distribution, and is available at
 * http://www.eclipse.org/legal/epl-v10.html
 * #L%
 */

import org.apache.commons.configuration.HierarchicalConfiguration;
import org.junit.*;

import com.intuit.tank.vm.settings.CloudCredentials;
import com.intuit.tank.vm.settings.CloudProvider;

import static org.junit.Assert.*;

/**
 * The class <code>CloudCredentialsCpTest</code> contains tests for the class <code>{@link CloudCredentials}</code>.
 * 
 * @generatedBy CodePro at 9/3/14 3:44 PM
 */
public class CloudCredentialsCpTest {
    /**
     * Run the CloudCredentials(HierarchicalConfiguration) constructor test.
     * 
     * @throws Exception
     * 
     * @generatedBy CodePro at 9/3/14 3:44 PM
     */
    @Test
    public void testCloudCredentials_1() throws Exception {
        HierarchicalConfiguration config = new HierarchicalConfiguration();

        CloudCredentials result = new CloudCredentials(config);

        assertNotNull(result);
        assertEquals(null, result.getKey());
        assertEquals(null, result.getProxyHost());
        assertEquals(null, result.getProxyPort());
        assertEquals(null, result.getKeyId());
    }

    /**
     * Run the String getKey() method test.
     * 
     * @throws Exception
     * 
     * @generatedBy CodePro at 9/3/14 3:44 PM
     */
    @Test
    public void testGetKey_1() throws Exception {
        CloudCredentials fixture = new CloudCredentials(new HierarchicalConfiguration());

        String result = fixture.getKey();

        assertEquals(null, result);
    }

    /**
     * Run the String getKeyId() method test.
     * 
     * @throws Exception
     * 
     * @generatedBy CodePro at 9/3/14 3:44 PM
     */
    @Test
    public void testGetKeyId_1() throws Exception {
        CloudCredentials fixture = new CloudCredentials(new HierarchicalConfiguration());

        String result = fixture.getKeyId();

        assertEquals(null, result);
    }

    /**
     * Run the String getProxyHost() method test.
     * 
     * @throws Exception
     * 
     * @generatedBy CodePro at 9/3/14 3:44 PM
     */
    @Test
    public void testGetProxyHost_1() throws Exception {
        CloudCredentials fixture = new CloudCredentials(new HierarchicalConfiguration());

        String result = fixture.getProxyHost();

        assertEquals(null, result);
    }

    /**
     * Run the String getProxyPort() method test.
     * 
     * @throws Exception
     * 
     * @generatedBy CodePro at 9/3/14 3:44 PM
     */
    @Test
    public void testGetProxyPort_1() throws Exception {
        CloudCredentials fixture = new CloudCredentials(new HierarchicalConfiguration());

        String result = fixture.getProxyPort();

        assertEquals(null, result);
    }

    /**
     * Run the CloudProvider getType() method test.
     * 
     * @throws Exception
     * 
     * @generatedBy CodePro at 9/3/14 3:44 PM
     */
    @Test
    public void testGetType_1() throws Exception {
        CloudCredentials fixture = new CloudCredentials(new HierarchicalConfiguration());

        CloudProvider result = fixture.getType();

        assertNotNull(result);
        assertEquals("amazon", result.name());
        assertEquals("amazon", result.toString());
        assertEquals(0, result.ordinal());
    }
}