use of ch.cyberduck.core.pool.StatelessSessionPool in project cyberduck by iterate-ch.
the class SessionListWorkerTest method testCacheNotFoundWithController.
@Test
public void testCacheNotFoundWithController() throws Exception {
final Host host = new Host(new TestProtocol(), "localhost");
final Session<?> session = new NullTransferSession(host);
final PathCache cache = new PathCache(1);
final SessionListWorker worker = new SessionListWorker(cache, new Path("/home/notfound", EnumSet.of(Path.Type.directory)), new DisabledListProgressListener());
final Controller c = new AbstractController() {
@Override
public void invoke(final MainAction runnable, final boolean wait) {
runnable.run();
}
};
final Future<AttributedList<Path>> task = c.background(new WorkerBackgroundAction<AttributedList<Path>>(c, new StatelessSessionPool(new TestLoginConnectionService(), session, new DisabledTranscriptListener(), new DefaultVaultRegistry(new DisabledPasswordCallback())), worker));
assertTrue(task.get().isEmpty());
}
use of ch.cyberduck.core.pool.StatelessSessionPool in project cyberduck by iterate-ch.
the class SessionBackgroundActionTest method testGetExceptionConnectionCanceledException.
@Test
public void testGetExceptionConnectionCanceledException() {
SessionBackgroundAction<Void> a = new SessionBackgroundAction<Void>(new StatelessSessionPool(new TestLoginConnectionService(), new NullSession(new Host(new TestProtocol(), "t")), new DisabledTranscriptListener(), new DefaultVaultRegistry(new DisabledPasswordCallback())), new DisabledAlertCallback(), new DisabledProgressListener()) {
@Override
public Void run(final Session<?> session) throws BackgroundException {
throw new ConnectionCanceledException();
}
};
try {
a.call();
fail();
} catch (BackgroundException e) {
// Ignore
}
assertFalse(a.hasFailed());
}
use of ch.cyberduck.core.pool.StatelessSessionPool in project cyberduck by iterate-ch.
the class TransferBackgroundActionTest method testCopyBetweenHosts.
@Test
public void testCopyBetweenHosts() throws Exception {
final Session session = new NullTransferSession(new Host(new TestProtocol(), "test.cyberduck.ch"));
final Session destination = new NullTransferSession(new Host(new TestProtocol(), "test.cyberduck.ch"));
final Path directory = new Path("/home/jenkins/transfer", EnumSet.of(Path.Type.directory));
final Path test = new Path(directory, "test", EnumSet.of(Path.Type.file));
test.attributes().setSize(0L);
final Path copy = new Path(new Path("/transfer", EnumSet.of(Path.Type.directory)), UUID.randomUUID().toString(), EnumSet.of(Path.Type.file));
final Transfer t = new CopyTransfer(session.getHost(), destination.getHost(), Collections.singletonMap(test, copy)) {
@Override
public TransferAction action(final Session<?> source, final Session<?> destination, final boolean resumeRequested, final boolean reloadRequested, final TransferPrompt prompt, final ListProgressListener listener) {
return TransferAction.overwrite;
}
};
final AbstractController controller = new AbstractController() {
@Override
public void invoke(final MainAction runnable, final boolean wait) {
runnable.run();
}
};
final AtomicBoolean start = new AtomicBoolean();
final AtomicBoolean stop = new AtomicBoolean();
final TransferBackgroundAction action = new TransferBackgroundAction(controller, new StatelessSessionPool(new TestLoginConnectionService(), session, new DisabledTranscriptListener(), new DefaultVaultRegistry(new DisabledPasswordCallback())), new StatelessSessionPool(new TestLoginConnectionService(), destination, new DisabledTranscriptListener(), new DefaultVaultRegistry(new DisabledPasswordCallback())), new TransferListener() {
@Override
public void transferDidStart(final Transfer transfer) {
assertEquals(t, transfer);
start.set(true);
}
@Override
public void transferDidStop(final Transfer transfer) {
assertEquals(t, transfer);
stop.set(true);
}
@Override
public void transferDidProgress(final Transfer transfer, final TransferProgress status) {
//
}
}, t, new TransferOptions());
action.prepare();
action.call();
action.finish();
assertFalse(action.hasFailed());
assertTrue(start.get());
assertTrue(stop.get());
assertTrue(t.isComplete());
assertNotNull(t.getTimestamp());
}
use of ch.cyberduck.core.pool.StatelessSessionPool in project cyberduck by iterate-ch.
the class SessionBackgroundActionTest method testGetExceptionLoginCanceledException.
@Test
public void testGetExceptionLoginCanceledException() {
final BackgroundException failure = new LoginCanceledException();
SessionBackgroundAction<Void> a = new SessionBackgroundAction<Void>(new StatelessSessionPool(new TestLoginConnectionService(), new NullSession(new Host(new TestProtocol(), "t")), new DisabledTranscriptListener(), new DefaultVaultRegistry(new DisabledPasswordCallback())), new AlertCallback() {
@Override
public boolean alert(final Host repeatableBackgroundAction, final BackgroundException f, final StringBuilder transcript) {
assertEquals(failure, f);
return false;
}
}, new DisabledProgressListener()) {
@Override
public Void run(final Session<?> session) throws BackgroundException {
throw failure;
}
};
try {
a.call();
fail();
} catch (BackgroundException e) {
// Ignore
}
assertFalse(a.hasFailed());
}
use of ch.cyberduck.core.pool.StatelessSessionPool in project cyberduck by iterate-ch.
the class SessionBackgroundActionTest method testGetExceptionFailure.
@Test
public void testGetExceptionFailure() {
final BackgroundException failure = new BackgroundException(new RuntimeException());
SessionBackgroundAction<Void> a = new SessionBackgroundAction<Void>(new StatelessSessionPool(new TestLoginConnectionService(), new NullSession(new Host(new TestProtocol(), "t")), new DisabledTranscriptListener(), new DefaultVaultRegistry(new DisabledPasswordCallback())), new AlertCallback() {
@Override
public boolean alert(final Host repeatableBackgroundAction, final BackgroundException f, final StringBuilder transcript) {
assertEquals(failure, f);
return false;
}
}, new DisabledProgressListener()) {
@Override
public Void run(final Session<?> session) throws BackgroundException {
throw failure;
}
};
try {
a.call();
fail();
} catch (BackgroundException e) {
// Ignore
}
assertTrue(a.hasFailed());
}
Aggregations