parent
a1688140c5
commit
ed7e574939
@ -0,0 +1,46 @@
|
|||||||
|
/*
|
||||||
|
* Copyright (c) 2017, WSO2 Inc. (http://www.wso2.org) 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.iot.integration.jmeter;
|
||||||
|
|
||||||
|
import org.apache.commons.logging.Log;
|
||||||
|
import org.apache.commons.logging.LogFactory;
|
||||||
|
import org.testng.annotations.Test;
|
||||||
|
import org.wso2.carbon.automation.engine.exceptions.AutomationFrameworkException;
|
||||||
|
import org.wso2.carbon.automation.extensions.jmeter.JMeterTest;
|
||||||
|
import org.wso2.carbon.automation.extensions.jmeter.JMeterTestManager;
|
||||||
|
|
||||||
|
import java.io.File;
|
||||||
|
import java.net.URL;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This test case is used to run the jmeter test cases related with Policy Management APIs.
|
||||||
|
*/
|
||||||
|
public class PolicyManagementJMeterTestCase {
|
||||||
|
private static Log log = LogFactory.getLog(PolicyManagementJMeterTestCase.class);
|
||||||
|
|
||||||
|
@Test(description = "This test case tests the Policy Management APIs")
|
||||||
|
public void PolicyManagementTest() throws AutomationFrameworkException {
|
||||||
|
URL url = Thread.currentThread().getContextClassLoader()
|
||||||
|
.getResource("jmeter-scripts" + File.separator + "PolicyManagementAPI.jmx");
|
||||||
|
JMeterTest script = new JMeterTest(new File(url.getPath()));
|
||||||
|
JMeterTestManager manager = new JMeterTestManager();
|
||||||
|
log.info("Running policy management api test cases using jmeter scripts");
|
||||||
|
manager.runTest(script);
|
||||||
|
}
|
||||||
|
}
|
File diff suppressed because it is too large
Load Diff
Loading…
Reference in new issue