-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
17 changed files
with
1,139 additions
and
273 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
150 changes: 150 additions & 0 deletions
150
...lugin-testing-harness/src/main/java/org/apache/maven/api/di/testing/MavenDIExtension.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,150 @@ | ||
/* | ||
* 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. | ||
*/ | ||
package org.apache.maven.api.di.testing; | ||
|
||
import java.io.*; | ||
|
||
import org.apache.maven.di.Injector; | ||
import org.apache.maven.di.Key; | ||
import org.apache.maven.di.impl.DIException; | ||
import org.junit.jupiter.api.extension.AfterEachCallback; | ||
import org.junit.jupiter.api.extension.BeforeEachCallback; | ||
import org.junit.jupiter.api.extension.ExtensionContext; | ||
|
||
/** | ||
* This is a slightly modified version of the original plexus class | ||
* available at https://raw.githubusercontent.com/codehaus-plexus/plexus-containers/master/plexus-container-default/ | ||
* src/main/java/org/codehaus/plexus/PlexusTestCase.java | ||
* in order to migrate the tests to JUnit 4. | ||
* | ||
* @author Jason van Zyl | ||
* @author <a href="mailto:[email protected]">Trygve Laugstøl</a> | ||
* @author <a href="mailto:[email protected]">Michal Maczka</a> | ||
* @author Guillaume Nodet | ||
*/ | ||
public class MavenDIExtension implements BeforeEachCallback, AfterEachCallback { | ||
protected static ExtensionContext context; | ||
protected Injector injector; | ||
protected static String basedir; | ||
|
||
@Override | ||
public void beforeEach(ExtensionContext context) throws Exception { | ||
basedir = getBasedir(); | ||
|
||
setContext(context); | ||
|
||
getInjector().bindInstance((Class<Object>) context.getRequiredTestClass(), context.getRequiredTestInstance()); | ||
getInjector().injectInstance(context.getRequiredTestInstance()); | ||
} | ||
|
||
protected void setContext(ExtensionContext context) { | ||
this.context = context; | ||
} | ||
|
||
@SuppressWarnings("unchecked") | ||
protected void setupContainer() { | ||
try { | ||
injector = Injector.create(); | ||
injector.bindInstance(ExtensionContext.class, this.context); | ||
injector.discover(this.context.getRequiredTestClass().getClassLoader()); | ||
injector.bindInstance(Injector.class, injector); | ||
injector.bindInstance((Class) this.context.getRequiredTestClass(), this.context.getRequiredTestInstance()); | ||
} catch (Exception e) { | ||
throw new IllegalArgumentException("Failed to create DI injector.", e); | ||
} | ||
} | ||
|
||
@Override | ||
public void afterEach(ExtensionContext context) throws Exception { | ||
if (injector != null) { | ||
// TODO: implement | ||
// injector.dispose(); | ||
injector = null; | ||
} | ||
} | ||
|
||
public Injector getInjector() { | ||
if (injector == null) { | ||
setupContainer(); | ||
} | ||
|
||
return injector; | ||
} | ||
|
||
// ---------------------------------------------------------------------- | ||
// Container access | ||
// ---------------------------------------------------------------------- | ||
|
||
protected <T> T lookup(Class<T> componentClass) throws DIException { | ||
return getInjector().getInstance(componentClass); | ||
} | ||
|
||
protected <T> T lookup(Class<T> componentClass, String roleHint) throws DIException { | ||
return getInjector().getInstance(Key.ofType(componentClass, roleHint)); | ||
} | ||
|
||
protected <T> T lookup(Class<T> componentClass, Object qualifier) throws DIException { | ||
return getInjector().getInstance(Key.ofType(componentClass, qualifier)); | ||
} | ||
|
||
protected void release(Object component) throws DIException { | ||
// TODO: implement | ||
// getInjector().release(component); | ||
} | ||
|
||
// ---------------------------------------------------------------------- | ||
// Helper methods for sub classes | ||
// ---------------------------------------------------------------------- | ||
|
||
public static File getTestFile(String path) { | ||
return new File(getBasedir(), path); | ||
} | ||
|
||
public static File getTestFile(String basedir, String path) { | ||
File basedirFile = new File(basedir); | ||
|
||
if (!basedirFile.isAbsolute()) { | ||
basedirFile = getTestFile(basedir); | ||
} | ||
|
||
return new File(basedirFile, path); | ||
} | ||
|
||
public static String getTestPath(String path) { | ||
return getTestFile(path).getAbsolutePath(); | ||
} | ||
|
||
public static String getTestPath(String basedir, String path) { | ||
return getTestFile(basedir, path).getAbsolutePath(); | ||
} | ||
|
||
public static String getBasedir() { | ||
if (basedir != null) { | ||
return basedir; | ||
} | ||
|
||
basedir = System.getProperty("basedir"); | ||
|
||
if (basedir == null) { | ||
basedir = new File("").getAbsolutePath(); | ||
} | ||
|
||
return basedir; | ||
} | ||
} |
34 changes: 34 additions & 0 deletions
34
maven-plugin-testing-harness/src/main/java/org/apache/maven/api/di/testing/MavenDITest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
/* | ||
* 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. | ||
*/ | ||
package org.apache.maven.api.di.testing; | ||
|
||
import java.lang.annotation.ElementType; | ||
import java.lang.annotation.Retention; | ||
import java.lang.annotation.RetentionPolicy; | ||
import java.lang.annotation.Target; | ||
|
||
import org.junit.jupiter.api.extension.ExtendWith; | ||
|
||
/** | ||
* Plexus test | ||
*/ | ||
@Retention(RetentionPolicy.RUNTIME) | ||
@ExtendWith(MavenDIExtension.class) | ||
@Target(ElementType.TYPE) | ||
public @interface MavenDITest {} |
32 changes: 32 additions & 0 deletions
32
maven-plugin-testing-harness/src/main/java/org/apache/maven/api/plugin/testing/Basedir.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
/* | ||
* 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. | ||
*/ | ||
package org.apache.maven.api.plugin.testing; | ||
|
||
import java.lang.annotation.Inherited; | ||
import java.lang.annotation.Retention; | ||
import java.lang.annotation.RetentionPolicy; | ||
|
||
/** | ||
* Mojo parameters container | ||
*/ | ||
@Retention(RetentionPolicy.RUNTIME) | ||
@Inherited | ||
public @interface Basedir { | ||
String value() default ""; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.