-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
New extension with test templates #2970
Comments
Hey @svenkost, I think I finally figured out what you want to do! If I understood correctly, you want to supply your test with values you store in your @ServiceName("myservice")
@ExtendWith(ConsulExtension.class)
@Execution(ExecutionMode.CONCURRENT)
class ExtensionTest {
private static final Logger logger = LoggerFactory.getLogger(ExtensionTest);
@TestTemplate
public void myTestTemplate(Machine machine) {
final long wait = Math.round(Math.random() * 3_000d) + 1_000L;
logger.info("TestTemplate test " + machine + " class = " + this + ": waiting " + wait + " ms");
try {
Thread.sleep(wait);
} catch (final InterruptedException ignored) {
}
}
} Then in your public class ConsulTestTemplateInvocationContext {
private final Machine machine;
// constructor, other methods, etc.
@Override
@Override
public List<Extension> getAdditionalExtensions() {
return Arrays.asList(new ParameterResolver() {
@Override
public boolean supportsParameter(ParameterContext parameterContext, ExtensionContext extensionContext) throws ParameterResolutionException {
return parameterContext.getParameter().getType().equals(Machine.class);
}
@Override
public Object resolveParameter(ParameterContext parameterContext, ExtensionContext extensionContext) throws ParameterResolutionException {
return ConsultTestTemplateInvocationContext.this.machine;
}
});
}
} Does this help with your problem? |
Duplicate of #3445 |
I'm creating an extension for running tests to different instances.
The test class has an annotation that has all information to discover which instances should be tested. The annotation is a consul service name. I discover all the instances with the
BeforeAllCallback
and save them for later in the store that is in theExtensionContext
. (step 1)The test class has a
@TestTemplate
test. With theTestTemplateInvocationContextProvider
I generate a stream ofTestTemplateInvocationContext
Objects. In the object I have overridden thegetDisplayName(final int invocationIndex)
. The stream is based on the list of environments I have created in step 1. (Let's call this step 2).Then what happens is that the class will be instantiated with the
TestInstanceFactory
interface. The methodcreateTestInstance(TestInstanceFactoryContext factoryContext, ExtensionContext extensionContext)
is called; but here starts the problem: I have no indication for which test-(template-)instance the class is instantiated, so I have no reference for which environment this object is instantiated. (Step 3). I need to know why the object is to be instantiated, so I can call the constructor with the consul-information from step 1.At first I made a 'dirty hack' to just have an internal counter to give every construction another environment; which works okay for 1
@TestTemplate
, but if you have more than one and do it multithreaded, the environments are divided totally wrong: Test1-Env1 gets Env1, Test2-Env1 get Env2, Test2-Env2 gets Env3, Test1-Env2 gets Env4.To run the test I use
interceptTestTemplateMethod(Invocation<Void> invocation, ReflectiveInvocationContext<Method> invocationContext, ExtensionContext extensionContext)
because I need to have initialization around the actual run of the test method.What I need and can't find is that I need some sort of connection between the stream of tests that are created in step 2 and the construction of the test object for that specific test in step 3.
Deliverables
The text was updated successfully, but these errors were encountered: