2 * Jalview - A Sequence Alignment Editor and Viewer ($$Version-Rel$$)
3 * Copyright (C) $$Year-Rel$$ The Jalview Authors
5 * This file is part of Jalview.
7 * Jalview is free software: you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * as published by the Free Software Foundation, either version 3
10 * of the License, or (at your option) any later version.
12 * Jalview is distributed in the hope that it will be useful, but
13 * WITHOUT ANY WARRANTY; without even the implied warranty
14 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15 * PURPOSE. See the GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with Jalview. If not, see <http://www.gnu.org/licenses/>.
19 * The Jalview Authors are detailed in the 'AUTHORS' file.
21 package jalview.ws.utils;
24 import java.io.IOException;
26 import org.testng.Assert;
27 import org.testng.annotations.Test;
29 public class UrlDownloadClientTest {
32 * Test that url is successfully loaded into download file
34 @Test(groups = { "Network" }, enabled = true)
35 public void UrlDownloadTest()
37 UrlDownloadClient client = new UrlDownloadClient();
38 String urlstring = "http://identifiers.org/rest/collections/";
39 String outfile = "testfile.tmp";
43 client.download(urlstring, outfile);
44 } catch (IOException e)
46 Assert.fail("Exception was thrown from UrlDownloadClient download: "
48 File f = new File(outfile);
55 // download file exists
56 File f = new File(outfile);
57 Assert.assertTrue(f.exists());
59 // download file has a believable size
60 // identifiers.org file typically at least 250K
61 Assert.assertTrue(f.length() > 250000);
71 * Test that garbage in results in IOException
74 groups = { "Network" },
76 expectedExceptions = { IOException.class })
77 public void DownloadGarbageUrlTest() throws IOException
79 UrlDownloadClient client = new UrlDownloadClient();
80 String urlstring = "identifiers.org/rest/collections/";
81 String outfile = "testfile.tmp";
83 client.download(urlstring, outfile);