Development Documents
04-Feb-2020
Guide - 7.10 Migration PipelineRule
Document Properties
Kbid
Z28636
Added to KB
05-Jun-2018
Status
online
Product
ICM 7.10
Last Modified
04-Feb-2020
Public Access
everyone
Doc Type
Guidelines
Document Link
https://knowledge.intershop.com/kb/Z28636

Introduction

In the previous version, the PipelineRule only requires the EmbeddedServerRule as a prerequisite. The PipelineRule itself creates a test site and application context. This leads to conflicts when you try to combine these test rules with other rules that create an application context as well.

To prevent this, this part of the application context creation is no longer available.

New PipelineRule Usage

To create a PipelineRule use this approach:

    public final EmbeddedServerRule server = new EmbeddedServerRule(this);
    private DomainCreatorRule domainCreatorRule = DomainCreatorRule.site().build(this);
    private PipelineRule pipelineRule = PipelineRule.builder().build();
    @Rule
    public RuleChain ruleChain = RuleChain.outerRule(server).around(domainCreatorRule).around(pipelineRule);

Just add the DomainCreatorRule to the rule chain.

Note

Do not forget to add the @ForceApplicationRule to the test method or test class.
Disclaimer

The information provided in the Knowledge Base may not be applicable to all systems and situations. Intershop Communications will not be liable to any party for any direct or indirect damages resulting from the use of the Customer Support section of the Intershop Corporate Website, including, without limitation, any lost profits, business interruption, loss of programs or other data on your information handling system.

Home
Knowledge Base
User Manuals
Product Releases
Log on to continue
This Knowledge Base document is reserved for registered customers.
Log on with your Intershop Entra ID to continue.
Write an email to supportadmin@intershop.de if you experience login issues,
or if you want to register as customer.