Skip to content

Commit

Permalink
SUREFIRE-1909 Support JUnit 5 reflection access by changing add-expor…
Browse files Browse the repository at this point in the history
…ts to add-opens

Signed-off-by: Nils Renaud <renaud.nils@gmail.com>
  • Loading branch information
NilsRenaud authored and Tibor17 committed Feb 17, 2022
1 parent 0f92105 commit 6b4ccdd
Show file tree
Hide file tree
Showing 7 changed files with 206 additions and 2 deletions.
Expand Up @@ -183,7 +183,7 @@ File createArgsFile( @Nonnull String moduleName, @Nonnull List<String> modulePat

for ( String pkg : packages )
{
args.append( "--add-exports" )
args.append( "--add-opens" )
.append( NL )
.append( moduleName )
.append( '/' )
Expand Down
Expand Up @@ -116,7 +116,7 @@ public void shouldCreateModularArgsFile() throws Exception
.isEqualTo( "abc=\"" + replace( patchFile.getPath(), "\\", "\\\\" ) + "\"" );

assertThat( argsFileLines.get( 6 ) )
.isEqualTo( "--add-exports" );
.isEqualTo( "--add-opens" );

assertThat( argsFileLines.get( 7 ) )
.isEqualTo( "abc/org.apache.abc=ALL-UNNAMED" );
Expand Down
@@ -0,0 +1,69 @@
package org.apache.maven.surefire.its;

/*
* 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.io.IOException;

import org.apache.maven.surefire.its.fixture.AbstractJava9PlusIT;
import org.junit.Test;

/**
*
*/
public class Junit5ModulePathIT
extends AbstractJava9PlusIT
{
private String suffix;

@Test
public void testModulePath()
throws IOException
{
assumeJava9()
.debugLogging()
.executeTest()
.verifyErrorFreeLog()
.assertTestSuiteResults( 2 );
}

@Test
public void testModulePathWithSpaces()
throws IOException
{
suffix = " with spaces";
assumeJava9()
.debugLogging()
.executeTest()
.verifyErrorFreeLog()
.assertTestSuiteResults( 2 );
}

@Override
protected String getProjectDirectoryName()
{
return "junit5-modulepath";
}

@Override
protected String getSuffix()
{
return suffix;
}
}
46 changes: 46 additions & 0 deletions surefire-its/src/test/resources/junit5-modulepath/pom.xml
@@ -0,0 +1,46 @@
<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>foo</groupId>
<artifactId>app</artifactId>
<version>1.0.0-SNAPSHOT</version>

<name>app</name>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.release>${java.specification.version}</maven.compiler.release>
</properties>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.10.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${surefire.version}</version>
</plugin>
</plugins>
</build>

<dependencies>
<dependency>
<groupId>joda-time</groupId>
<artifactId>joda-time</artifactId>
<version>2.9.9</version>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>5.6.2</version>
<scope>test</scope>
</dependency>
</dependencies>

</project>
@@ -0,0 +1,31 @@
package com.app;

/*
* 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.joda.time.DateTime;

public class Main
{
public static void main( String... args )
{
DateTime dt = new DateTime();
System.out.println( dt );
}
}
@@ -0,0 +1,21 @@
/*
* 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.
*/
module com.app {
requires joda.time;
}
@@ -0,0 +1,37 @@
package com.app;

/*
* 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.junit.jupiter.api.Test;

public class AppTest
{
@Test
void testNoop()
throws Exception
{
}

@Test
void testMain()
{
Main.main();
}
}

0 comments on commit 6b4ccdd

Please sign in to comment.