}
@Test
public void test() throws Exception {
Client c = new Client("localhost");
c.connect(5, TimeUnit.SECONDS);
File target = new File(new File("."), "test");
Assert.assertFalse(target.exists());
byte[] data = new byte[RANDOM.nextInt(1024 * 1024) + 1];
RANDOM.nextBytes(data);
Put put = new Put(target, data);