Document Properties
Kbid
Z28636
Last Modified
04-Feb-2020
Added to KB
05-Jun-2018
Public Access
Everyone
Status
Online
Doc Type
Guidelines
Product
ICM 7.10
Guide - 7.10 Migration PipelineRule

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 Web site, including, without limitation, any lost profits, business interruption, loss of programs or other data on your information handling system.
The Intershop Knowledge Portal uses only technically necessary cookies. We do not track visitors or have visitors tracked by 3rd parties. Please find further information on privacy in the Intershop Privacy Policy and Legal Notice.
Home
Knowledge Base
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.