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

Source Code of com.eviware.soapui.impl.wsdl.actions.mockoperation.OpenRequestForMockOperationAction

/*
* 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.mockoperation;

import com.eviware.soapui.impl.wsdl.WsdlOperation;
import com.eviware.soapui.impl.wsdl.WsdlRequest;
import com.eviware.soapui.impl.wsdl.mock.WsdlMockOperation;
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 WsdlMockOperation
*
* @author ole.matzura
*/

public class OpenRequestForMockOperationAction extends AbstractSoapUIAction<WsdlMockOperation> {
    public static final String SOAPUI_ACTION_ID = "OpenRequestForMockOperationAction";

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

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

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

        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(mockOperation.getMockService().getLocalEndpoint());
            UISupport.selectAndShow(request);
        }
    }
}
TOP

Related Classes of com.eviware.soapui.impl.wsdl.actions.mockoperation.OpenRequestForMockOperationAction

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.