mirror of
https://github.com/arduino/Arduino.git
synced 2024-12-02 13:24:12 +01:00
105 lines
4.1 KiB
Java
105 lines
4.1 KiB
Java
package cc.arduino.net;
|
|
|
|
import cc.arduino.Constants;
|
|
import org.junit.Before;
|
|
import org.junit.Test;
|
|
|
|
import java.net.*;
|
|
import java.util.HashMap;
|
|
import java.util.Map;
|
|
|
|
import static org.junit.Assert.assertEquals;
|
|
|
|
public class CustomProxySelectorTest {
|
|
|
|
private Map<String, String> preferences;
|
|
private URI uri;
|
|
|
|
@Before
|
|
public void setUp() throws Exception {
|
|
System.setProperty("java.net.useSystemProxies", "true");
|
|
uri = new URL("https://www.arduino.cc").toURI();
|
|
preferences = new HashMap<>();
|
|
}
|
|
|
|
@Test
|
|
public void testNoProxy() throws Exception {
|
|
preferences.put(Constants.PREF_PROXY_TYPE, Constants.PROXY_TYPE_NONE);
|
|
CustomProxySelector proxySelector = new CustomProxySelector(preferences);
|
|
Proxy proxy = proxySelector.getProxyFor(uri);
|
|
|
|
assertEquals(Proxy.NO_PROXY, proxy);
|
|
}
|
|
|
|
@Test
|
|
public void testSystemProxy() throws Exception {
|
|
preferences.put(Constants.PREF_PROXY_TYPE, Constants.PROXY_TYPE_AUTO);
|
|
CustomProxySelector proxySelector = new CustomProxySelector(preferences);
|
|
Proxy proxy = proxySelector.getProxyFor(uri);
|
|
|
|
assertEquals(ProxySelector.getDefault().select(uri).get(0), proxy);
|
|
}
|
|
|
|
@Test
|
|
public void testProxyPACHTTP() throws Exception {
|
|
preferences.put(Constants.PREF_PROXY_TYPE, Constants.PROXY_TYPE_AUTO);
|
|
preferences.put(Constants.PREF_PROXY_PAC_URL, CustomProxySelectorTest.class.getResource("proxy_http.pac").toExternalForm());
|
|
CustomProxySelector proxySelector = new CustomProxySelector(preferences);
|
|
Proxy proxy = proxySelector.getProxyFor(uri);
|
|
|
|
assertEquals(new Proxy(Proxy.Type.HTTP, new InetSocketAddress("proxy.example.com", 8080)), proxy);
|
|
}
|
|
|
|
@Test
|
|
public void testProxyPACSOCKS() throws Exception {
|
|
preferences.put(Constants.PREF_PROXY_TYPE, Constants.PROXY_TYPE_AUTO);
|
|
preferences.put(Constants.PREF_PROXY_PAC_URL, CustomProxySelectorTest.class.getResource("proxy_socks.pac").toExternalForm());
|
|
CustomProxySelector proxySelector = new CustomProxySelector(preferences);
|
|
Proxy proxy = proxySelector.getProxyFor(uri);
|
|
|
|
assertEquals(new Proxy(Proxy.Type.SOCKS, new InetSocketAddress("proxy.example.com", 8080)), proxy);
|
|
}
|
|
|
|
@Test
|
|
public void testProxyPACDirect() throws Exception {
|
|
preferences.put(Constants.PREF_PROXY_TYPE, Constants.PROXY_TYPE_AUTO);
|
|
preferences.put(Constants.PREF_PROXY_PAC_URL, CustomProxySelectorTest.class.getResource("proxy_direct.pac").toExternalForm());
|
|
CustomProxySelector proxySelector = new CustomProxySelector(preferences);
|
|
Proxy proxy = proxySelector.getProxyFor(uri);
|
|
|
|
assertEquals(Proxy.NO_PROXY, proxy);
|
|
}
|
|
|
|
@Test
|
|
public void testManualProxy() throws Exception {
|
|
preferences.put(Constants.PREF_PROXY_TYPE, Constants.PROXY_TYPE_MANUAL);
|
|
preferences.put(Constants.PREF_PROXY_MANUAL_TYPE, Constants.PROXY_MANUAL_TYPE_HTTP);
|
|
preferences.put(Constants.PREF_PROXY_MANUAL_HOSTNAME, "localhost");
|
|
preferences.put(Constants.PREF_PROXY_MANUAL_PORT, "8080");
|
|
|
|
CustomProxySelector proxySelector = new CustomProxySelector(preferences);
|
|
Proxy proxy = proxySelector.getProxyFor(uri);
|
|
|
|
assertEquals(new Proxy(Proxy.Type.HTTP, new InetSocketAddress("localhost", 8080)), proxy);
|
|
}
|
|
|
|
@Test
|
|
public void testManualProxyWithLogin() throws Exception {
|
|
preferences.put(Constants.PREF_PROXY_TYPE, Constants.PROXY_TYPE_MANUAL);
|
|
preferences.put(Constants.PREF_PROXY_MANUAL_TYPE, Constants.PROXY_MANUAL_TYPE_HTTP);
|
|
preferences.put(Constants.PREF_PROXY_MANUAL_HOSTNAME, "localhost");
|
|
preferences.put(Constants.PREF_PROXY_MANUAL_PORT, "8080");
|
|
preferences.put(Constants.PREF_PROXY_MANUAL_USERNAME, "username");
|
|
preferences.put(Constants.PREF_PROXY_MANUAL_PASSWORD, "pwd");
|
|
|
|
CustomProxySelector proxySelector = new CustomProxySelector(preferences);
|
|
Proxy proxy = proxySelector.getProxyFor(uri);
|
|
|
|
assertEquals(new Proxy(Proxy.Type.HTTP, new InetSocketAddress("localhost", 8080)), proxy);
|
|
|
|
PasswordAuthentication authentication = Authenticator.requestPasswordAuthentication(null, 8080, uri.toURL().getProtocol(), "ciao", "");
|
|
assertEquals(authentication.getUserName(), "username");
|
|
assertEquals(String.valueOf(authentication.getPassword()), "pwd");
|
|
}
|
|
}
|