summaryrefslogtreecommitdiffstats
path: root/src/test/java/com/btr/proxy/util/UriFilterTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/java/com/btr/proxy/util/UriFilterTest.java')
-rw-r--r--src/test/java/com/btr/proxy/util/UriFilterTest.java122
1 files changed, 122 insertions, 0 deletions
diff --git a/src/test/java/com/btr/proxy/util/UriFilterTest.java b/src/test/java/com/btr/proxy/util/UriFilterTest.java
new file mode 100644
index 0000000..f1750ad
--- /dev/null
+++ b/src/test/java/com/btr/proxy/util/UriFilterTest.java
@@ -0,0 +1,122 @@
+package com.btr.proxy.util;
+
+import static org.junit.Assert.*;
+
+import java.net.URI;
+import java.net.URISyntaxException;
+
+import org.junit.Test;
+
+import com.btr.proxy.TestUtil;
+import com.btr.proxy.selector.whitelist.HostnameFilter;
+import com.btr.proxy.selector.whitelist.IpRangeFilter;
+import com.btr.proxy.selector.whitelist.HostnameFilter.Mode;
+
+
+/*****************************************************************************
+ * Some unit tests for the UriFilter class.
+ * @author Bernd Rosstauscher (proxyvole@rosstauscher.de) Copyright 2009
+ ****************************************************************************/
+
+public class UriFilterTest {
+
+ /*************************************************************************
+ * Test method
+ ************************************************************************/
+ @Test
+ public void testBeginsWithFilter1() {
+ UriFilter filter = new HostnameFilter(Mode.BEGINS_WITH, "no_proxy");
+
+ assertTrue(filter.accept(TestUtil.NO_PROXY_TEST_URI));
+ }
+
+ /*************************************************************************
+ * Test method
+ ************************************************************************/
+ @Test
+ public void testBeginsWithFilter2() {
+ UriFilter filter = new HostnameFilter(Mode.BEGINS_WITH, "no_proxy");
+
+ assertFalse(filter.accept(TestUtil.HTTP_TEST_URI));
+ }
+
+ /*************************************************************************
+ * Test method
+ * @throws URISyntaxException on invalid URL syntax.
+ ************************************************************************/
+ @Test
+ public void testBeginsWithFilter3() throws URISyntaxException {
+ UriFilter filter = new HostnameFilter(Mode.BEGINS_WITH, "192.168.0");
+
+ assertTrue(filter.accept(new URI("http://192.168.0.100:81/test.data")));
+ }
+
+ /*************************************************************************
+ * Test method
+ * @throws URISyntaxException on invalid URL syntax.
+ ************************************************************************/
+ @Test
+ public void testBeginsWithFilter4() throws URISyntaxException {
+ UriFilter filter = new HostnameFilter(Mode.BEGINS_WITH, "192.168.0");
+
+ assertFalse(filter.accept(new URI("http://192.168.1.100:81/test.data")));
+ }
+
+ /*************************************************************************
+ * Test method
+ ************************************************************************/
+ @Test
+ public void testBeginsWithFilter() {
+ UriFilter filter = new HostnameFilter(Mode.BEGINS_WITH, "no_proxy");
+
+ assertTrue(filter.accept(TestUtil.NO_PROXY_TEST_URI));
+ assertFalse(filter.accept(TestUtil.HTTP_TEST_URI));
+ }
+
+ /*************************************************************************
+ * Test method
+ * @throws URISyntaxException on invalid URL syntax.
+ ************************************************************************/
+ @Test
+ public void testEndsWithFilter() throws URISyntaxException {
+ UriFilter filter = new HostnameFilter(Mode.ENDS_WITH, ".unit-test.invalid");
+
+ assertTrue(filter.accept(TestUtil.NO_PROXY_TEST_URI));
+ }
+
+ /*************************************************************************
+ * Test method
+ * @throws URISyntaxException on invalid URL syntax.
+ ************************************************************************/
+ @Test
+ public void testEndsWithFilter2() throws URISyntaxException {
+ UriFilter filter = new HostnameFilter(Mode.ENDS_WITH, ".unit-test.invalid");
+
+ assertFalse(filter.accept(new URI("http://test.no-host.invalid:81/test.data")));
+ }
+
+ /*************************************************************************
+ * Test method
+ * @throws URISyntaxException on invalid URL syntax.
+ ************************************************************************/
+ @Test
+ public void testEndsWithFilter3() throws URISyntaxException {
+ UriFilter filter = new HostnameFilter(Mode.ENDS_WITH, ".100");
+
+ assertTrue(filter.accept(new URI("http://192.168.1.100:81/test.data")));
+ }
+
+ /*************************************************************************
+ * Test method
+ * @throws URISyntaxException on invalid URL syntax.
+ ************************************************************************/
+ @Test
+ public void testIpRangeFilter() throws URISyntaxException {
+ UriFilter filter = new IpRangeFilter("192.168.0.0/24");
+
+ assertTrue(filter.accept(new URI("http://192.168.0.100:81/test.data")));
+ assertFalse(filter.accept(new URI("http://192.168.1.100:81/test.data")));
+ }
+
+}
+