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: }
|