mirror of
https://codeberg.org/Mercury-IM/Smack
synced 2025-12-05 12:41:08 +01:00
Prefix subprojects with 'smack-'
instead of using the old baseName=smack appendix=project.name approach, we are now going convention over configuration and renaming the subprojects directories to the proper name. Having a prefix is actually very helpful, because the resulting libraries will be named like the subproject. And a core-4.0.0-rc1.jar is not as explicit about what it actually *is* as a smack-core-4.0.0-rc1.jar. SMACK-265
This commit is contained in:
parent
b6fb1f3743
commit
91fd15ad86
758 changed files with 42 additions and 42 deletions
|
|
@ -1,119 +0,0 @@
|
|||
/**
|
||||
*
|
||||
* Copyright 2006 Jive Software.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
package org.jivesoftware.smackx;
|
||||
|
||||
import org.jivesoftware.smack.test.SmackTestCase;
|
||||
import org.jivesoftware.smack.XMPPException;
|
||||
import org.jivesoftware.smackx.filetransfer.*;
|
||||
|
||||
import java.io.OutputStream;
|
||||
import java.io.InputStream;
|
||||
import java.io.IOException;
|
||||
import java.util.concurrent.SynchronousQueue;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
public class FileTransferTest extends SmackTestCase {
|
||||
|
||||
int receiveCount = -1;
|
||||
|
||||
Exception exception;
|
||||
|
||||
public FileTransferTest(String arg0) {
|
||||
super(arg0);
|
||||
}
|
||||
|
||||
public void testInbandFileTransfer() throws Exception {
|
||||
FileTransferNegotiator.IBB_ONLY = true;
|
||||
try {
|
||||
testFileTransfer();
|
||||
}
|
||||
finally {
|
||||
FileTransferNegotiator.IBB_ONLY = false;
|
||||
}
|
||||
}
|
||||
|
||||
public void testFileTransfer() throws Exception {
|
||||
final byte [] testTransfer = "This is a test transfer".getBytes();
|
||||
final SynchronousQueue<byte[]> queue = new SynchronousQueue<byte[]>();
|
||||
FileTransferManager manager1 = new FileTransferManager(getConnection(0));
|
||||
manager1.addFileTransferListener(new FileTransferListener() {
|
||||
public void fileTransferRequest(final FileTransferRequest request) {
|
||||
new Thread(new Runnable() {
|
||||
public void run() {
|
||||
IncomingFileTransfer transfer = request.accept();
|
||||
InputStream stream;
|
||||
try {
|
||||
stream = transfer.recieveFile();
|
||||
}
|
||||
catch (XMPPException e) {
|
||||
exception = e;
|
||||
return;
|
||||
}
|
||||
byte [] testRecieve = new byte[testTransfer.length];
|
||||
int receiveCount = 0;
|
||||
try {
|
||||
while (receiveCount != -1) {
|
||||
receiveCount = stream.read(testRecieve);
|
||||
}
|
||||
}
|
||||
catch (IOException e) {
|
||||
exception = e;
|
||||
}
|
||||
finally {
|
||||
try {
|
||||
stream.close();
|
||||
}
|
||||
catch (IOException e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
}
|
||||
try {
|
||||
queue.put(testRecieve);
|
||||
}
|
||||
catch (InterruptedException e) {
|
||||
exception = e;
|
||||
}
|
||||
}
|
||||
}).start();
|
||||
}
|
||||
});
|
||||
|
||||
// Send the file from user1 to user0
|
||||
FileTransferManager manager2 = new FileTransferManager(getConnection(1));
|
||||
OutgoingFileTransfer outgoing = manager2.createOutgoingFileTransfer(getFullJID(0));
|
||||
|
||||
OutputStream stream =
|
||||
outgoing.sendFile("test.txt", testTransfer.length, "The great work of robin hood");
|
||||
stream.write(testTransfer);
|
||||
stream.flush();
|
||||
stream.close();
|
||||
|
||||
if(exception != null) {
|
||||
exception.printStackTrace();
|
||||
fail();
|
||||
}
|
||||
byte [] array = queue.take();
|
||||
assertEquals("Recieved file not equal to sent file.", testTransfer, array);
|
||||
}
|
||||
|
||||
|
||||
protected int getMaxConnections() {
|
||||
return 2;
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue