-
Notifications
You must be signed in to change notification settings - Fork 203
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
#413: Added additional constructors to HmRqHeader #440
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,12 +24,16 @@ | |
package org.takes.facets.hamcrest; | ||
|
||
import java.io.IOException; | ||
import java.util.Collections; | ||
import java.util.Collection; | ||
import java.util.LinkedList; | ||
import java.util.Locale; | ||
import java.util.Map; | ||
import java.util.Map.Entry; | ||
import org.hamcrest.Description; | ||
import org.hamcrest.Matcher; | ||
import org.hamcrest.TypeSafeMatcher; | ||
import org.takes.Request; | ||
import org.takes.misc.EntryImpl; | ||
import org.takes.rq.RqHeaders; | ||
|
||
/** | ||
|
@@ -42,31 +46,42 @@ | |
* @author Eugene Kondrashev ([email protected]) | ||
* @version $Id$ | ||
* @since 0.23.3 | ||
* @todo #260:30min Implement additional constructors. | ||
* According to #260 there should be also available such constructors: | ||
* public HmRsHeader(final Matcher<? extends Map.Entry<String,String>> mtchr); | ||
* public HmRsHeader(final String header, | ||
* final Matcher<? extends Iterable<String>> mtchr); | ||
* public HmRsHeader(final String header, | ||
* final Matcher<? extends String> mtchr); | ||
* public HmRsHeader(final String header, final String value); | ||
*/ | ||
public final class HmRqHeader extends TypeSafeMatcher<Request> { | ||
|
||
/** | ||
* Expected request header matcher. | ||
*/ | ||
private final transient Matcher<? extends Map<? extends CharSequence, | ||
? extends CharSequence>> matcher; | ||
private final transient HeaderMatcher matcher; | ||
|
||
/** | ||
* Expected matcher. | ||
* @param mtchr Is expected header matcher. | ||
* Ctor. | ||
* @param mtchr Matcher | ||
*/ | ||
public HmRqHeader(final Matcher<? extends Map<? extends CharSequence, | ||
? extends CharSequence>> mtchr) { | ||
public HmRqHeader( | ||
final Matcher<? extends Map.Entry<String, String>> mtchr) { | ||
super(); | ||
this.matcher = mtchr; | ||
this.matcher = new EntryHeaderMatcher(mtchr); | ||
} | ||
|
||
/** | ||
* Ctor. | ||
* @param header Header name | ||
* @param mtchr Matcher | ||
*/ | ||
public HmRqHeader(final String header, | ||
final Matcher<? extends Iterable<String>> mtchr) { | ||
super(); | ||
this.matcher = new IterableHeaderMatcher(header, mtchr); | ||
} | ||
|
||
/** | ||
* Ctor. | ||
* @param header Header name | ||
* @param value Header value | ||
*/ | ||
public HmRqHeader(final String header, final String value) { | ||
this(new EntryMatcher<String, String>(header, value)); | ||
} | ||
|
||
/** | ||
|
@@ -86,38 +101,124 @@ public void describeTo(final Description description) { | |
@Override | ||
public boolean matchesSafely(final Request item) { | ||
try { | ||
return this.matcher.matches(new RqHeaders.Base(item)); | ||
} catch (final IOException ex) { | ||
throw new IllegalStateException(ex); | ||
} | ||
} | ||
|
||
/** | ||
* Header matcher. | ||
*/ | ||
private interface HeaderMatcher { | ||
|
||
/** | ||
* Performs the matching. | ||
* | ||
* @param headers Headers to check | ||
* @return True if positive match | ||
* @throws IOException If fails | ||
*/ | ||
boolean matches(final RqHeaders headers) throws IOException; | ||
|
||
/** | ||
* Generates a description of the matcher. | ||
* | ||
* @param description The description to be built or appended to | ||
*/ | ||
void describeTo(final Description description); | ||
} | ||
|
||
/** | ||
* Header matcher for {@code Matcher<? extends Map.Entry<String, String>>}. | ||
*/ | ||
private static class EntryHeaderMatcher implements HeaderMatcher { | ||
|
||
/** | ||
* Matcher. | ||
*/ | ||
private final transient | ||
Matcher<? extends Map.Entry<String, String>> matcher; | ||
|
||
/** | ||
* Ctor. | ||
* @param mtchr Matcher | ||
*/ | ||
public EntryHeaderMatcher( | ||
final Matcher<? extends Entry<String, String>> mtchr) { | ||
this.matcher = mtchr; | ||
} | ||
|
||
@Override | ||
@SuppressWarnings("PMD.AvoidInstantiatingObjectsInLoops") | ||
public boolean matches(final RqHeaders headers) throws IOException { | ||
boolean result = false; | ||
final RqHeaders headers = new RqHeaders.Base(item); | ||
for (final String name: headers.names()) { | ||
if (this.matchHeader(name, headers.header(name))) { | ||
result = true; | ||
break; | ||
outer: | ||
for (final String name : headers.names()) { | ||
for (final String value: headers.header(name)) { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @bdragan let's add if (result) {
break;
} |
||
final Map.Entry<String, String> entry = | ||
new EntryImpl<String, String>( | ||
name.trim().toLowerCase(Locale.ENGLISH), | ||
value.trim() | ||
); | ||
if (this.matcher.matches(entry)) { | ||
result = true; | ||
break outer; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @bdragan let's do a simple |
||
} | ||
} | ||
} | ||
return result; | ||
} catch (final IOException ex) { | ||
throw new IllegalStateException(ex); | ||
} | ||
|
||
@Override | ||
public void describeTo(final Description description) { | ||
this.matcher.describeTo(description); | ||
} | ||
} | ||
|
||
/** | ||
* Runs matcher against each found pair. | ||
* @param name Is header name | ||
* @param values Available header values | ||
* @return True when expected type matched. | ||
* Header matcher for {@code Matcher<? extends Iterable<String>>}. | ||
*/ | ||
private boolean matchHeader(final String name, | ||
final Iterable<String> values) { | ||
boolean result = false; | ||
for (final String value: values) { | ||
if (this.matcher.matches( | ||
Collections.singletonMap(name, value) | ||
)) { | ||
result = true; | ||
break; | ||
private static class IterableHeaderMatcher implements HeaderMatcher { | ||
|
||
/** | ||
* Header. | ||
*/ | ||
private final transient String header; | ||
|
||
/** | ||
* Matcher. | ||
*/ | ||
private final transient Matcher<? extends Iterable<String>> matcher; | ||
|
||
/** | ||
* Ctor. | ||
* @param hdr Header | ||
* @param mtchr Matcher | ||
*/ | ||
public IterableHeaderMatcher(final String hdr, | ||
final Matcher<? extends Iterable<String>> mtchr) { | ||
this.header = hdr; | ||
this.matcher = mtchr; | ||
} | ||
|
||
@Override | ||
public boolean matches(final RqHeaders headers) throws IOException { | ||
final Collection<String> hdrs = new LinkedList<String>(); | ||
for (final String name : headers.names()) { | ||
final String lower = name.trim().toLowerCase(Locale.ENGLISH); | ||
if (lower.equals(this.header)) { | ||
for (final String value : headers.header(name)) { | ||
hdrs.add(value); | ||
} | ||
} | ||
} | ||
return this.matcher.matches(hdrs); | ||
} | ||
return result; | ||
} | ||
|
||
@Override | ||
public void describeTo(final Description description) { | ||
this.matcher.describeTo(description); | ||
} | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,6 +28,8 @@ | |
import org.hamcrest.Matchers; | ||
import org.junit.Test; | ||
import org.takes.rq.RqFake; | ||
import org.takes.rq.RqWithHeader; | ||
import org.takes.rq.RqWithHeaders; | ||
|
||
/** | ||
* Test case for {@link org.takes.facets.hamcrest.HmRqHeader}. | ||
|
@@ -53,7 +55,11 @@ public void testsHeaderAvailable() throws Exception { | |
), | ||
"" | ||
), | ||
new HmRqHeader(Matchers.hasEntry("accept", "text/xml")) | ||
new HmRqHeader( | ||
new EntryMatcher<String, String>( | ||
"accept", "text/xml" | ||
) | ||
) | ||
); | ||
} | ||
|
||
|
@@ -74,9 +80,60 @@ public void testsHeaderNotAvailable() throws Exception { | |
), | ||
new HmRqHeader( | ||
Matchers.not( | ||
Matchers.hasEntry("host", "fake.org") | ||
new EntryMatcher<String, String>("host", "fake.org") | ||
) | ||
) | ||
); | ||
} | ||
|
||
/** | ||
* HmRqHeader can test header name and value available. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @bdragan can test |
||
* @throws Exception If some problem inside | ||
*/ | ||
@Test | ||
public void testsHeaderNameAndValueAvailable() throws Exception { | ||
MatcherAssert.assertThat( | ||
new RqWithHeader(new RqFake(), "header1: value1"), | ||
new HmRqHeader("header1", "value1") | ||
); | ||
} | ||
|
||
/** | ||
* HmRqHeader can test header name and value not available. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @bdragan can test |
||
* @throws Exception If some problem inside | ||
*/ | ||
@Test | ||
public void testsHeaderNameAndValueNotAvailable() throws Exception { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @bdragan |
||
MatcherAssert.assertThat( | ||
new RqWithHeader(new RqFake(), "header2: value2"), | ||
Matchers.not(new HmRqHeader("header2", "value21")) | ||
); | ||
} | ||
|
||
/** | ||
* HmRqHeader can test headers available. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @bdragan can test |
||
* @throws Exception If some problem inside | ||
*/ | ||
@Test | ||
public void testsHeadersAvailable() throws Exception { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @bdragan |
||
MatcherAssert.assertThat( | ||
new RqWithHeaders( | ||
new RqFake(), | ||
"header3: value31", "header3: value32" | ||
), | ||
new HmRqHeader("header3", Matchers.<String>iterableWithSize(2)) | ||
); | ||
} | ||
|
||
/** | ||
* HmRqHeader can test headers not available. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @bdragan can test |
||
* @throws Exception If some problem inside | ||
*/ | ||
@Test | ||
public void testsHeadersNotAvailable() throws Exception { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. @bdragan |
||
MatcherAssert.assertThat( | ||
new RqWithHeaders(new RqFake(), "header4: value4"), | ||
new HmRqHeader("header41", Matchers.<String>iterableWithSize(0)) | ||
); | ||
} | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@bdragan let's remove this label