From 8edb38fd2f91b177b2c7b91dec37974d55cd1a7a Mon Sep 17 00:00:00 2001 From: Benjamin Bentmann Date: Sat, 1 Aug 2009 15:13:04 +0000 Subject: [PATCH] [MNG-4273] [regression] Internal utility classes of core leak into plugin realm o Added IT git-svn-id: https://svn.apache.org/repos/asf/maven/core-integration-testing/trunk@799885 13f79535-47bb-0310-9956-ffa450edef68 --- .../apache/maven/it/IntegrationTestSuite.java | 1 + ...estrictedCoreRealmAccessForPluginTest.java | 64 +++++++++++++++++ .../src/test/resources/mng-4273/pom.xml | 69 +++++++++++++++++++ 3 files changed, 134 insertions(+) create mode 100644 its/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng4273RestrictedCoreRealmAccessForPluginTest.java create mode 100644 its/core-it-suite/src/test/resources/mng-4273/pom.xml 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 73672ac392..43abb6a11e 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 @@ -86,6 +86,7 @@ public class IntegrationTestSuite // suite.addTestSuite( MavenIT0109ReleaseUpdateTest.class ); // suite.addTestSuite( MavenIT0108SnapshotUpdateTest.class ); -- MNG-3137 + suite.addTestSuite( MavenITmng4273RestrictedCoreRealmAccessForPluginTest.class ); suite.addTestSuite( MavenITmng4270ArtifactHandlersFromPluginDepsTest.class ); suite.addTestSuite( MavenITmng4269BadReactorResolutionFromOutDirTest.class ); suite.addTestSuite( MavenITmng4262MakeLikeReactorDottedPathTest.class ); diff --git a/its/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng4273RestrictedCoreRealmAccessForPluginTest.java b/its/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng4273RestrictedCoreRealmAccessForPluginTest.java new file mode 100644 index 0000000000..0a7145fcf2 --- /dev/null +++ b/its/core-it-suite/src/test/java/org/apache/maven/it/MavenITmng4273RestrictedCoreRealmAccessForPluginTest.java @@ -0,0 +1,64 @@ +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.Properties; + +/** + * This is a test set for MNG-4273. + * + * @author Benjamin Bentmann + */ +public class MavenITmng4273RestrictedCoreRealmAccessForPluginTest + extends AbstractMavenIntegrationTestCase +{ + + public MavenITmng4273RestrictedCoreRealmAccessForPluginTest() + { + super( "[2.0.6,)" ); + } + + /** + * Verify that internal utility/implementation classes used by the Maven core do not leak into the plugin realm. + * Otherwise, we risk linkage errors when a plugin creates a custom class loader with parent-first delegation on + * top of the plugin realm because the custom class loader will prefer potentially incompatible classes from the + * core realm over classes from itself. + */ + public void testit() + throws Exception + { + File testDir = ResourceExtractor.simpleExtractResources( getClass(), "/mng-4273" ); + + Verifier verifier = new Verifier( testDir.getAbsolutePath() ); + verifier.setAutoclean( false ); + verifier.executeGoal( "validate" ); + verifier.verifyErrorFreeLog(); + verifier.resetStreams(); + + Properties props = verifier.loadProperties( "target/class.properties" ); + assertNull( props.getProperty( "org.codehaus.plexus.util.FileUtils$FilterWrapper" ) ); + assertNull( props.getProperty( "org.apache.xerces.util.ParserConfigurationSettings" ) ); + } + +} diff --git a/its/core-it-suite/src/test/resources/mng-4273/pom.xml b/its/core-it-suite/src/test/resources/mng-4273/pom.xml new file mode 100644 index 0000000000..4851c6d45a --- /dev/null +++ b/its/core-it-suite/src/test/resources/mng-4273/pom.xml @@ -0,0 +1,69 @@ + + + + + + 4.0.0 + + org.apache.maven.its.mng4273 + test + 0.1 + maven-plugin + + Maven Integration Test :: MNG-4273 + + Verify that internal utility/implementation classes used by the Maven core do not leak into the plugin realm. + Otherwise, we risk linkage errors when a plugin creates a custom class loader with parent-first delegation on + top of the plugin realm because the custom class loader will prefer potentially incompatible classes from the + core realm over classes from itself. + + + + + + org.apache.maven.its.plugins + maven-it-plugin-class-loader + 2.1-SNAPSHOT + + target/class.properties + + org.codehaus.plexus.util.FileUtils$FilterWrapper,org.apache.xerces.util.ParserConfigurationSettings + + + + test + validate + + load-dependencies + + + + + + +