/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF 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.apache.ode.axis2.rampart.policy; import static org.testng.AssertJUnit.assertTrue; import org.testng.annotations.AfterMethod; import org.testng.annotations.BeforeMethod; import org.testng.annotations.DataProvider; import org.testng.annotations.Test; import org.apache.ode.axis2.Axis2TestBase; import java.io.File; import java.io.FileFilter; /** * * */ public class SecuredServicesTest extends Axis2TestBase { private String testDir = "TestRampartPolicy/secured-services"; @DataProvider(name = "secured-services-bundles") public Object[][] testPolicySamples() throws Exception { File[] policies = new File(getClass().getClassLoader().getResource(testDir).getFile()).listFiles(new FileFilter() { public boolean accept(File pathname) { return pathname.isDirectory() && pathname.getName().matches("process-sample\\d*\\-policy"); } }); Object[][] bundles = new Object[policies.length][]; for (int i = 0; i < policies.length; i++) { bundles[i] = new Object[]{testDir + "/" + policies[i].getName()}; } return bundles; } @BeforeMethod protected void setUp() throws Exception { // mind the annotation above also startServer(testDir, "webapp/WEB-INF/conf/axis2.xml"); } @AfterMethod protected void tearDown() throws Exception { // simply change the annotation, see above super.tearDown(); } @Test(dataProvider = "secured-services-bundles") public void executeProcess(String bundleName) throws Exception { if (server.isDeployed(new File(bundleName).getName())) { server.undeployProcess(bundleName); } server.deployProcess(bundleName); try { String response = sendRequestFile("http://localhost:8888/processes/helloWorld", bundleName, "testRequest.soap"); System.out.println(response); assertTrue("'" + response + "' didn't contain expected content.", response.contains("helloResponse") && response.contains("Hello World")); } finally { server.undeployProcess(bundleName); } } @Test public void testPolicyInServiceXml() throws Exception { executeProcess(testDir+"/process-sample04_policy_in_service.xml"); } }