![JAR search and dependency download from the Maven repository](/logo.png)
ee.jakarta.tck.ws.rs.common.webclient.handler.ALLOWHandler Maven / Gradle / Ivy
/*
* Copyright (c) 2008, 2021 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0, which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* This Source Code may also be made available under the following Secondary
* Licenses when the conditions for such availability set forth in the
* Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
* version 2 with the GNU Classpath Exception, which is available at
* https://www.gnu.org/software/classpath/license.html.
*
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
*/
/*
* $Id$
*/
package ee.jakarta.tck.ws.rs.common.webclient.handler;
import java.util.StringTokenizer;
import org.apache.commons.httpclient.Header;
import ee.jakarta.tck.ws.rs.lib.util.TestUtil;
public class ALLOWHandler implements Handler {
private static final Handler HANDLER = new ALLOWHandler();
private static final String DELIM = "##";
private ALLOWHandler() {
}
public static Handler getInstance() {
return HANDLER;
}
public boolean invoke(Header configuredHeader, Header responseHeader) {
String ALLOWHeader = responseHeader.getValue().toLowerCase();
String expectedValues = configuredHeader.getValue().toLowerCase()
.replace(" ", "");
TestUtil.logTrace("[ALLOWHandler] ALLOW header received: " + ALLOWHeader);
StringTokenizer conf = new StringTokenizer(expectedValues, ",");
while (conf.hasMoreTokens()) {
String token = conf.nextToken();
String token1 = token;
if ((ALLOWHeader.indexOf(token) < 0)
&& (ALLOWHeader.indexOf(token1) < 0)) {
TestUtil.logErr("[ALLOWHandler] Unable to find '" + token
+ "' within the ALLOW header returned by the server.");
return false;
} else {
TestUtil.logTrace("[ALLOWHandler] Found expected value, '" + token
+ "' in ALLOW header returned by server.");
}
}
return true;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy