Package com.eviware.soapui.impl.wsdl.actions.mockresponse

Source Code of com.eviware.soapui.impl.wsdl.actions.mockresponse.OpenRequestForMockResponseAction

/*
* 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.impl.wsdl.actions.mockresponse;

import com.eviware.soapui.impl.wsdl.WsdlOperation;
import com.eviware.soapui.impl.wsdl.WsdlRequest;
import com.eviware.soapui.impl.wsdl.mock.WsdlMockResponse;
import com.eviware.soapui.model.support.ModelSupport;
import com.eviware.soapui.settings.WsdlSettings;
import com.eviware.soapui.support.UISupport;
import com.eviware.soapui.support.action.support.AbstractSoapUIAction;

/**
* Prompts to open an existing request for the specified WsdlMockResponse
*
* @author ole.matzura
*/

public class OpenRequestForMockResponseAction extends AbstractSoapUIAction<WsdlMockResponse> {
    public static final String SOAPUI_ACTION_ID = "OpenRequestForMockResponseAction";

    public OpenRequestForMockResponseAction() {
        super("Open Request", "Opens/Creates a request for this MockResponse with correct endpoint");
    }

    public void perform(WsdlMockResponse mockResponse, Object param) {
        WsdlOperation operation = mockResponse.getMockOperation().getOperation();
        if (operation == null) {
            UISupport.showErrorMessage("Missing operation for this mock response");
            return;
        }

        String[] names = ModelSupport.getNames(operation.getRequestList(), new String[]{"-> Create New"});

        if (operation.getInterface().getProject().isEnvironmentMode()) {
            UISupport.showInfoMessage("Do you wish to activate the Default Environment?");
        } else {
            String name = (String) UISupport.prompt("Select Request for Operation [" + operation.getName() + "] "
                    + "to open or create", "Open Request", names);
            if (name != null) {
                WsdlRequest request = operation.getRequestByName(name);
                if (request == null) {
                    name = UISupport.prompt("Specify name of new request", "Open Request",
                            "Request " + (operation.getRequestCount() + 1));
                    if (name == null) {
                        return;
                    }

                    boolean createOptional = operation.getSettings().getBoolean(
                            WsdlSettings.XML_GENERATION_ALWAYS_INCLUDE_OPTIONAL_ELEMENTS);
                    if (!createOptional) {
                        createOptional = UISupport.confirm("Create optional elements from schema?", "Create Request");
                    }

                    request = operation.addNewRequest(name);
                    String requestContent = operation.createRequest(createOptional);
                    if (requestContent != null) {
                        request.setRequestContent(requestContent);
                    }
                }

                request.setEndpoint(mockResponse.getMockOperation().getMockService().getLocalEndpoint());
                UISupport.selectAndShow(request);
            }
        }
    }
}
TOP

Related Classes of com.eviware.soapui.impl.wsdl.actions.mockresponse.OpenRequestForMockResponseAction

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.