summaryrefslogtreecommitdiffstats
path: root/src/test/java/com/btr/proxy/search/browser/IeTest.java
blob: 3c7e72c9179973e17985ce2a8dca8408b828ee25 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
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()));
	}

}