org.apache.isis.testing.fixtures.applib.IsisIntegrationTestAbstractWithFixtures Maven / Gradle / Ivy
The newest version!
/*
* 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.isis.testing.fixtures.applib;
import javax.inject.Inject;
import org.junit.jupiter.api.AfterEach;
import org.junit.jupiter.api.BeforeEach;
import org.apache.isis.testing.fixtures.applib.fixturescripts.FixtureScript;
import org.apache.isis.testing.fixtures.applib.fixturescripts.FixtureScripts;
import org.apache.isis.testing.fixtures.applib.modules.ModuleWithFixturesService;
import org.apache.isis.testing.fixtures.applib.personas.BuilderScriptAbstract;
import org.apache.isis.testing.fixtures.applib.personas.PersonaWithBuilderScript;
import org.apache.isis.testing.integtestsupport.applib.IsisIntegrationTestAbstract;
/**
* @since 2.x {@index}
*/
public abstract class IsisIntegrationTestAbstractWithFixtures extends IsisIntegrationTestAbstract {
protected void run(final FixtureScript... fixtureScriptList) {
this.fixtureScripts.run(fixtureScriptList);
}
protected T runBuilder(final BuilderScriptAbstract fixtureScript) {
return this.fixtureScripts.runBuilder(fixtureScript);
}
protected void runPersonas(
@SuppressWarnings("unchecked") final PersonaWithBuilderScript, ? extends BuilderScriptAbstract>>... personaScripts) {
this.fixtureScripts.runPersonas(personaScripts);
}
protected T runPersona(final PersonaWithBuilderScript> personaScript) {
return this.fixtureScripts.runPersona(personaScript);
}
// -- DEPENDENCIES
@BeforeEach
protected void setupRefDataFixtures() {
fixtureScripts.run(moduleWithFixturesService.getRefDataSetupFixture());
}
@AfterEach
protected void tearDownFixtures() {
fixtureScripts.run(moduleWithFixturesService.getTeardownFixture());
}
@Inject protected ModuleWithFixturesService moduleWithFixturesService;
@Inject protected FixtureScripts fixtureScripts;
}