Package com.eviware.soapui.impl.wsdl.panels.teststeps.amf

Source Code of com.eviware.soapui.impl.wsdl.panels.teststeps.amf.AMFTestRunListener

/*
* 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.panels.teststeps.amf;

import com.eviware.soapui.SoapUI;
import com.eviware.soapui.impl.wsdl.testcase.WsdlTestCase;
import com.eviware.soapui.impl.wsdl.teststeps.AMFRequestTestStep;
import com.eviware.soapui.model.testsuite.TestCaseRunContext;
import com.eviware.soapui.model.testsuite.TestCaseRunner;
import com.eviware.soapui.model.testsuite.TestRunListener;
import com.eviware.soapui.model.testsuite.TestStep;
import com.eviware.soapui.model.testsuite.TestStepResult;
import com.eviware.soapui.support.StringUtils;

import flex.messaging.io.amf.client.exceptions.ClientStatusException;
import flex.messaging.io.amf.client.exceptions.ServerStatusException;

public class AMFTestRunListener implements TestRunListener {
    private AMFCredentials amfCredentials;

    public void afterRun(TestCaseRunner testRunner, TestCaseRunContext runContext) {
        if (amfCredentials != null && runContext.getProperty(AMFSubmit.AMF_CONNECTION) != null
                && runContext.getProperty(AMFSubmit.AMF_CONNECTION) instanceof SoapUIAMFConnection) {
            if (amfCredentials.isLoggedIn()) {
                amfCredentials.logout();
            }
        }
    }

    public void beforeRun(TestCaseRunner testRunner, TestCaseRunContext runContext) {
        if (testRunner.getTestCase() instanceof WsdlTestCase) {
            try {
                WsdlTestCase wsdlTestCase = (WsdlTestCase) testRunner.getTestCase();

                if (wsdlTestCase.getConfig().getAmfAuthorisation()) {
                    if (noAMFTestSteps(wsdlTestCase)) {
                        return;
                    }

                    String endpoint = runContext.expand(wsdlTestCase.getConfig().getAmfEndpoint());
                    String username = runContext.expand(wsdlTestCase.getConfig().getAmfLogin());
                    String password = runContext.expand(wsdlTestCase.getConfig().getAmfPassword());

                    SoapUIAMFConnection amfConnection = null;

                    if (StringUtils.hasContent(endpoint)) {
                        if (StringUtils.hasContent(username)) {
                            amfCredentials = new AMFCredentials(endpoint, username, password, runContext);
                            amfConnection = amfCredentials.login();
                        } else {
                            amfConnection = new SoapUIAMFConnection();
                            amfConnection.connect(runContext.expand(endpoint));
                        }

                        runContext.setProperty(AMFSubmit.AMF_CONNECTION, amfConnection);
                    }
                }
            } catch (ClientStatusException e) {
                SoapUI.logError(e);
            } catch (ServerStatusException e) {
                SoapUI.logError(e);
            }
        }
    }

    /**
     * check if there is no amf test steps in test case then disable amf
     * authorisation and return true otherwise return false
     *
     * @param wsdlTestCase
     * @return boolean
     */
    private static boolean noAMFTestSteps(WsdlTestCase wsdlTestCase) {
        if (wsdlTestCase.getTestStepsOfType(AMFRequestTestStep.class).isEmpty()) {
            // wsdlTestCase.getConfig().setAmfAuthorisation( false );
            // SoapUI.log( wsdlTestCase.getName()
            // +
            // " does not contain any AMF Test Step therefore AMF Authorisation is disabled!"
            // );
            return true;
        }
        return false;
    }

    public void beforeStep(TestCaseRunner testRunner, TestCaseRunContext runContext) {
    }

    public void beforeStep(TestCaseRunner testRunner, TestCaseRunContext runContext, TestStep testStep) {
    }

    public void afterStep(TestCaseRunner testRunner, TestCaseRunContext runContext, TestStepResult result) {
    }
}
TOP

Related Classes of com.eviware.soapui.impl.wsdl.panels.teststeps.amf.AMFTestRunListener

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.