Skip to content

Commit

Permalink
Squashed commit of the following:
Browse files Browse the repository at this point in the history
commit c829bdc
Author: rfscholte <rfscholte@apache.org>
Date:   Thu Aug 24 10:54:08 2017 +0200

    [MNG-6275] ServiceLoaderFactory can't find implementations via ClassRealm
  • Loading branch information
rfscholte committed Aug 24, 2017
1 parent 785bad6 commit f047ea1
Show file tree
Hide file tree
Showing 2 changed files with 102 additions and 1 deletion.
Expand Up @@ -120,7 +120,7 @@ private ClassRealm newRealm( String id )
{
try
{
ClassRealm classRealm = world.newRealm( realmId, null );
ClassRealm classRealm = world.newRealm( realmId, ClassLoader.getSystemClassLoader() );

if ( logger.isDebugEnabled() )
{
Expand Down
@@ -0,0 +1,101 @@
package org.apache.maven.classrealm;

/*
* 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 java.util.ServiceLoader;

import javax.script.ScriptEngineFactory;

import org.apache.maven.model.Model;
import org.apache.maven.model.Plugin;
import org.codehaus.plexus.ContainerConfiguration;
import org.codehaus.plexus.PlexusConstants;
import org.codehaus.plexus.PlexusTestCase;
import org.codehaus.plexus.classworlds.realm.ClassRealm;
import org.junit.Test;

public class DefaultClassRealmManagerTest extends PlexusTestCase
{
private ClassRealmManager classRealmManager;

@Override
protected void setUp()
throws Exception
{
super.setUp();
this.classRealmManager = lookup( ClassRealmManager.class );
}

@Override
protected void customizeContainerConfiguration( ContainerConfiguration configuration )
{
configuration.setClassPathScanning( PlexusConstants.SCANNING_INDEX );
}

@Test
public void testMNG6275_pluginRealmDefaultParentClassLoader()
{
Plugin plugin = new Plugin();
plugin.setVersion( "VERSION" );

ClassLoader parent = null;

ClassRealm pluginRealm = classRealmManager.createPluginRealm( plugin, parent, null, null, null );
ServiceLoader<ScriptEngineFactory> sef = ServiceLoader.load( ScriptEngineFactory.class, pluginRealm );
assertTrue( sef.iterator().hasNext() );
}

@Test
public void testMNG6275_extensionRealmDefaultParentClassLoader()
{
Plugin extension = new Plugin();
extension.setVersion( "VERSION" );

ClassRealm extensionRealm = classRealmManager.createExtensionRealm( extension, null );
ServiceLoader<ScriptEngineFactory> sef = ServiceLoader.load( ScriptEngineFactory.class, extensionRealm );
assertTrue( sef.iterator().hasNext() );
}

@Test
public void testMNG6275_projectRealmDefaultParentClassLoader()
{
Model model = new Model();

ClassRealm projectRealm = classRealmManager.createProjectRealm( model, null );
ServiceLoader<ScriptEngineFactory> sef = ServiceLoader.load( ScriptEngineFactory.class, projectRealm );
assertTrue( sef.iterator().hasNext() );
}

@Test
public void testMNG6275_mavenApiRealmDefaultParentClassLoader()
{
ClassRealm mavenApiRealm = classRealmManager.getMavenApiRealm();
ServiceLoader<ScriptEngineFactory> sef = ServiceLoader.load( ScriptEngineFactory.class, mavenApiRealm );
assertTrue( sef.iterator().hasNext() );
}

@Test
public void testMNG6275_coreRealmDefaultParentClassLoader()
{
ClassRealm coreRealm = classRealmManager.getCoreRealm();
ServiceLoader<ScriptEngineFactory> sef = ServiceLoader.load( ScriptEngineFactory.class, coreRealm );
assertTrue( sef.iterator().hasNext() );
}
}

0 comments on commit f047ea1

Please sign in to comment.