Examples of DownloadRequest


Examples of org.rssowl.ui.internal.services.DownloadService.DownloadRequest

  public void testAttachmentNoNameGivenFileExists() throws Exception {
    File tmpDir = getTmpDir();

    Date date = new Date(System.currentTimeMillis());

    DownloadRequest request = getAttachmentDownloadRequest("http://www.rssowl.org/rssowl2dg/tests/download/test.txt", null, 0, tmpDir, null, date);
    fService.download(request);

    File download = new File(tmpDir, "test.txt");
    assertTrue(download.exists());
View Full Code Here

Examples of org.rssowl.ui.internal.services.DownloadService.DownloadRequest

   */
  @Test
  public void testNewsTextFile() throws Exception {
    File tmpDir = getTmpDir();

    DownloadRequest request = getNewsDownloadRequest("http://www.rssowl.org/rssowl2dg/tests/download/test.txt", tmpDir);
    fService.download(request);

    File download = new File(tmpDir, "test.txt");
    assertTrue(download.exists());
    download.delete();
View Full Code Here

Examples of org.rssowl.ui.internal.services.DownloadService.DownloadRequest

   */
  @Test
  public void testNewsWebsite() throws Exception {
    File tmpDir = getTmpDir();

    DownloadRequest request = getNewsDownloadRequest("http://www.rssowl.org/rssowl2dg/tests/download/test.html", tmpDir);
    fService.download(request);

    File download = new File(tmpDir, "test.html");
    assertTrue(!download.exists());
  }
View Full Code Here

Examples of org.rssowl.ui.internal.services.DownloadService.DownloadRequest

   */
  @Test
  public void testNewsContentDisposition() throws Exception {
    File tmpDir = getTmpDir();

    DownloadRequest request = getNewsDownloadRequest("http://www.jtricks.com/download-text", tmpDir);
    fService.download(request);

    File download = new File(tmpDir, "content.txt");
    assertTrue(download.exists());
    download.delete();
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.