-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Fix #6883 relative welcome redirect + make all redirects able to be relative + added test for relative redirection in ResourceService Signed-off-by: Greg Wilkins <gregw@webtide.com>
- Loading branch information
Showing
3 changed files
with
123 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
60 changes: 60 additions & 0 deletions
60
...http-tools/src/main/java/org/eclipse/jetty/http/tools/matchers/HttpFieldsHeaderValue.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
// | ||
// ======================================================================== | ||
// Copyright (c) 1995-2021 Mort Bay Consulting Pty Ltd and others. | ||
// ------------------------------------------------------------------------ | ||
// All rights reserved. This program and the accompanying materials | ||
// are made available under the terms of the Eclipse Public License v1.0 | ||
// and Apache License v2.0 which accompanies this distribution. | ||
// | ||
// The Eclipse Public License is available at | ||
// http://www.eclipse.org/legal/epl-v10.html | ||
// | ||
// The Apache License v2.0 is available at | ||
// http://www.opensource.org/licenses/apache2.0.php | ||
// | ||
// You may elect to redistribute this code under either of these licenses. | ||
// ======================================================================== | ||
// | ||
|
||
package org.eclipse.jetty.http.matchers; | ||
|
||
import java.util.Objects; | ||
|
||
import org.eclipse.jetty.http.HttpField; | ||
import org.eclipse.jetty.http.HttpFields; | ||
import org.eclipse.jetty.http.HttpHeader; | ||
import org.hamcrest.Description; | ||
import org.hamcrest.TypeSafeMatcher; | ||
|
||
public class HttpFieldsHeaderValue extends TypeSafeMatcher<HttpFields> | ||
{ | ||
private final String keyName; | ||
private final String value; | ||
|
||
public HttpFieldsHeaderValue(String keyName, String value) | ||
{ | ||
this.keyName = keyName; | ||
this.value = value; | ||
} | ||
|
||
public HttpFieldsHeaderValue(HttpHeader header, String value) | ||
{ | ||
this(header.asString(), value); | ||
} | ||
|
||
@Override | ||
public void describeTo(Description description) | ||
{ | ||
description.appendText("expecting http header ").appendValue(keyName).appendText(" with value ").appendValue(value); | ||
} | ||
|
||
@Override | ||
protected boolean matchesSafely(HttpFields fields) | ||
{ | ||
HttpField field = fields.getField(this.keyName); | ||
if (field == null) | ||
return false; | ||
|
||
return Objects.equals(this.value, field.getValue()); | ||
} | ||
} |