Introduce DisconnectionRequestManager

This commit is contained in:
Jon Chambers
2024-11-11 09:52:18 -05:00
committed by Jon Chambers
parent 1323b42169
commit 7e861f388f
6 changed files with 305 additions and 0 deletions

View File

@@ -0,0 +1,99 @@
/*
* Copyright 2024 Signal Messenger, LLC
* SPDX-License-Identifier: AGPL-3.0-only
*/
package org.whispersystems.textsecuregcm.auth;
import static org.junit.jupiter.api.Assertions.assertEquals;
import java.util.Collection;
import java.util.List;
import java.util.UUID;
import java.util.concurrent.CountDownLatch;
import org.junit.jupiter.api.AfterEach;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.Timeout;
import org.junit.jupiter.api.extension.RegisterExtension;
import org.whispersystems.textsecuregcm.redis.RedisServerExtension;
import org.whispersystems.textsecuregcm.storage.Device;
@Timeout(value = 5, threadMode = Timeout.ThreadMode.SEPARATE_THREAD)
class DisconnectionRequestManagerTest {
private DisconnectionRequestManager disconnectionRequestManager;
@RegisterExtension
static final RedisServerExtension REDIS_EXTENSION = RedisServerExtension.builder().build();
private static class DisconnectionRequestTestListener implements DisconnectionRequestListener {
private final CountDownLatch requestLatch = new CountDownLatch(1);
private UUID accountIdentifier;
private Collection<Byte> deviceIds;
@Override
public void handleDisconnectionRequest(final UUID accountIdentifier, final Collection<Byte> deviceIds) {
this.accountIdentifier = accountIdentifier;
this.deviceIds = deviceIds;
requestLatch.countDown();
}
public UUID getAccountIdentifier() {
return accountIdentifier;
}
public Collection<Byte> getDeviceIds() {
return deviceIds;
}
public void waitForRequest() throws InterruptedException {
requestLatch.await();
}
}
@BeforeEach
void setUp() {
disconnectionRequestManager = new DisconnectionRequestManager(REDIS_EXTENSION.getRedisClient(), Runnable::run);
disconnectionRequestManager.start();
}
@AfterEach
void tearDown() {
disconnectionRequestManager.stop();
}
@Test
void requestDisconnection() throws InterruptedException {
final UUID accountIdentifier = UUID.randomUUID();
final List<Byte> deviceIds = List.of(Device.PRIMARY_ID, (byte) (Device.PRIMARY_ID + 1));
final DisconnectionRequestTestListener listener = new DisconnectionRequestTestListener();
disconnectionRequestManager.addListener(listener);
disconnectionRequestManager.requestDisconnection(accountIdentifier, deviceIds).toCompletableFuture().join();
listener.waitForRequest();
assertEquals(accountIdentifier, listener.getAccountIdentifier());
assertEquals(deviceIds, listener.getDeviceIds());
}
@Test
void requestDisconnectionAllDevices() throws InterruptedException {
final UUID accountIdentifier = UUID.randomUUID();
final DisconnectionRequestTestListener listener = new DisconnectionRequestTestListener();
disconnectionRequestManager.addListener(listener);
disconnectionRequestManager.requestDisconnection(accountIdentifier).toCompletableFuture().join();
listener.waitForRequest();
assertEquals(accountIdentifier, listener.getAccountIdentifier());
assertEquals(Device.ALL_POSSIBLE_DEVICE_IDS, listener.getDeviceIds());
}
}