/*
* The MIT License (MIT)
*
* Copyright (c) 2007-2015 Broad Institute
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
package org.broad.igv.util;
import org.broad.igv.prefs.Constants;
import org.broad.igv.prefs.IGVPreferences;
import org.broad.igv.exceptions.HttpResponseException;
import org.broad.igv.prefs.PreferencesManager;
import org.junit.Ignore;
import org.junit.Test;
import java.io.IOException;
import java.net.URL;
import static junit.framework.Assert.assertFalse;
import static junit.framework.Assert.assertTrue;
import static org.junit.Assert.assertEquals;
/**
* @author Jim Robinson
* @date Jul 27, 2011
*/
public class IGVHttpClientUtilsTest {
private static String hg18URL = "http://data.broadinstitute.org/igvdata/test/hg18.unittest.genome";
private static int hg18bytes = 3617644;
@Test
public void testGetContentLength() throws IOException {
String url = hg18URL;
assertEquals(hg18bytes, HttpUtils.getInstance().getContentLength(new URL(url)));
}
@Test
public void testExists() throws IOException {
URL url = new URL(hg18URL);
assertTrue("Resource unexpectedly does not exist", HttpUtils.getInstance().resourceAvailable(url));
url = new URL("http://nosuchserver/genomes/hg18.genome");
assertFalse("Resource unexpectedly found", HttpUtils.getInstance().resourceAvailable(url));
url = new URL("http://igvdata.broadinstitute.org/nosuchfile.txt");
assertFalse(HttpUtils.getInstance().resourceAvailable(url));
}
/**
* This test will only work if on the Broad intranet, as that's where the test proxy server is.
*
* @throws IOException
*/
@Ignore
@Test
public void testProxy() throws IOException {
final URL testURL = new URL(hg18URL);
IGVPreferences mgr = PreferencesManager.getPreferences();
mgr.override(Constants.PROXY_HOST, "igvdev01.broadinstitute.org");
mgr.override(Constants.PROXY_PORT, "3128");
mgr.override(Constants.PROXY_USER, "proxytest");
String enc_pword = Utilities.base64Encode("test@123");
mgr.override(Constants.PROXY_PW, enc_pword);
mgr.override(Constants.USE_PROXY, "true");
mgr.override(Constants.PROXY_AUTHENTICATE, "true");
HttpUtils.getInstance().updateProxySettings();
long contentLength = 0;
try {
contentLength = HttpUtils.getInstance().getContentLength(testURL);
assertEquals(hg18bytes, contentLength);
} catch (IOException e) {
System.out.println("Proxy unreachable. Skipping proxy test");
return;
}
// Now try to get a file not on the squid "allowed" domains to verify requests are going through the proxy
// This should fail and return -1 for the content length
try {
contentLength = HttpUtils.getInstance().getContentLength(new URL("http://www.boston.com"));
junit.framework.Assert.fail("Proxy test is apparently bypassing proxy");
} catch (HttpResponseException e) {
// This is expected
assertEquals(403, e.getStatusCode());
}
}
}