View Javadoc
1   /*
2    * Licensed to the Apache Software Foundation (ASF) under one
3    * or more contributor license agreements.  See the NOTICE file
4    * distributed with this work for additional information
5    * regarding copyright ownership.  The ASF licenses this file
6    * to you under the Apache License, Version 2.0 (the
7    * "License"); you may not use this file except in compliance
8    * with the License.  You may obtain a copy of the License at
9    *
10   *   http://www.apache.org/licenses/LICENSE-2.0
11   *
12   * Unless required by applicable law or agreed to in writing,
13   * software distributed under the License is distributed on an
14   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15   * KIND, either express or implied.  See the License for the
16   * specific language governing permissions and limitations
17   * under the License.
18   */
19  package org.apache.maven.surefire.booter;
20  
21  import java.io.File;
22  import java.net.URL;
23  
24  import org.apache.maven.surefire.api.provider.AbstractProvider;
25  import org.apache.maven.surefire.shared.utils.io.FileUtils;
26  import org.junit.Before;
27  import org.junit.Test;
28  
29  import static java.io.File.pathSeparator;
30  import static org.hamcrest.CoreMatchers.is;
31  import static org.hamcrest.CoreMatchers.not;
32  import static org.hamcrest.CoreMatchers.notNullValue;
33  import static org.hamcrest.MatcherAssert.assertThat;
34  
35  /**
36   * Tests isolated CL.
37   */
38  public class IsolatedClassLoaderTest {
39      private IsolatedClassLoader classLoader;
40  
41      @Before
42      public void prepareClassLoader() throws Exception {
43          classLoader = new IsolatedClassLoader(null, false, "role");
44  
45          String[] files = FileUtils.fileRead(new File("target/test-classpath/cp.txt"), "UTF-8")
46                  .split(pathSeparator);
47  
48          for (String file : files) {
49              URL fileUrl = new File(file).toURI().toURL();
50              classLoader.addURL(fileUrl);
51          }
52      }
53  
54      @Test
55      public void shouldLoadIsolatedClass() throws Exception {
56          Class<?> isolatedClass = classLoader.loadClass(AbstractProvider.class.getName());
57          assertThat(isolatedClass, is(notNullValue()));
58          assertThat(isolatedClass.getName(), is(AbstractProvider.class.getName()));
59          assertThat(isolatedClass, is(not((Class) AbstractProvider.class)));
60      }
61  }