summaryrefslogtreecommitdiffstats
path: root/src/test/java/com/btr/proxy/search/browser/IeTest.java
diff options
context:
space:
mode:
authorBjörn Hagemeister2014-11-11 14:40:18 +0100
committerBjörn Hagemeister2014-11-11 14:40:18 +0100
commite70ee5b59306ea37dd0c72603c61b33b1555def9 (patch)
treee6f09d76449da54463b9b4fa408b7dfba4b4b7bf /src/test/java/com/btr/proxy/search/browser/IeTest.java
downloadproxy-vole-e70ee5b59306ea37dd0c72603c61b33b1555def9.tar.gz
proxy-vole-e70ee5b59306ea37dd0c72603c61b33b1555def9.tar.xz
proxy-vole-e70ee5b59306ea37dd0c72603c61b33b1555def9.zip
Added proxy java classes.
Diffstat (limited to 'src/test/java/com/btr/proxy/search/browser/IeTest.java')
-rw-r--r--src/test/java/com/btr/proxy/search/browser/IeTest.java59
1 files changed, 59 insertions, 0 deletions
diff --git a/src/test/java/com/btr/proxy/search/browser/IeTest.java b/src/test/java/com/btr/proxy/search/browser/IeTest.java
new file mode 100644
index 0000000..3c7e72c
--- /dev/null
+++ b/src/test/java/com/btr/proxy/search/browser/IeTest.java
@@ -0,0 +1,59 @@
+package com.btr.proxy.search.browser;
+
+import static org.junit.Assert.assertTrue;
+import static org.junit.Assert.assertFalse;
+
+import java.net.MalformedURLException;
+import java.net.URISyntaxException;
+import java.net.URL;
+
+import org.junit.Test;
+
+import com.btr.proxy.TestUtil;
+import com.btr.proxy.search.browser.ie.IELocalByPassFilter;
+import com.btr.proxy.search.browser.ie.IEProxySearchStrategy;
+import com.btr.proxy.util.PlatformUtil;
+import com.btr.proxy.util.ProxyException;
+import com.btr.proxy.util.PlatformUtil.Platform;
+import com.btr.proxy.util.UriFilter;
+
+/*****************************************************************************
+ * Unit tests for the InternetExplorer search.
+ * Only limited testing as this only runs on windwos and needs a
+ * installed IE and IE proxy settings written to the registry.
+ *
+ * @author Bernd Rosstauscher (proxyvole@rosstauscher.de) Copyright 2009
+ ****************************************************************************/
+
+public class IeTest {
+
+ /*************************************************************************
+ * Test method.
+ * @throws ProxyException on proxy detection error.
+ ************************************************************************/
+ @Test
+ public void testInvoke() throws ProxyException {
+ if (Platform.WIN.equals(PlatformUtil.getCurrentPlattform())) {
+ IEProxySearchStrategy st = new IEProxySearchStrategy();
+
+ // Try at least to invoke it and test if the dll does not crash
+ st.getProxySelector();
+ }
+ }
+
+ /*************************************************************************
+ * Test method.
+ * @throws ProxyException on proxy detection error.
+ * @throws URISyntaxException if url syntax is wrong.
+ * @throws MalformedURLException on wrong url format.
+ ************************************************************************/
+ @Test
+ public void testLocalByPassFilter() throws ProxyException, MalformedURLException, URISyntaxException {
+ UriFilter filter = new IELocalByPassFilter();
+ assertTrue(filter.accept(TestUtil.LOCAL_TEST_URI));
+ assertFalse(filter.accept(TestUtil.HTTP_TEST_URI));
+ assertFalse(filter.accept(new URL("http://123.45.55.6").toURI()));
+ }
+
+}
+