Guide - 7.10 Migration PipelineRule

Table of Contents

Product Version

7.10

Product To Version

7.10
Status

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 Customer 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.
Customer Support
Knowledge Base
Product Resources