From 752d0c13a52a47d4637dbcbd2c78841ab113da05 Mon Sep 17 00:00:00 2001 From: Oleg Gusakov Date: Tue, 27 Jan 2009 03:17:18 +0000 Subject: [PATCH] [MNG-553] added IT for testing password encryption. Encryption code is in 2.1.x trunk git-svn-id: https://svn.apache.org/repos/asf/maven/core-integration-testing/trunk@737985 13f79535-47bb-0310-9956-ffa450edef68 --- .../apache/maven/it/IntegrationTestSuite.java | 1 + ...nITmng0553SettingsAuthzEncryptionTest.java | 63 +++++++++++++++++++ 2 files changed, 64 insertions(+) create mode 100644 its/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng0553SettingsAuthzEncryptionTest.java diff --git a/its/core-it-suite/src/test/java/org/apache/maven/it/IntegrationTestSuite.java b/its/core-it-suite/src/test/java/org/apache/maven/it/IntegrationTestSuite.java index f63d06f28c..e42d58e10e 100644 --- a/its/core-it-suite/src/test/java/org/apache/maven/it/IntegrationTestSuite.java +++ b/its/core-it-suite/src/test/java/org/apache/maven/it/IntegrationTestSuite.java @@ -269,6 +269,7 @@ public class IntegrationTestSuite suite.addTestSuite( MavenITmng0674PluginParameterAliasTest.class ); suite.addTestSuite( MavenITmng0666IgnoreLegacyPomTest.class ); suite.addTestSuite( MavenITmng0557UserSettingsCliOptionTest.class ); + suite.addTestSuite( MavenITmng0553SettingsAuthzEncryptionTest.class ); suite.addTestSuite( MavenITmng0522PluginMgmtConfigTest.class ); suite.addTestSuite( MavenITmng0507ArtifactRelocationTest.class ); suite.addTestSuite( MavenITmng0505VersionRangeTest.class ); diff --git a/its/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng0553SettingsAuthzEncryptionTest.java b/its/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng0553SettingsAuthzEncryptionTest.java new file mode 100644 index 0000000000..a6cdfbcb11 --- /dev/null +++ b/its/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng0553SettingsAuthzEncryptionTest.java @@ -0,0 +1,63 @@ +package org.apache.maven.it; + +/* + * 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. + */ + +import org.apache.maven.it.Verifier; +import org.apache.maven.it.util.ResourceExtractor; + +import java.io.File; +import java.util.ArrayList; +import java.util.List; +import java.util.Properties; + +public class MavenITmng0553SettingsAuthzEncryptionTest + extends AbstractMavenIntegrationTestCase +{ + public MavenITmng0553SettingsAuthzEncryptionTest() + { + super( "(2.0.9,2.1.0-M1),(2.1.0-M1,2.1.99)" ); // 2.0.10+, excluding 2.1.0-M1 + } + + /** + * Test that the encrypted auth infos given in the settings.xml are decrypted. + */ + public void testit0553() + throws Exception + { + File testDir = ResourceExtractor.simpleExtractResources( getClass(), "/mng-0553" ); + + Verifier verifier = new Verifier( testDir.getAbsolutePath() ); + verifier.setAutoclean( false ); + verifier.deleteDirectory( "target" ); + List cliOptions = new ArrayList(); + cliOptions.add( "--settings" ); + cliOptions.add( "settings.xml" ); + cliOptions.add( "-Dmaven.sec.path=sec.xml" ); + verifier.setCliOptions( cliOptions ); + verifier.executeGoal( "validate" ); + verifier.verifyErrorFreeLog(); + verifier.resetStreams(); + + Properties props = verifier.loadProperties( "target/auth.properties" ); + assertEquals( "testuser", props.getProperty( "test.username" ) ); + assertEquals( "testtest", props.getProperty( "test.password" ) ); + } + +}