JaxrsBasicAuthTest.java
/**
* 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.cxf.systest.sts.basic_auth;
import jakarta.ws.rs.InternalServerErrorException;
import org.apache.cxf.jaxrs.client.WebClient;
import org.apache.cxf.systest.sts.deployment.DoubleItServer;
import org.apache.cxf.systest.sts.deployment.STSServer;
import org.apache.cxf.testutil.common.AbstractBusClientServerTestBase;
import org.junit.BeforeClass;
import static org.junit.Assert.assertTrue;
/**
* In this test case, a CXF JAX-RS client sends BasicAuth via (1-way) TLS to a CXF provider.
* The provider converts it into Username Token and dispatches it to an STS for validation
* (via TLS).
*/
public class JaxrsBasicAuthTest extends AbstractBusClientServerTestBase {
static final String STSPORT = allocatePort(STSServer.class);
private static final String PORT = allocatePort(DoubleItServer.class);
@BeforeClass
public static void startServers() throws Exception {
assertTrue(launchServer(new DoubleItServer(
JaxwsBasicAuthTest.class.getResource("cxf-service.xml")
)));
assertTrue(launchServer(new STSServer()));
}
@org.junit.Test
public void testBasicAuth() throws Exception {
doubleIt("alice", "clarinet");
}
@org.junit.Test(expected = InternalServerErrorException.class)
public void testBadBasicAuth() throws Exception {
doubleIt("alice", "trombon");
}
@org.junit.Test(expected = InternalServerErrorException.class)
public void testNoBasicAuth() throws Exception {
doubleIt(null, null);
}
private static void doubleIt(String username, String password) {
final String configLocation = "org/apache/cxf/systest/sts/basic_auth/cxf-client.xml";
final String address = "https://localhost:" + PORT + "/doubleit/services/doubleit-rs";
final int numToDouble = 25;
final WebClient client;
if (username != null && password != null) {
client = WebClient.create(address, username, password, configLocation);
} else {
client = WebClient.create(address, configLocation);
}
client.type("text/plain").accept("text/plain");
int resp = client.post(numToDouble, Integer.class);
org.junit.Assert.assertEquals(2 * numToDouble, resp);
}
}