Package com.eviware.soapui.support.dnd.handlers

Source Code of com.eviware.soapui.support.dnd.handlers.MockResponseToTestCaseDropHandler

/*
* Copyright 2004-2014 SmartBear Software
*
* Licensed under the EUPL, Version 1.1 or - as soon as they will be approved by the European Commission - subsequent
* versions of the EUPL (the "Licence");
* You may not use this work except in compliance with the Licence.
* You may obtain a copy of the Licence at:
*
* http://ec.europa.eu/idabc/eupl
*
* Unless required by applicable law or agreed to in writing, software distributed under the Licence is
* distributed on an "AS IS" basis, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the Licence for the specific language governing permissions and limitations
* under the Licence.
*/

package com.eviware.soapui.support.dnd.handlers;

import com.eviware.soapui.SoapUI;
import com.eviware.soapui.impl.wsdl.actions.mockresponse.AddMockResponseToTestCaseAction;
import com.eviware.soapui.impl.wsdl.mock.WsdlMockResponse;
import com.eviware.soapui.impl.wsdl.testcase.WsdlTestCase;
import com.eviware.soapui.support.action.SoapUIAction;

public class MockResponseToTestCaseDropHandler extends
        AbstractAfterModelItemDropHandler<WsdlMockResponse, WsdlTestCase> {
    public MockResponseToTestCaseDropHandler() {
        super(WsdlMockResponse.class, WsdlTestCase.class);
    }

    @Override
    boolean canCopyAfter(WsdlMockResponse source, WsdlTestCase target) {
        return source.getMockOperation().getMockService().getProject() == target.getTestSuite().getProject();
    }

    @Override
    boolean canMoveAfter(WsdlMockResponse source, WsdlTestCase target) {
        return canCopyAfter(source, target);
    }

    @Override
    boolean copyAfter(WsdlMockResponse source, WsdlTestCase target) {
        SoapUIAction<WsdlMockResponse> action = SoapUI.getActionRegistry().getAction(
                AddMockResponseToTestCaseAction.SOAPUI_ACTION_ID);
        AddMockResponseToTestCaseAction a = (AddMockResponseToTestCaseAction) action;

        a.addMockResponseToTestCase(source, target, -1);
        return true;
    }

    @Override
    boolean moveAfter(WsdlMockResponse source, WsdlTestCase target) {
        return copyAfter(source, target);
    }

    @Override
    String getCopyAfterInfo(WsdlMockResponse source, WsdlTestCase target) {
        return "Add MockResponse TestStep to TestCase [" + target.getName() + "]";
    }

    @Override
    String getMoveAfterInfo(WsdlMockResponse source, WsdlTestCase target) {
        return getCopyAfterInfo(source, target);
    }
}
TOP

Related Classes of com.eviware.soapui.support.dnd.handlers.MockResponseToTestCaseDropHandler

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.