Package com.github.overengineer.scope.testutil

Source Code of com.github.overengineer.scope.testutil.StrutsScopeTestCase

package com.github.overengineer.scope.testutil;

import java.util.Map;

import com.github.overengineer.scope.conversation.ConversationAdapter;
import com.github.overengineer.scope.conversation.context.ConversationContext;
import com.github.overengineer.scope.struts2.test.ScopeTestUtil;
import com.google.code.struts2.test.junit.StrutsTest;
import com.opensymphony.xwork2.ActionInvocation;

/**
* @author rees.byars
*/
public abstract class StrutsScopeTestCase<T> extends StrutsTest<T> {

    @Override
    public void beforeResult(ActionInvocation invocation, String resultCode) {
        final ConversationAdapter adapter = ConversationAdapter.getAdapter();
        ;
        ConversationAdapter.setAdapter(new ConversationAdapter() {

            private static final long serialVersionUID = 1L;

            @Override
            public Object getAction() {
                return adapter.getAction();
            }

            @Override
            public String getActionId() {
                return adapter.getActionId();
            }

            @Override
            public Map<String, Object> getActionContext() {
                return adapter.getActionContext();
            }

            @Override
            public Map<String, String> getRequestContext() {
                return adapter.getRequestContext();
            }

            @Override
            public ConversationContext beginConversation(
                    String conversationName, long maxIdleTimeMillis, int maxInstances) {
                return adapter.beginConversation(conversationName, maxIdleTimeMillis, maxInstances);
            }

            @Override
            public ConversationContext getConversationContext(
                    String conversationName, String conversationId) {
                return adapter.getConversationContext(conversationName, conversationId);
            }

            @Override
            public ConversationContext endConversation(String conversationName,
                                                       String conversationId) {
                return adapter.endConversation(conversationName, conversationId);
            }

            @Override
            public void doCleanup() {
                conversationAdapter.set(adapter);
            }

        });
    }

    @Override
    public void afterProxyExecution(ActionInvocation invocation, String result) {
        ScopeTestUtil.injectScopeFields(this);
        super.afterProxyExecution(invocation, result);
    }
}
TOP

Related Classes of com.github.overengineer.scope.testutil.StrutsScopeTestCase

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.