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 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94
|
/* getHeaderFields.java --
Copyright (c) 2004, 2006 by Free Software Foundation, Inc.
Written by Michael Koch <konqueror@gmx.de>
Written by Wolfgang Baer <WBaer@gmx.de>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published
by the Free Software Foundation, version 2. (see COPYING)
This program is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software Foundation,
51 Franklin Street, Fifth Floor, Boston, MA, 02110-1301 USA. */
package gnu.testlet.java.net.URLConnection;
import gnu.testlet.ResourceNotFoundException;
import gnu.testlet.TestHarness;
import gnu.testlet.Testlet;
import java.io.File;
import java.io.IOException;
import java.net.*;
import java.util.*;
/**
* Tests getHeaderFields for the various protocol implementations.
*/
public class getHeaderFields implements Testlet
{
private void check(TestHarness h, String urlString)
{
try
{
URL url = new URL(urlString);
URLConnection conn = url.openConnection();
conn.connect();
Map headers = conn.getHeaderFields();
h.check(headers != null);
if (! headers.isEmpty())
{
Map.Entry entry = (Map.Entry) headers.entrySet().toArray()[1];
h.check(entry.getKey() instanceof String);
h.check(entry.getValue() instanceof List);
}
}
catch (MalformedURLException e)
{
// Ignored. We know the URIs are valid.
}
catch (IOException e)
{
h.fail("Test failed for " + urlString);
}
}
public void test(TestHarness h)
{
// Returns a map of headers.
h.checkPoint("Test HTTP");
check(h, "http://www.gnu.org/");
// Returns an empty map.
h.checkPoint("Test FTP");
check(h, "ftp://ftp.gnu.org");
// Returns a map of headers.
h.checkPoint("Test HTTPS");
check(h, "https://www.gmx.net/");
try
{
// Returns an empty map.
h.checkPoint("Test JAR");
File jarfile = h.getResourceFile("gnu#testlet#java#util#jar#JarFile#jartest.jar");
check(h, "jar:file:" + jarfile.toString() + "!/");
h.checkPoint("Test File");
check(h, "file://" + jarfile.toString());
}
catch (ResourceNotFoundException e)
{
h.debug("Unexpected exception");
h.debug(e);
}
}
}
|