Package org.wso2.carbon.esb.samples

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

/**
*  Copyright (c) 2009, WSO2 Inc. (http://www.wso2.org) All Rights Reserved.
*
*  Licensed 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 junit.framework.Assert;
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.utils.Axis2Client;
import org.wso2.carbon.logging.view.stub.LogViewerStub;
import org.wso2.carbon.logging.view.stub.types.carbon.LogMessage;

import static org.wso2.carbon.integration.core.FrameworkSettings.HOST_NAME;

public class Sample253 extends SampleTestTemplate {
    private static final Log log = LogFactory.getLog(Sample253.class);
    String searchWord = "PropertyMediator Setting property : OUT_ONLY at scope : default to : true";
    String clientLog1 = "";

    @Override
    void setSampleNo() {
        sampleNo = 253;
    }

    @Override
    protected void invokeClient() {

        try {
            clientLog = Axis2Client.fireClient("ant stockquote -Dmode=placeorder -Dtrpurl=\"jms:/JMStoHTTPStockQuoteProxy?transport.jms.ConnectionFactoryJNDIName=QueueConnectionFactory&java.naming.factory.initial=org.apache.activemq.jndi.ActiveMQInitialContextFactory&java.naming.provider.url=tcp://" + HOST_NAME + ":61616&transport.jms.ContentTypeProperty=Content-Type&transport.jms.DestinationType=queue");
            LogViewerStub logViewerStub = new LogViewerStub("https://" + FrameworkSettings.HOST_NAME + ":" + FrameworkSettings.HTTPS_PORT + "/services/LogViewer");
            AuthenticateStub authenticateStub = new AuthenticateStub();
            authenticateStub.authenticateAdminStub(logViewerStub, sessionCookie);
            LogMessage[] logMessages = logViewerStub.getLogs("ALL", "PropertyMediator");
            if (!logMessages[logMessages.length - 1].getLogMessage().contains(searchWord)) {
                Assert.fail("Sample 253 JMStoHTTPStockQuoteProxy Case doesn't work");
                log.error("Sample 253 JMStoHTTPStockQuoteProxy Case doesn't work");
            }
        } catch (Exception e) {
            log.error("Sample 253 JMStoHTTPStockQuoteProxy Case doesn't work : " + e.getMessage());
        }


    }

    @Override
    protected void runSuccessTest() {
        // Assert.assertTrue(clientLog.contains("Standard :: Stock price ="));
        clientLog1 = "";
    }

    @Override
    protected void runFailureTest() {
        // Assert.assertFalse(clientLog.contains("Standard :: Stock price ="));
        clientLog1 = "";
    }


}
TOP

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

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.