Source Code Cross Referenced for TestAutoModeTransfer.java in  » Net » edtftpj » com » enterprisedt » net » ftp » test » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Net » edtftpj » com.enterprisedt.net.ftp.test 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /**
002:         *
003:         *  Java FTP client library.
004:         *
005:         *  Copyright (C) 2000  Enterprise Distributed Technologies Ltd
006:         *
007:         *  www.enterprisedt.com
008:         *
009:         *  This library is free software; you can redistribute it and/or
010:         *  modify it under the terms of the GNU Lesser General Public
011:         *  License as published by the Free Software Foundation; either
012:         *  version 2.1 of the License, or (at your option) any later version.
013:         *
014:         *  This library is distributed in the hope that it will be useful,
015:         *  but WITHOUT ANY WARRANTY; without even the implied warranty of
016:         *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
017:         *  Lesser General Public License for more details.
018:         *
019:         *  You should have received a copy of the GNU Lesser General Public
020:         *  License along with this library; if not, write to the Free Software
021:         *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
022:         *
023:         *  Bug fixes, suggestions and comments should be should posted on 
024:         *  http://www.enterprisedt.com/forums/index.php
025:         *
026:         *  Change Log:
027:         *
028:         *        $Log: TestAutoModeTransfer.java,v $
029:         *        Revision 1.1  2007/02/06 07:23:09  bruceb
030:         *        test autodetect transfer mode
031:         *
032:         *        Revision 1.10  2007/01/10 02:39:11  bruceb
033:         *        added testTransferUnique
034:         *
035:         *        Revision 1.9  2006/10/11 08:59:54  hans
036:         *        Organised imports.
037:         *
038:         *        Revision 1.8  2005/10/10 20:43:39  bruceb
039:         *        append now in FTPClientInterface
040:         *
041:         *        Revision 1.7  2005/07/15 17:30:06  bruceb
042:         *        rework of unit testing structure
043:         *
044:         *        Revision 1.6  2005/06/03 11:27:05  bruceb
045:         *        comment update
046:         *
047:         *        Revision 1.5  2004/08/31 10:44:49  bruceb
048:         *        minor tweaks re compile warnings
049:         *
050:         *        Revision 1.4  2004/05/01 17:05:43  bruceb
051:         *        Logger stuff added
052:         *
053:         *        Revision 1.3  2003/11/03 21:18:51  bruceb
054:         *        added test of progress callback
055:         *
056:         *        Revision 1.2  2003/05/31 14:54:05  bruceb
057:         *        cleaned up unused imports
058:         *
059:         *        Revision 1.1  2002/11/19 22:00:15  bruceb
060:         *        New JUnit test cases
061:         *
062:         *
063:         */package com.enterprisedt.net.ftp.test;
064:
065:        import java.io.File;
066:
067:        import junit.framework.Test;
068:        import junit.framework.TestSuite;
069:
070:        import com.enterprisedt.net.ftp.FTPClientInterface;
071:        import com.enterprisedt.net.ftp.FTPProgressMonitor;
072:        import com.enterprisedt.net.ftp.FTPTransferType;
073:
074:        /**
075:         *  Test automatic switching between ASCII & binary files
076:         *
077:         *  @author     Bruce Blackshaw
078:         *  @version    $Revision: 1.1 $
079:         */
080:        public class TestAutoModeTransfer extends FTPTestCase {
081:
082:            /**
083:             *  Revision control id
084:             */
085:            public static String cvsId = "@(#)$Id: TestAutoModeTransfer.java,v 1.1 2007/02/06 07:23:09 bruceb Exp $";
086:
087:            /**
088:             *  Get name of log file
089:             *
090:             *  @return name of file to log to
091:             */
092:            protected String getLogName() {
093:                return "TestAutoModeTransfer.log";
094:            }
095:
096:            /**
097:             *  Test transfering files with auto switched on
098:             */
099:            public void testAutoModeTransfer() throws Exception {
100:
101:                log.debug("testAutoModeTransfer()");
102:
103:                connect();
104:
105:                // move to test directory
106:                ftp.chdir(testdir);
107:                ftp.setType(FTPTransferType.BINARY);
108:                ftp.setDetectTransferMode(true);
109:
110:                TestProgressMonitor monitor = new TestProgressMonitor(ftp);
111:                ftp.setProgressMonitor(monitor, 1000);
112:
113:                // put to a random filename
114:                String filename = generateRandomFilename() + ".txt";
115:                ftp.put(localDataDir + localTextFile, filename);
116:
117:                assertTrue(ftp.getType().equals(FTPTransferType.BINARY));
118:                assertTrue(monitor.getType().equals(FTPTransferType.ASCII));
119:
120:                // get it back        
121:                ftp.get(localDataDir + filename, filename);
122:
123:                assertTrue(ftp.getType().equals(FTPTransferType.BINARY));
124:                assertTrue(monitor.getType().equals(FTPTransferType.ASCII));
125:
126:                // delete remote file
127:                ftp.delete(filename);
128:
129:                // check equality of local files
130:                assertIdentical(localDataDir + localTextFile, localDataDir
131:                        + filename);
132:
133:                // and delete local file
134:                File local = new File(localDataDir + filename);
135:                local.delete();
136:
137:                ftp.setType(FTPTransferType.ASCII);
138:
139:                filename = generateRandomFilename() + ".exe";
140:                ftp.put(localDataDir + localBinaryFile, filename);
141:
142:                assertTrue(ftp.getType().equals(FTPTransferType.ASCII));
143:                assertTrue(monitor.getType().equals(FTPTransferType.BINARY));
144:
145:                // get it back        
146:                ftp.get(localDataDir + filename, filename);
147:
148:                assertTrue(ftp.getType().equals(FTPTransferType.ASCII));
149:                assertTrue(monitor.getType().equals(FTPTransferType.BINARY));
150:
151:                // delete remote file
152:                ftp.delete(filename);
153:
154:                // check equality of local files
155:                assertIdentical(localDataDir + localBinaryFile, localDataDir
156:                        + filename);
157:
158:                // and delete local file
159:                local = new File(localDataDir + filename);
160:                local.delete();
161:
162:                ftp.quit();
163:            }
164:
165:            /**
166:             *  We use the progress monitor to grab a snapshot of the transfer
167:             *  type during the transfer
168:             */
169:            class TestProgressMonitor implements  FTPProgressMonitor {
170:
171:                /**
172:                 * FTPClient reference
173:                 */
174:                private FTPClientInterface ftpClient;
175:
176:                private FTPTransferType type;
177:
178:                /**
179:                 * Constructor
180:                 * 
181:                 * @param ftp   FTP client reference
182:                 */
183:                public TestProgressMonitor(FTPClientInterface ftp) {
184:                    this .ftpClient = ftp;
185:                }
186:
187:                public FTPTransferType getType() {
188:                    return type;
189:                }
190:
191:                public void setType(FTPTransferType type) {
192:                    this .type = type;
193:                }
194:
195:                /* (non-Javadoc)
196:                 * @see com.enterprisedt.net.ftp.FTPProgressMonitor#bytesTransferred(long)
197:                 */
198:                public void bytesTransferred(long count) {
199:                    log.debug("Saving transfer type (count=" + count + ")");
200:                    type = ftpClient.getType();
201:                }
202:            }
203:
204:            /**
205:             *  Automatic test suite construction
206:             *
207:             *  @return  suite of tests for this class
208:             */
209:            public static Test suite() {
210:                return new TestSuite(TestAutoModeTransfer.class);
211:            }
212:
213:            /**
214:             *  Enable our class to be run, doing the
215:             *  tests
216:             */
217:            public static void main(String[] args) {
218:                junit.textui.TestRunner.run(suite());
219:            }
220:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.