TestResume.cs :  » Network-Clients » edtFTPnet » EnterpriseDT » Net » Ftp » Test » C# / CSharp Open Source

Home
C# / CSharp Open Source
1.2.6.4 mono .net core
2.2.6.4 mono core
3.Aspect Oriented Frameworks
4.Bloggers
5.Build Systems
6.Business Application
7.Charting Reporting Tools
8.Chat Servers
9.Code Coverage Tools
10.Content Management Systems CMS
11.CRM ERP
12.Database
13.Development
14.Email
15.Forum
16.Game
17.GIS
18.GUI
19.IDEs
20.Installers Generators
21.Inversion of Control Dependency Injection
22.Issue Tracking
23.Logging Tools
24.Message
25.Mobile
26.Network Clients
27.Network Servers
28.Office
29.PDF
30.Persistence Frameworks
31.Portals
32.Profilers
33.Project Management
34.RSS RDF
35.Rule Engines
36.Script
37.Search Engines
38.Sound Audio
39.Source Control
40.SQL Clients
41.Template Engines
42.Testing
43.UML
44.Web Frameworks
45.Web Service
46.Web Testing
47.Wiki Engines
48.Windows Presentation Foundation
49.Workflows
50.XML Parsers
C# / C Sharp
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source » Network Clients » edtFTPnet 
edtFTPnet » EnterpriseDT » Net » Ftp » Test » TestResume.cs
// edtFTPnet
// 
// Copyright (C) 2004 Enterprise Distributed Technologies Ltd
// 
// www.enterprisedt.com
// 
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public
// License as published by the Free Software Foundation; either
// version 2.1 of the License, or (at your option) any later version.
// 
// This library 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
// Lesser General Public License for more details.
// 
// You should have received a copy of the GNU Lesser General Public
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
// 
// Bug fixes, suggestions and comments should posted on 
// http://www.enterprisedt.com/forums/index.php
// 
// Change Log:
// 
// $Log: TestResume.cs,v $
// Revision 1.5  2008-06-17 06:12:13  bruceb
// net cf changes
//
// Revision 1.4  2007-11-22 01:31:39  bruceb
// FTPTransferCancelledException
//
// Revision 1.3  2005/08/04 21:55:46  bruceb
// changes for re-jigged test subdirs
//
// Revision 1.2  2004/11/20 22:38:22  bruceb
// catch and rethrow exceptions, double get() to test if appends
//
// Revision 1.1  2004/11/13 19:14:33  bruceb
// first cut of tests
//
//

using System;
using System.IO;
using NUnit.Framework;
using EnterpriseDT.Net.Ftp;

namespace EnterpriseDT.Net.Ftp.Test{
  /// <summary>  
  /// Test resuming of binary transfers when interrupted
  /// </summary>
  /// <author>      Bruce Blackshaw
  /// </author>
  /// <version>     $Revision: 1.5 $
  /// </version>
    [TestFixture]
    [Category("edtFTPnet")]
  public class TestResume:FTPTestCase
  {
    /// <summary>  
    /// Get name of log file
    /// </summary>
    override internal string LogName
    {
      get
      {
        return "TestResume.log";
            }
    }
        
    /// <summary> 
        /// Flag used to determine if a transfer should be cancelled
        /// </summary>
        private bool cancelled = false;
        
        
    /// <summary> 
        /// Logs count of bytes transferred via event
        /// </summary>
      internal void CancelBytesTransferred(object obj, BytesTransferredEventArgs args) 
      {
            if (!cancelled) 
            {
                log.Debug("BytesTransferred: cancelling transfer");
                ftp.CancelTransfer();
                cancelled = true;
            }
      }

        /// <summary>Test resuming when putting a binary file</summary>
        [Test]
    public virtual void ResumePut()
    {
      log.Debug("ResumePut()");
      
            try 
            {
          Connect();
          Login();
          
          // move to test directory
          ftp.ChDir(testdir);
          ftp.TransferType = FTPTransferType.BINARY;
          
          // put to a random filename
          string filename = GenerateRandomFilename();
                
                // set up event handler to cancel the transfer
                cancelled = false;
                BytesTransferredHandler handler = new BytesTransferredHandler(CancelBytesTransferred);
          ftp.BytesTransferred += handler;
                
          // initiate the put
                try
                {
                    ftp.Put(localDataDir + localBinaryFile, filename);
                    Assert.Fail("Should receive cancelled exception");
                }
                catch (FTPTransferCancelledException)
                {
                    log.Debug("Caught expected exception from cancelled transfer");
                }
                
                // remove handler now we've cancelled
          ftp.BytesTransferred -= handler;
                
          // should be cancelled - now resume
          ftp.Resume();
          
          // put again - should append
          ftp.Put(localDataDir + localBinaryFile, filename);
          
          // get it back        
          ftp.Get(localDataDir + filename, filename);
          
          // check equality of local files
          AssertIdentical(localDataDir + localBinaryFile, localDataDir + filename);
          
          // finally, just check cancelResume works
          ftp.CancelResume();
          
          // get it back        
          ftp.Get(localDataDir + filename, filename);
          
          // delete remote file
          ftp.Delete(filename);
          
          // and delete local file
          FileInfo local = new FileInfo(localDataDir + filename);
                local.Delete();
    
                ftp.Quit();
            }
            catch (Exception ex)
            {
                log.Error("ResumePut() failed", ex);
                throw;
            }
    }
    
    /// <summary>Test resuming when putting a binary file</summary>
        [Test]
        public virtual void ResumeGet()
    {
      log.Debug("ResumeGet()");
            try
            {
        Connect();
          Login();
          
          // move to test directory
          ftp.ChDir(testdir);
          ftp.TransferType = FTPTransferType.BINARY;
          
          // put to a random filename
          string filename1 = GenerateRandomFilename();
          
                // set up event handler to cancel the transfer
                cancelled = false;
                BytesTransferredHandler handler = new BytesTransferredHandler(BytesTransferred);
          ftp.BytesTransferred += handler;
          
          // initiate the get
                log.Debug("Getting '" + remoteBinaryFile + "' to '" + filename1 + "'");
             ftp.Get(localDataDir + filename1, remoteBinaryFile);
                    
                // remove handler for next transfer
                ftp.BytesTransferred -= handler;

          // should be cancelled - now resume
          ftp.Resume();
          
          // get again - should append
                log.Debug("Resuming '" + remoteBinaryFile + "' to '" + filename1 + "'");
          ftp.Get(localDataDir + filename1, remoteBinaryFile);
          
          string filename2 = GenerateRandomFilename(); ;
          
          // do another get - complete this time    
          ftp.Get(localDataDir + filename2, remoteBinaryFile);
          
          // check equality of local files
          AssertIdentical(localDataDir + filename1, localDataDir + filename2);
          
          // and delete local files
          FileInfo local = new FileInfo(localDataDir + filename1);
                local.Delete();
          local = new FileInfo(localDataDir + filename2);
          local.Delete();
          
          ftp.Quit();
            }
            catch (Exception ex)
            {
                log.Error("ResumeGet() failed", ex);
                throw;
            }

    }
  }
}
www.java2v.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.