Package org.wso2.carbon.esb.samples

Source Code of org.wso2.carbon.esb.samples.SampleTestTemplate

/*
*  Copyright (c) WSO2 Inc. (http://wso2.com) All Rights Reserved.

  WSO2 Inc. licenses this file to you under the Apache License,
*  Version 2.0 (the "License"); you may not use this file except
*  in compliance with the License.
*  You may obtain a copy of the License at

  http://www.apache.org/licenses/LICENSE-2.0

  Unless required by applicable law or agreed to in writing,
*  software distributed under the License is distributed on an
*  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
*  KIND, either express or implied.  See the License for the
*  specific language governing permissions and limitations
*  under the License.
*
*/

package org.wso2.carbon.esb.samples;

import org.apache.axiom.om.OMElement;
import org.apache.axis2.AxisFault;
import org.apache.commons.logging.Log;
import org.apache.commons.logging.LogFactory;
import org.wso2.carbon.integration.core.AuthenticateStub;
import org.wso2.carbon.integration.core.FrameworkSettings;
import org.wso2.carbon.integration.core.TestTemplate;
import org.wso2.carbon.integration.core.utils.ArtifactReader;
import org.wso2.carbon.mediation.configadmin.stub.ConfigServiceAdminStub;

import java.io.File;

public abstract class SampleTestTemplate extends TestTemplate {
    private static final Log log = LogFactory.getLog(SampleTestTemplate.class);

    int sampleNo;
    OMElement configOMElement;
    OMElement defaultConfigOMElement;
    String clientLog = "";

    @Override
    public void init() {
        AuthenticateStub authenticateStub = new AuthenticateStub();
        ConfigServiceAdminStub configServiceAdminStub = null;
        try {
            configServiceAdminStub = new ConfigServiceAdminStub("https://" + FrameworkSettings.HOST_NAME + ":" + FrameworkSettings.HTTPS_PORT + "/services/ConfigServiceAdmin");
        } catch (AxisFault axisFault) {
            axisFault.printStackTrace();
        }
        authenticateStub.authenticateAdminStub(configServiceAdminStub, sessionCookie);
        ArtifactReader artifactReader = new ArtifactReader();
        FrameworkSettings.getProperty();
        setSampleNo();

        System.out.println("Running Sample" + sampleNo);
        log.info("Running Sample" + sampleNo);
        configOMElement = artifactReader.getOMElement(System.getProperty("CARBON_HOME") +
                                                      File.separator + "repository" + File.separator + "samples" +
                                                      File.separator + "synapse_sample_" + sampleNo + ".xml");

        defaultConfigOMElement =
                artifactReader.getOMElement(SampleTestTemplate.class.getResource("/defaultConfig.xml").getPath());

        sessionCookie = login();
        try {
            assert configServiceAdminStub != null;
            configServiceAdminStub.updateConfiguration(defaultConfigOMElement);
        } catch (Exception e) {
            log.error("error while reset the synapse config to default");
        }
        logout();
        sessionCookie = null;

    }

    @Override
    public void runSuccessCase() {

        AuthenticateStub authenticateStub = new AuthenticateStub();
        ConfigServiceAdminStub configServiceAdminStub = null;
        try {
            configServiceAdminStub = new ConfigServiceAdminStub("https://" + FrameworkSettings.HOST_NAME + ":" + FrameworkSettings.HTTPS_PORT + "/services/ConfigServiceAdmin");
        } catch (AxisFault axisFault) {
            axisFault.printStackTrace();
        }
        authenticateStub.authenticateAdminStub(configServiceAdminStub, sessionCookie);
        try {
            assert configServiceAdminStub != null;
            configServiceAdminStub.updateConfiguration(configOMElement);
        } catch (Exception e) {
            log.error("error while uploading the test synapse config");
        }

        invokeClient();
        runSuccessTest();
        clientLog = "";
        try {
            assert configServiceAdminStub != null;
            configServiceAdminStub.updateConfiguration(defaultConfigOMElement);
        } catch (Exception e) {
            log.error("error while reset the synapse config to default");
        }


    }


    @Override
    public void runFailureCase() {
        /* try {
                    AuthenticateStub authenticateStub = new AuthenticateStub();
                    ConfigServiceAdminStub configServiceAdminStub = new ConfigServiceAdminStub("https://" + FrameworkSettings.HOST_NAME + ":" + FrameworkSettings.HTTPS_PORT + "/services/ConfigServiceAdmin");
                    authenticateStub.authenticateAdminStub(configServiceAdminStub, sessionCookie);
                    ArtifactReader artifactReader = new ArtifactReader();
                    new ConfigServiceAdminStubCommand(configServiceAdminStub).updateConfigurationExecuteFailureCase(configOMElement);

                    invokeClient();
                    runFailureTest();
                    clientLog = "";
                    new ConfigServiceAdminStubCommand(configServiceAdminStub).updateConfigurationExecuteFailureCase(defaultConfigOMElement);

                }
                catch (Exception e) {
                    log.info("Failure case exception" + e.getMessage());
                }
        */
    }


    @Override
    public void cleanup() {
    }

    // set sampleNo

    abstract void setSampleNo();

    //to invoke the test client

    protected abstract void invokeClient();

    // to check whether the test has passed

    protected abstract void runSuccessTest();

    // to check whether the test has failed

    protected abstract void runFailureTest();

    protected boolean isWindows() {
        try {
            String osName = System.getProperty("os.name");
            return (osName != null && osName.startsWith("Windows"));
        } catch (Exception e) {
            System.out.println("Exception caught =" + e.getMessage());
        }
        return false;
    }


}
TOP

Related Classes of org.wso2.carbon.esb.samples.SampleTestTemplate

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.