blob: 87c128bfc17ae44f198d9ad95bcefa2af0299af8 [file] [log] [blame]
/*
* Copyright (C) 2010 The Android Open Source Project
*
* Licensed 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 com.android.tradefed.config;
import com.android.tradefed.targetsetup.StubBuildProvider;
import java.io.ByteArrayOutputStream;
import java.io.PrintStream;
import junit.framework.TestCase;
/**
* Unit tests for {@link ConfigurationDef}
*/
public class ConfigurationDefTest extends TestCase {
private static final String CONFIG_NAME = "name";
private static final String CONFIG_DESCRIPTION = "config description";
private static final String OPTION_VALUE = "val";
private static final String OPTION_NAME = "option";
private static final String OPTION_DESCRIPTION = "option description";
public static class OptionTest extends StubBuildProvider {
@Option(name=OPTION_NAME, description=OPTION_DESCRIPTION)
private String mOption = null;
}
private ConfigurationDef mConfigDef;
@Override
protected void setUp() throws Exception {
super.setUp();
mConfigDef = new ConfigurationDef(CONFIG_NAME);
mConfigDef.setDescription(CONFIG_DESCRIPTION);
mConfigDef.addConfigObjectDef(Configuration.BUILD_PROVIDER_NAME,
OptionTest.class.getName());
mConfigDef.addOptionDef(OPTION_NAME, OPTION_VALUE);
}
/**
* Test success case for {@link ConfigurationDef#createConfiguration()}.
*/
public void testCreateConfiguration() throws ConfigurationException {
IConfiguration config = mConfigDef.createConfiguration();
OptionTest test = (OptionTest)config.getBuildProvider();
assertEquals(OPTION_VALUE, test.mOption);
}
/**
* Basic test for {@link ConfigurationDef#printCommandUsage(java.io.PrintStream)}.
*/
public void testPrintCommandUsage() throws ConfigurationException {
// dump the print stream results to the ByteArrayOutputStream, so contents can be evaluated
ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
PrintStream mockPrintStream = new PrintStream(outputStream);
mConfigDef.printCommandUsage(mockPrintStream);
// verifying exact contents would be prone to high-maintenance, so instead, just validate
// all expected names are present
final String usageString = outputStream.toString();
assertTrue("Usage text does not contain config name", usageString.contains(CONFIG_NAME));
assertTrue("Usage text does not contain config description", usageString.contains(
CONFIG_DESCRIPTION));
assertTrue("Usage text does not contain object name", usageString.contains(
Configuration.BUILD_PROVIDER_NAME));
assertTrue("Usage text does not contain option name", usageString.contains(OPTION_NAME));
assertTrue("Usage text does not contain option description",
usageString.contains(OPTION_DESCRIPTION));
}
}