Author: dfabulich Date: Fri Nov 23 09:07:15 2007 New Revision: 597704 URL: http://svn.apache.org/viewvc?rev=597704&view=rev Log: [SUREFIRE-100] [SUREFIRE-308] Environment variable test; passes.
Added: maven/surefire/trunk/surefire-integration-tests/src/test/java/org/apache/maven/surefire/its/EnvironmentVariableTest.java maven/surefire/trunk/surefire-integration-tests/src/test/resources/junit44-environment/ maven/surefire/trunk/surefire-integration-tests/src/test/resources/junit44-environment/pom.xml maven/surefire/trunk/surefire-integration-tests/src/test/resources/junit44-environment/src/ maven/surefire/trunk/surefire-integration-tests/src/test/resources/junit44-environment/src/test/ maven/surefire/trunk/surefire-integration-tests/src/test/resources/junit44-environment/src/test/java/ maven/surefire/trunk/surefire-integration-tests/src/test/resources/junit44-environment/src/test/java/BasicTest.java Added: maven/surefire/trunk/surefire-integration-tests/src/test/java/org/apache/maven/surefire/its/EnvironmentVariableTest.java URL: http://svn.apache.org/viewvc/maven/surefire/trunk/surefire-integration-tests/src/test/java/org/apache/maven/surefire/its/EnvironmentVariableTest.java?rev=597704&view=auto ============================================================================== --- maven/surefire/trunk/surefire-integration-tests/src/test/java/org/apache/maven/surefire/its/EnvironmentVariableTest.java (added) +++ maven/surefire/trunk/surefire-integration-tests/src/test/java/org/apache/maven/surefire/its/EnvironmentVariableTest.java Fri Nov 23 09:07:15 2007 @@ -0,0 +1,30 @@ +package org.apache.maven.surefire.its; + +import java.io.File; + +import org.apache.maven.integrationtests.AbstractMavenIntegrationTestCase; +import org.apache.maven.it.Verifier; +import org.apache.maven.it.util.ResourceExtractor; + +/** + * Test basic default configuration, runs the JUnit 3 test in the src/test directory. + * + * @author <a href="mailto:[EMAIL PROTECTED]">Dan Fabulich</a> + * + */ +public class EnvironmentVariableTest + extends AbstractMavenIntegrationTestCase +{ + public void testEnvironmentVariable () + throws Exception + { + File testDir = ResourceExtractor.simpleExtractResources( getClass(), "/junit44-environment" ); + + Verifier verifier = new Verifier( testDir.getAbsolutePath() ); + verifier.executeGoal( "test" ); + verifier.verifyErrorFreeLog(); + verifier.resetStreams(); + + HelperAssertions.assertTestSuiteResults( 1, 0, 0, 0, testDir ); + } +} Added: maven/surefire/trunk/surefire-integration-tests/src/test/resources/junit44-environment/pom.xml URL: http://svn.apache.org/viewvc/maven/surefire/trunk/surefire-integration-tests/src/test/resources/junit44-environment/pom.xml?rev=597704&view=auto ============================================================================== --- maven/surefire/trunk/surefire-integration-tests/src/test/resources/junit44-environment/pom.xml (added) +++ maven/surefire/trunk/surefire-integration-tests/src/test/resources/junit44-environment/pom.xml Fri Nov 23 09:07:15 2007 @@ -0,0 +1,61 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + ~ 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. + --> + +<project xmlns="http://maven.apache.org/POM/4.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> + <modelVersion>4.0.0</modelVersion> + + <groupId>org.apache.maven.plugins.surefire</groupId> + <artifactId>junit44-environment</artifactId> + <version>1.0-SNAPSHOT</version> + <name>Test for setting environment variables</name> + + <dependencies> + <dependency> + <groupId>junit</groupId> + <artifactId>junit</artifactId> + <version>4.4</version> + <scope>test</scope> + </dependency> + </dependencies> + + <build> + <plugins> + <plugin> + <artifactId>maven-surefire-plugin</artifactId> + <configuration> + <environmentVariables> + <DUMMY_ENV_VAR>foo</DUMMY_ENV_VAR> + </environmentVariables> + </configuration> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <configuration> + <source>1.5</source> + <target>1.5</target> + </configuration> + </plugin> + </plugins> + </build> + +</project> Added: maven/surefire/trunk/surefire-integration-tests/src/test/resources/junit44-environment/src/test/java/BasicTest.java URL: http://svn.apache.org/viewvc/maven/surefire/trunk/surefire-integration-tests/src/test/resources/junit44-environment/src/test/java/BasicTest.java?rev=597704&view=auto ============================================================================== --- maven/surefire/trunk/surefire-integration-tests/src/test/resources/junit44-environment/src/test/java/BasicTest.java (added) +++ maven/surefire/trunk/surefire-integration-tests/src/test/resources/junit44-environment/src/test/java/BasicTest.java Fri Nov 23 09:07:15 2007 @@ -0,0 +1,19 @@ +import static org.hamcrest.core.Is.*; +import static org.hamcrest.core.IsNull.*; +import org.junit.Assert; +import org.junit.Test; + + +public class BasicTest +{ + + + @Test + public void testEnvVar() + { + Assert.assertThat( System.getenv( "PATH" ), notNullValue() ); + Assert.assertThat( System.getenv( "DUMMY_ENV_VAR" ), is( "foo" ) ); + } + + +}