Search in sources :

Example 46 with URI

use of org.apache.commons.httpclient.URI in project zaproxy by zaproxy.

the class HttpPrefixFetchFilterUnitTest method shouldFilterUriWithDifferentHostAsOutOfScope.

@Test
public void shouldFilterUriWithDifferentHostAsOutOfScope() throws Exception {
    // Given
    URI prefixUri = new URI("http://example.org/", true);
    HttpPrefixFetchFilter fetchFilter = new HttpPrefixFetchFilter(prefixUri);
    URI uri = new URI("http://domain.example.org/", true);
    // When
    FetchStatus filterStatus = fetchFilter.checkFilter(uri);
    // Then
    assertThat(filterStatus, is(equalTo(FetchStatus.OUT_OF_SCOPE)));
}
Also used : URI(org.apache.commons.httpclient.URI) FetchStatus(org.zaproxy.zap.spider.filters.FetchFilter.FetchStatus) Test(org.junit.Test)

Example 47 with URI

use of org.apache.commons.httpclient.URI in project zaproxy by zaproxy.

the class HttpPrefixFetchFilterUnitTest method shouldDiscardDefaultHttpsPortFromPrefix.

@Test
public void shouldDiscardDefaultHttpsPortFromPrefix() throws Exception {
    // Given
    URI prefixUri = new URI("https://example.org:443/", true);
    HttpPrefixFetchFilter fetchFilter = new HttpPrefixFetchFilter(prefixUri);
    // When
    String normalisedPrefix = fetchFilter.getNormalisedPrefix();
    // Then
    assertThat(normalisedPrefix, is(equalTo("https://example.org/")));
}
Also used : URI(org.apache.commons.httpclient.URI) Test(org.junit.Test)

Example 48 with URI

use of org.apache.commons.httpclient.URI in project zaproxy by zaproxy.

the class HttpPrefixFetchFilterUnitTest method shouldFailToCreateFetchFilterWithNoScheme.

@Test(expected = IllegalArgumentException.class)
public void shouldFailToCreateFetchFilterWithNoScheme() throws Exception {
    // Given
    URI prefixUri = new URI("example.org/", true);
    // When
    new HttpPrefixFetchFilter(prefixUri);
// Then = IllegalArgumentException
}
Also used : URI(org.apache.commons.httpclient.URI) Test(org.junit.Test)

Example 49 with URI

use of org.apache.commons.httpclient.URI in project zaproxy by zaproxy.

the class HttpPrefixFetchFilterUnitTest method shouldFilterUriWithNonHttpOrHttpsSchemeAsOutOfScope.

@Test
public void shouldFilterUriWithNonHttpOrHttpsSchemeAsOutOfScope() throws Exception {
    // Given
    URI prefixUri = new URI("http://example.org/", true);
    HttpPrefixFetchFilter fetchFilter = new HttpPrefixFetchFilter(prefixUri);
    URI uri = new URI("ftp://example.org/", true);
    // When
    FetchStatus filterStatus = fetchFilter.checkFilter(uri);
    // Then
    assertThat(filterStatus, is(equalTo(FetchStatus.OUT_OF_SCOPE)));
}
Also used : URI(org.apache.commons.httpclient.URI) FetchStatus(org.zaproxy.zap.spider.filters.FetchFilter.FetchStatus) Test(org.junit.Test)

Example 50 with URI

use of org.apache.commons.httpclient.URI in project zaproxy by zaproxy.

the class HttpPrefixFetchFilterUnitTest method shouldFilterUriWithSamePathPrefixAsValid.

@Test
public void shouldFilterUriWithSamePathPrefixAsValid() throws Exception {
    // Given
    URI prefixUri = new URI("http://example.org/path", true);
    HttpPrefixFetchFilter fetchFilter = new HttpPrefixFetchFilter(prefixUri);
    URI uri = new URI("http://example.org/path/subtree", true);
    // When
    FetchStatus filterStatus = fetchFilter.checkFilter(uri);
    // Then
    assertThat(filterStatus, is(equalTo(FetchStatus.VALID)));
}
Also used : URI(org.apache.commons.httpclient.URI) FetchStatus(org.zaproxy.zap.spider.filters.FetchFilter.FetchStatus) Test(org.junit.Test)

Aggregations

URI (org.apache.commons.httpclient.URI)129 Test (org.junit.Test)72 FetchStatus (org.zaproxy.zap.spider.filters.FetchFilter.FetchStatus)33 URIException (org.apache.commons.httpclient.URIException)28 HttpMessage (org.parosproxy.paros.network.HttpMessage)10 ArrayList (java.util.ArrayList)9 HttpRequestHeader (org.parosproxy.paros.network.HttpRequestHeader)8 DatabaseException (org.parosproxy.paros.db.DatabaseException)7 HttpMalformedHeaderException (org.parosproxy.paros.network.HttpMalformedHeaderException)6 HandleParametersOption (org.zaproxy.zap.spider.SpiderParam.HandleParametersOption)6 IOException (java.io.IOException)5 Header (org.apache.commons.httpclient.Header)4 InvalidParameterException (java.security.InvalidParameterException)3 Matcher (java.util.regex.Matcher)3 Pattern (java.util.regex.Pattern)3 PatternSyntaxException (java.util.regex.PatternSyntaxException)3 JSONException (net.sf.json.JSONException)3 StructuralNode (org.zaproxy.zap.model.StructuralNode)3 File (java.io.File)2 List (java.util.List)2