Rename to Mailbox update

This commit is contained in:
Daniel Lublin
2022-05-16 09:59:38 +02:00
parent d2728dd29b
commit 3f7aed7886
21 changed files with 348 additions and 387 deletions

View File

@@ -9,7 +9,7 @@ import org.briarproject.bramble.api.data.BdfList;
import org.briarproject.bramble.api.db.DbException; import org.briarproject.bramble.api.db.DbException;
import org.briarproject.bramble.api.db.Transaction; import org.briarproject.bramble.api.db.Transaction;
import org.briarproject.bramble.api.identity.Author; import org.briarproject.bramble.api.identity.Author;
import org.briarproject.bramble.api.mailbox.MailboxPropertiesUpdate; import org.briarproject.bramble.api.mailbox.MailboxUpdate;
import org.briarproject.bramble.api.nullsafety.NotNullByDefault; import org.briarproject.bramble.api.nullsafety.NotNullByDefault;
import org.briarproject.bramble.api.plugin.TransportId; import org.briarproject.bramble.api.plugin.TransportId;
import org.briarproject.bramble.api.properties.TransportProperties; import org.briarproject.bramble.api.properties.TransportProperties;
@@ -125,14 +125,14 @@ public interface ClientHelper {
BdfDictionary properties) throws FormatException; BdfDictionary properties) throws FormatException;
/** /**
* Parse and validate the elements of a Mailbox property update message. * Parse and validate the elements of a Mailbox update message.
* *
* @return the parsed update message * @return the parsed update message
* @throws FormatException if the message elements are invalid * @throws FormatException if the message elements are invalid
*/ */
MailboxPropertiesUpdate parseAndValidateMailboxPropertiesUpdate( MailboxUpdate parseAndValidateMailboxUpdate(BdfList clientSupports,
BdfList clientSupports, BdfList serverSupports, BdfList serverSupports, BdfDictionary properties)
BdfDictionary properties) throws FormatException; throws FormatException;
/** /**
* Retrieves the contact ID from the group metadata of the given contact * Retrieves the contact ID from the group metadata of the given contact

View File

@@ -8,12 +8,12 @@ import javax.annotation.concurrent.Immutable;
@Immutable @Immutable
@NotNullByDefault @NotNullByDefault
public class MailboxPropertiesUpdate { public class MailboxUpdate {
boolean hasMailbox; boolean hasMailbox;
private final List<MailboxVersion> clientSupports; private final List<MailboxVersion> clientSupports;
public MailboxPropertiesUpdate(List<MailboxVersion> clientSupports) { public MailboxUpdate(List<MailboxVersion> clientSupports) {
this.hasMailbox = false; this.hasMailbox = false;
this.clientSupports = clientSupports; this.clientSupports = clientSupports;
} }

View File

@@ -9,31 +9,31 @@ import org.briarproject.bramble.api.sync.ClientId;
import javax.annotation.Nullable; import javax.annotation.Nullable;
@NotNullByDefault @NotNullByDefault
public interface MailboxPropertyManager { public interface MailboxUpdateManager {
/** /**
* The unique ID of the mailbox property client. * The unique ID of the mailbox update (properties) client.
*/ */
ClientId CLIENT_ID = ClientId CLIENT_ID =
new ClientId("org.briarproject.bramble.mailbox.properties"); new ClientId("org.briarproject.bramble.mailbox.properties");
/** /**
* The current major version of the mailbox property client. * The current major version of the mailbox update (properties) client.
*/ */
int MAJOR_VERSION = 1; int MAJOR_VERSION = 1;
/** /**
* The current minor version of the mailbox property client. * The current minor version of the mailbox update (properties) client.
*/ */
int MINOR_VERSION = 0; int MINOR_VERSION = 0;
/** /**
* The number of properties required for a (non-empty) update message. * The number of properties required for an update message with a mailbox.
*/ */
int PROP_COUNT = 4; int PROP_COUNT = 4;
/** /**
* The required properties of a non-empty update message. * The required properties of an update message with a mailbox.
*/ */
String PROP_KEY_ONION = "onion"; String PROP_KEY_ONION = "onion";
String PROP_KEY_AUTHTOKEN = "authToken"; String PROP_KEY_AUTHTOKEN = "authToken";
@@ -57,10 +57,10 @@ public interface MailboxPropertyManager {
*/ */
String MSG_KEY_LOCAL = "local"; String MSG_KEY_LOCAL = "local";
MailboxPropertiesUpdate getLocalProperties(Transaction txn, ContactId c) MailboxUpdate getLocalUpdate(Transaction txn, ContactId c)
throws DbException; throws DbException;
@Nullable @Nullable
MailboxPropertiesUpdate getRemoteProperties(Transaction txn, ContactId c) MailboxUpdate getRemoteUpdate(Transaction txn, ContactId c)
throws DbException; throws DbException;
} }

View File

@@ -8,14 +8,14 @@ import javax.annotation.concurrent.Immutable;
@Immutable @Immutable
@NotNullByDefault @NotNullByDefault
public class MailboxPropertiesUpdateMailbox extends MailboxPropertiesUpdate { public class MailboxUpdateWithMailbox extends MailboxUpdate {
private final List<MailboxVersion> serverSupports; private final List<MailboxVersion> serverSupports;
private final String onion; private final String onion;
private final MailboxAuthToken authToken; private final MailboxAuthToken authToken;
private final MailboxFolderId inboxId; private final MailboxFolderId inboxId;
private final MailboxFolderId outboxId; private final MailboxFolderId outboxId;
public MailboxPropertiesUpdateMailbox(List<MailboxVersion> clientSupports, public MailboxUpdateWithMailbox(List<MailboxVersion> clientSupports,
List<MailboxVersion> serverSupports, String onion, List<MailboxVersion> serverSupports, String onion,
MailboxAuthToken authToken, MailboxFolderId inboxId, MailboxAuthToken authToken, MailboxFolderId inboxId,
MailboxFolderId outboxId MailboxFolderId outboxId

View File

@@ -1,33 +0,0 @@
package org.briarproject.bramble.api.mailbox;
import org.briarproject.bramble.api.contact.ContactId;
import org.briarproject.bramble.api.event.Event;
import org.briarproject.bramble.api.nullsafety.NotNullByDefault;
import javax.annotation.concurrent.Immutable;
/**
* An event that is broadcast when {@link MailboxPropertiesUpdate} are received
* from a contact.
*/
@Immutable
@NotNullByDefault
public class RemoteMailboxPropertiesUpdateEvent extends Event {
private final ContactId contactId;
private final MailboxPropertiesUpdate mailboxPropertiesUpdate;
public RemoteMailboxPropertiesUpdateEvent(ContactId contactId,
MailboxPropertiesUpdate mailboxPropertiesUpdate) {
this.contactId = contactId;
this.mailboxPropertiesUpdate = mailboxPropertiesUpdate;
}
public ContactId getContact() {
return contactId;
}
public MailboxPropertiesUpdate getMailboxPropertiesUpdate() {
return mailboxPropertiesUpdate;
}
}

View File

@@ -0,0 +1,33 @@
package org.briarproject.bramble.api.mailbox;
import org.briarproject.bramble.api.contact.ContactId;
import org.briarproject.bramble.api.event.Event;
import org.briarproject.bramble.api.nullsafety.NotNullByDefault;
import javax.annotation.concurrent.Immutable;
/**
* An event that is broadcast when {@link MailboxUpdate} are received
* from a contact.
*/
@Immutable
@NotNullByDefault
public class RemoteMailboxUpdateEvent extends Event {
private final ContactId contactId;
private final MailboxUpdate mailboxUpdate;
public RemoteMailboxUpdateEvent(ContactId contactId,
MailboxUpdate mailboxUpdate) {
this.contactId = contactId;
this.mailboxUpdate = mailboxUpdate;
}
public ContactId getContact() {
return contactId;
}
public MailboxUpdate getMailboxUpdate() {
return mailboxUpdate;
}
}

View File

@@ -21,8 +21,8 @@ import org.briarproject.bramble.api.identity.AuthorId;
import org.briarproject.bramble.api.identity.Identity; import org.briarproject.bramble.api.identity.Identity;
import org.briarproject.bramble.api.identity.LocalAuthor; import org.briarproject.bramble.api.identity.LocalAuthor;
import org.briarproject.bramble.api.mailbox.MailboxProperties; import org.briarproject.bramble.api.mailbox.MailboxProperties;
import org.briarproject.bramble.api.mailbox.MailboxPropertiesUpdate; import org.briarproject.bramble.api.mailbox.MailboxUpdate;
import org.briarproject.bramble.api.mailbox.MailboxPropertiesUpdateMailbox; import org.briarproject.bramble.api.mailbox.MailboxUpdateWithMailbox;
import org.briarproject.bramble.api.plugin.TransportId; import org.briarproject.bramble.api.plugin.TransportId;
import org.briarproject.bramble.api.properties.TransportProperties; import org.briarproject.bramble.api.properties.TransportProperties;
import org.briarproject.bramble.api.sync.ClientId; import org.briarproject.bramble.api.sync.ClientId;
@@ -281,19 +281,16 @@ public class TestUtils {
asList(optionalTests.split(",")).contains(testClass.getName()); asList(optionalTests.split(",")).contains(testClass.getName());
} }
public static boolean mailboxPropertiesUpdateEqual( public static boolean mailboxUpdateEqual(@Nullable MailboxUpdate a,
@Nullable MailboxPropertiesUpdate a, @Nullable MailboxUpdate b) {
@Nullable MailboxPropertiesUpdate b) {
if (a == null || b == null) { if (a == null || b == null) {
return a == b; return a == b;
} }
if (!a.hasMailbox() && !b.hasMailbox()) { if (!a.hasMailbox() && !b.hasMailbox()) {
return a.getClientSupports().equals(b.getClientSupports()); return a.getClientSupports().equals(b.getClientSupports());
} else if (a.hasMailbox() && b.hasMailbox()) { } else if (a.hasMailbox() && b.hasMailbox()) {
MailboxPropertiesUpdateMailbox am = MailboxUpdateWithMailbox am = (MailboxUpdateWithMailbox) a;
(MailboxPropertiesUpdateMailbox) a; MailboxUpdateWithMailbox bm = (MailboxUpdateWithMailbox) b;
MailboxPropertiesUpdateMailbox bm =
(MailboxPropertiesUpdateMailbox) b;
return am.getClientSupports().equals(bm.getClientSupports()) && return am.getClientSupports().equals(bm.getClientSupports()) &&
am.getServerSupports().equals(bm.getServerSupports()) && am.getServerSupports().equals(bm.getServerSupports()) &&
am.getOnion().equals(bm.getOnion()) && am.getOnion().equals(bm.getOnion()) &&
@@ -304,8 +301,7 @@ public class TestUtils {
return false; return false;
} }
public static boolean mailboxPropertiesEqual( public static boolean mailboxPropertiesEqual(@Nullable MailboxProperties a,
@Nullable MailboxProperties a,
@Nullable MailboxProperties b) { @Nullable MailboxProperties b) {
if (a == null || b == null) { if (a == null || b == null) {
return a == b; return a == b;

View File

@@ -25,8 +25,8 @@ import org.briarproject.bramble.api.identity.Author;
import org.briarproject.bramble.api.identity.AuthorFactory; import org.briarproject.bramble.api.identity.AuthorFactory;
import org.briarproject.bramble.api.mailbox.MailboxAuthToken; import org.briarproject.bramble.api.mailbox.MailboxAuthToken;
import org.briarproject.bramble.api.mailbox.MailboxFolderId; import org.briarproject.bramble.api.mailbox.MailboxFolderId;
import org.briarproject.bramble.api.mailbox.MailboxPropertiesUpdate; import org.briarproject.bramble.api.mailbox.MailboxUpdate;
import org.briarproject.bramble.api.mailbox.MailboxPropertiesUpdateMailbox; import org.briarproject.bramble.api.mailbox.MailboxUpdateWithMailbox;
import org.briarproject.bramble.api.mailbox.MailboxVersion; import org.briarproject.bramble.api.mailbox.MailboxVersion;
import org.briarproject.bramble.api.nullsafety.NotNullByDefault; import org.briarproject.bramble.api.nullsafety.NotNullByDefault;
import org.briarproject.bramble.api.plugin.TransportId; import org.briarproject.bramble.api.plugin.TransportId;
@@ -55,12 +55,12 @@ import static org.briarproject.bramble.api.client.ContactGroupConstants.GROUP_KE
import static org.briarproject.bramble.api.identity.Author.FORMAT_VERSION; import static org.briarproject.bramble.api.identity.Author.FORMAT_VERSION;
import static org.briarproject.bramble.api.identity.AuthorConstants.MAX_AUTHOR_NAME_LENGTH; import static org.briarproject.bramble.api.identity.AuthorConstants.MAX_AUTHOR_NAME_LENGTH;
import static org.briarproject.bramble.api.identity.AuthorConstants.MAX_PUBLIC_KEY_LENGTH; import static org.briarproject.bramble.api.identity.AuthorConstants.MAX_PUBLIC_KEY_LENGTH;
import static org.briarproject.bramble.api.mailbox.MailboxPropertyManager.PROP_COUNT; import static org.briarproject.bramble.api.mailbox.MailboxUpdateManager.PROP_COUNT;
import static org.briarproject.bramble.api.mailbox.MailboxPropertyManager.PROP_KEY_AUTHTOKEN; import static org.briarproject.bramble.api.mailbox.MailboxUpdateManager.PROP_KEY_AUTHTOKEN;
import static org.briarproject.bramble.api.mailbox.MailboxPropertyManager.PROP_KEY_INBOXID; import static org.briarproject.bramble.api.mailbox.MailboxUpdateManager.PROP_KEY_INBOXID;
import static org.briarproject.bramble.api.mailbox.MailboxPropertyManager.PROP_KEY_ONION; import static org.briarproject.bramble.api.mailbox.MailboxUpdateManager.PROP_KEY_ONION;
import static org.briarproject.bramble.api.mailbox.MailboxPropertyManager.PROP_KEY_OUTBOXID; import static org.briarproject.bramble.api.mailbox.MailboxUpdateManager.PROP_KEY_OUTBOXID;
import static org.briarproject.bramble.api.mailbox.MailboxPropertyManager.PROP_ONION_LENGTH; import static org.briarproject.bramble.api.mailbox.MailboxUpdateManager.PROP_ONION_LENGTH;
import static org.briarproject.bramble.api.properties.TransportPropertyConstants.MAX_PROPERTIES_PER_TRANSPORT; import static org.briarproject.bramble.api.properties.TransportPropertyConstants.MAX_PROPERTIES_PER_TRANSPORT;
import static org.briarproject.bramble.api.properties.TransportPropertyConstants.MAX_PROPERTY_LENGTH; import static org.briarproject.bramble.api.properties.TransportPropertyConstants.MAX_PROPERTY_LENGTH;
import static org.briarproject.bramble.util.ValidationUtils.checkLength; import static org.briarproject.bramble.util.ValidationUtils.checkLength;
@@ -415,9 +415,9 @@ class ClientHelperImpl implements ClientHelper {
} }
@Override @Override
public MailboxPropertiesUpdate parseAndValidateMailboxPropertiesUpdate( public MailboxUpdate parseAndValidateMailboxUpdate(BdfList clientSupports,
BdfList clientSupports, BdfList serverSupports, BdfList serverSupports, BdfDictionary properties)
BdfDictionary properties) throws FormatException { throws FormatException {
List<MailboxVersion> clientSupportsList = List<MailboxVersion> clientSupportsList =
getMailboxVersionList(clientSupports); getMailboxVersionList(clientSupports);
List<MailboxVersion> serverSupportsList = List<MailboxVersion> serverSupportsList =
@@ -432,7 +432,7 @@ class ClientHelperImpl implements ClientHelper {
if (!serverSupports.isEmpty()) { if (!serverSupports.isEmpty()) {
throw new FormatException(); throw new FormatException();
} }
return new MailboxPropertiesUpdate(clientSupportsList); return new MailboxUpdate(clientSupportsList);
} }
// Mailbox must be accompanied by the Mailbox API version(s) it supports // Mailbox must be accompanied by the Mailbox API version(s) it supports
if (serverSupports.isEmpty()) { if (serverSupports.isEmpty()) {
@@ -455,7 +455,7 @@ class ClientHelperImpl implements ClientHelper {
checkLength(inboxId, UniqueId.LENGTH); checkLength(inboxId, UniqueId.LENGTH);
byte[] outboxId = properties.getRaw(PROP_KEY_OUTBOXID); byte[] outboxId = properties.getRaw(PROP_KEY_OUTBOXID);
checkLength(outboxId, UniqueId.LENGTH); checkLength(outboxId, UniqueId.LENGTH);
return new MailboxPropertiesUpdateMailbox(clientSupportsList, return new MailboxUpdateWithMailbox(clientSupportsList,
serverSupportsList, onion, new MailboxAuthToken(authToken), serverSupportsList, onion, new MailboxAuthToken(authToken),
new MailboxFolderId(inboxId), new MailboxFolderId(outboxId)); new MailboxFolderId(inboxId), new MailboxFolderId(outboxId));
} }

View File

@@ -7,7 +7,7 @@ import org.briarproject.bramble.api.mailbox.MailboxAuthToken;
import org.briarproject.bramble.api.mailbox.MailboxFileId; import org.briarproject.bramble.api.mailbox.MailboxFileId;
import org.briarproject.bramble.api.mailbox.MailboxFolderId; import org.briarproject.bramble.api.mailbox.MailboxFolderId;
import org.briarproject.bramble.api.mailbox.MailboxProperties; import org.briarproject.bramble.api.mailbox.MailboxProperties;
import org.briarproject.bramble.api.mailbox.MailboxPropertyManager; import org.briarproject.bramble.api.mailbox.MailboxUpdateManager;
import org.briarproject.bramble.api.mailbox.MailboxVersion; import org.briarproject.bramble.api.mailbox.MailboxVersion;
import org.briarproject.bramble.api.nullsafety.NotNullByDefault; import org.briarproject.bramble.api.nullsafety.NotNullByDefault;
@@ -26,7 +26,7 @@ interface MailboxApi {
/** /**
* Mailbox API versions that we support as a client. This is reported to our * Mailbox API versions that we support as a client. This is reported to our
* contacts by {@link MailboxPropertyManager}. * contacts by {@link MailboxUpdateManager}.
*/ */
List<MailboxVersion> CLIENT_SUPPORTS = singletonList( List<MailboxVersion> CLIENT_SUPPORTS = singletonList(
new MailboxVersion(1, 0)); new MailboxVersion(1, 0));

View File

@@ -5,8 +5,8 @@ import org.briarproject.bramble.api.contact.ContactManager;
import org.briarproject.bramble.api.data.MetadataEncoder; import org.briarproject.bramble.api.data.MetadataEncoder;
import org.briarproject.bramble.api.lifecycle.LifecycleManager; import org.briarproject.bramble.api.lifecycle.LifecycleManager;
import org.briarproject.bramble.api.mailbox.MailboxManager; import org.briarproject.bramble.api.mailbox.MailboxManager;
import org.briarproject.bramble.api.mailbox.MailboxPropertyManager;
import org.briarproject.bramble.api.mailbox.MailboxSettingsManager; import org.briarproject.bramble.api.mailbox.MailboxSettingsManager;
import org.briarproject.bramble.api.mailbox.MailboxUpdateManager;
import org.briarproject.bramble.api.sync.validation.ValidationManager; import org.briarproject.bramble.api.sync.validation.ValidationManager;
import org.briarproject.bramble.api.system.Clock; import org.briarproject.bramble.api.system.Clock;
import org.briarproject.bramble.api.versioning.ClientVersioningManager; import org.briarproject.bramble.api.versioning.ClientVersioningManager;
@@ -17,18 +17,18 @@ import javax.inject.Singleton;
import dagger.Module; import dagger.Module;
import dagger.Provides; import dagger.Provides;
import static org.briarproject.bramble.api.mailbox.MailboxPropertyManager.CLIENT_ID; import static org.briarproject.bramble.api.mailbox.MailboxUpdateManager.CLIENT_ID;
import static org.briarproject.bramble.api.mailbox.MailboxPropertyManager.MAJOR_VERSION; import static org.briarproject.bramble.api.mailbox.MailboxUpdateManager.MAJOR_VERSION;
import static org.briarproject.bramble.api.mailbox.MailboxPropertyManager.MINOR_VERSION; import static org.briarproject.bramble.api.mailbox.MailboxUpdateManager.MINOR_VERSION;
@Module @Module
public class MailboxModule { public class MailboxModule {
public static class EagerSingletons { public static class EagerSingletons {
@Inject @Inject
MailboxPropertyValidator mailboxPropertyValidator; MailboxUpdateValidator mailboxUpdateValidator;
@Inject @Inject
MailboxPropertyManager mailboxPropertyManager; MailboxUpdateManager mailboxUpdateManager;
} }
@Provides @Provides
@@ -56,10 +56,10 @@ public class MailboxModule {
@Provides @Provides
@Singleton @Singleton
MailboxPropertyValidator provideMailboxPropertyValidator( MailboxUpdateValidator provideMailboxUpdateValidator(
ValidationManager validationManager, ClientHelper clientHelper, ValidationManager validationManager, ClientHelper clientHelper,
MetadataEncoder metadataEncoder, Clock clock) { MetadataEncoder metadataEncoder, Clock clock) {
MailboxPropertyValidator validator = new MailboxPropertyValidator( MailboxUpdateValidator validator = new MailboxUpdateValidator(
clientHelper, metadataEncoder, clock); clientHelper, metadataEncoder, clock);
validationManager.registerMessageValidator(CLIENT_ID, MAJOR_VERSION, validationManager.registerMessageValidator(CLIENT_ID, MAJOR_VERSION,
validator); validator);
@@ -68,19 +68,19 @@ public class MailboxModule {
@Provides @Provides
@Singleton @Singleton
MailboxPropertyManager provideMailboxPropertyManager( MailboxUpdateManager provideMailboxUpdateManager(
LifecycleManager lifecycleManager, LifecycleManager lifecycleManager,
ValidationManager validationManager, ContactManager contactManager, ValidationManager validationManager, ContactManager contactManager,
ClientVersioningManager clientVersioningManager, ClientVersioningManager clientVersioningManager,
MailboxSettingsManager mailboxSettingsManager, MailboxSettingsManager mailboxSettingsManager,
MailboxPropertyManagerImpl mailboxPropertyManager) { MailboxUpdateManagerImpl mailboxUpdateManager) {
lifecycleManager.registerOpenDatabaseHook(mailboxPropertyManager); lifecycleManager.registerOpenDatabaseHook(mailboxUpdateManager);
validationManager.registerIncomingMessageHook(CLIENT_ID, MAJOR_VERSION, validationManager.registerIncomingMessageHook(CLIENT_ID, MAJOR_VERSION,
mailboxPropertyManager); mailboxUpdateManager);
contactManager.registerContactHook(mailboxPropertyManager); contactManager.registerContactHook(mailboxUpdateManager);
clientVersioningManager.registerClient(CLIENT_ID, MAJOR_VERSION, clientVersioningManager.registerClient(CLIENT_ID, MAJOR_VERSION,
MINOR_VERSION, mailboxPropertyManager); MINOR_VERSION, mailboxUpdateManager);
mailboxSettingsManager.registerMailboxHook(mailboxPropertyManager); mailboxSettingsManager.registerMailboxHook(mailboxUpdateManager);
return mailboxPropertyManager; return mailboxUpdateManager;
} }
} }

View File

@@ -4,8 +4,8 @@ import org.briarproject.bramble.api.crypto.CryptoComponent;
import org.briarproject.bramble.api.db.DatabaseComponent; import org.briarproject.bramble.api.db.DatabaseComponent;
import org.briarproject.bramble.api.event.EventExecutor; import org.briarproject.bramble.api.event.EventExecutor;
import org.briarproject.bramble.api.mailbox.MailboxPairingTask; import org.briarproject.bramble.api.mailbox.MailboxPairingTask;
import org.briarproject.bramble.api.mailbox.MailboxPropertyManager;
import org.briarproject.bramble.api.mailbox.MailboxSettingsManager; import org.briarproject.bramble.api.mailbox.MailboxSettingsManager;
import org.briarproject.bramble.api.mailbox.MailboxUpdateManager;
import org.briarproject.bramble.api.nullsafety.NotNullByDefault; import org.briarproject.bramble.api.nullsafety.NotNullByDefault;
import org.briarproject.bramble.api.system.Clock; import org.briarproject.bramble.api.system.Clock;
@@ -24,7 +24,7 @@ class MailboxPairingTaskFactoryImpl implements MailboxPairingTaskFactory {
private final Clock clock; private final Clock clock;
private final MailboxApi api; private final MailboxApi api;
private final MailboxSettingsManager mailboxSettingsManager; private final MailboxSettingsManager mailboxSettingsManager;
private final MailboxPropertyManager mailboxPropertyManager; private final MailboxUpdateManager mailboxUpdateManager;
@Inject @Inject
MailboxPairingTaskFactoryImpl( MailboxPairingTaskFactoryImpl(
@@ -34,20 +34,20 @@ class MailboxPairingTaskFactoryImpl implements MailboxPairingTaskFactory {
Clock clock, Clock clock,
MailboxApi api, MailboxApi api,
MailboxSettingsManager mailboxSettingsManager, MailboxSettingsManager mailboxSettingsManager,
MailboxPropertyManager mailboxPropertyManager) { MailboxUpdateManager mailboxUpdateManager) {
this.eventExecutor = eventExecutor; this.eventExecutor = eventExecutor;
this.db = db; this.db = db;
this.crypto = crypto; this.crypto = crypto;
this.clock = clock; this.clock = clock;
this.api = api; this.api = api;
this.mailboxSettingsManager = mailboxSettingsManager; this.mailboxSettingsManager = mailboxSettingsManager;
this.mailboxPropertyManager = mailboxPropertyManager; this.mailboxUpdateManager = mailboxUpdateManager;
} }
@Override @Override
public MailboxPairingTask createPairingTask(String qrCodePayload) { public MailboxPairingTask createPairingTask(String qrCodePayload) {
return new MailboxPairingTaskImpl(qrCodePayload, eventExecutor, db, return new MailboxPairingTaskImpl(qrCodePayload, eventExecutor, db,
crypto, clock, api, mailboxSettingsManager, crypto, clock, api, mailboxSettingsManager,
mailboxPropertyManager); mailboxUpdateManager);
} }
} }

View File

@@ -11,9 +11,9 @@ import org.briarproject.bramble.api.mailbox.MailboxAuthToken;
import org.briarproject.bramble.api.mailbox.MailboxPairingState; import org.briarproject.bramble.api.mailbox.MailboxPairingState;
import org.briarproject.bramble.api.mailbox.MailboxPairingTask; import org.briarproject.bramble.api.mailbox.MailboxPairingTask;
import org.briarproject.bramble.api.mailbox.MailboxProperties; import org.briarproject.bramble.api.mailbox.MailboxProperties;
import org.briarproject.bramble.api.mailbox.MailboxPropertiesUpdate;
import org.briarproject.bramble.api.mailbox.MailboxPropertyManager;
import org.briarproject.bramble.api.mailbox.MailboxSettingsManager; import org.briarproject.bramble.api.mailbox.MailboxSettingsManager;
import org.briarproject.bramble.api.mailbox.MailboxUpdate;
import org.briarproject.bramble.api.mailbox.MailboxUpdateManager;
import org.briarproject.bramble.api.nullsafety.NotNullByDefault; import org.briarproject.bramble.api.nullsafety.NotNullByDefault;
import org.briarproject.bramble.api.system.Clock; import org.briarproject.bramble.api.system.Clock;
import org.briarproject.bramble.mailbox.MailboxApi.ApiException; import org.briarproject.bramble.mailbox.MailboxApi.ApiException;
@@ -51,7 +51,7 @@ class MailboxPairingTaskImpl implements MailboxPairingTask {
private final Clock clock; private final Clock clock;
private final MailboxApi api; private final MailboxApi api;
private final MailboxSettingsManager mailboxSettingsManager; private final MailboxSettingsManager mailboxSettingsManager;
private final MailboxPropertyManager mailboxPropertyManager; private final MailboxUpdateManager mailboxUpdateManager;
private final Object lock = new Object(); private final Object lock = new Object();
@GuardedBy("lock") @GuardedBy("lock")
@@ -68,7 +68,7 @@ class MailboxPairingTaskImpl implements MailboxPairingTask {
Clock clock, Clock clock,
MailboxApi api, MailboxApi api,
MailboxSettingsManager mailboxSettingsManager, MailboxSettingsManager mailboxSettingsManager,
MailboxPropertyManager mailboxPropertyManager) { MailboxUpdateManager mailboxUpdateManager) {
this.payload = payload; this.payload = payload;
this.eventExecutor = eventExecutor; this.eventExecutor = eventExecutor;
this.db = db; this.db = db;
@@ -76,7 +76,7 @@ class MailboxPairingTaskImpl implements MailboxPairingTask {
this.clock = clock; this.clock = clock;
this.api = api; this.api = api;
this.mailboxSettingsManager = mailboxSettingsManager; this.mailboxSettingsManager = mailboxSettingsManager;
this.mailboxPropertyManager = mailboxPropertyManager; this.mailboxUpdateManager = mailboxUpdateManager;
state = new MailboxPairingState.QrCodeReceived(); state = new MailboxPairingState.QrCodeReceived();
} }
@@ -125,9 +125,9 @@ class MailboxPairingTaskImpl implements MailboxPairingTask {
// timers for contacts who doesn't have their own mailbox. This way, // timers for contacts who doesn't have their own mailbox. This way,
// data stranded on our old mailbox will be re-uploaded to our new. // data stranded on our old mailbox will be re-uploaded to our new.
for (Contact c : db.getContacts(txn)) { for (Contact c : db.getContacts(txn)) {
MailboxPropertiesUpdate remoteProps = mailboxPropertyManager MailboxUpdate update = mailboxUpdateManager.getRemoteUpdate(
.getRemoteProperties(txn, c.getId()); txn, c.getId());
if (remoteProps == null || !remoteProps.hasMailbox()) { if (update == null || !update.hasMailbox()) {
db.resetUnackedMessagesToSend(txn, c.getId()); db.resetUnackedMessagesToSend(txn, c.getId());
} }
} }

View File

@@ -18,13 +18,13 @@ import org.briarproject.bramble.api.lifecycle.LifecycleManager.OpenDatabaseHook;
import org.briarproject.bramble.api.mailbox.MailboxAuthToken; import org.briarproject.bramble.api.mailbox.MailboxAuthToken;
import org.briarproject.bramble.api.mailbox.MailboxFolderId; import org.briarproject.bramble.api.mailbox.MailboxFolderId;
import org.briarproject.bramble.api.mailbox.MailboxProperties; import org.briarproject.bramble.api.mailbox.MailboxProperties;
import org.briarproject.bramble.api.mailbox.MailboxPropertiesUpdate;
import org.briarproject.bramble.api.mailbox.MailboxPropertiesUpdateMailbox;
import org.briarproject.bramble.api.mailbox.MailboxPropertyManager;
import org.briarproject.bramble.api.mailbox.MailboxSettingsManager; import org.briarproject.bramble.api.mailbox.MailboxSettingsManager;
import org.briarproject.bramble.api.mailbox.MailboxSettingsManager.MailboxHook; import org.briarproject.bramble.api.mailbox.MailboxSettingsManager.MailboxHook;
import org.briarproject.bramble.api.mailbox.MailboxUpdate;
import org.briarproject.bramble.api.mailbox.MailboxUpdateManager;
import org.briarproject.bramble.api.mailbox.MailboxUpdateWithMailbox;
import org.briarproject.bramble.api.mailbox.MailboxVersion; import org.briarproject.bramble.api.mailbox.MailboxVersion;
import org.briarproject.bramble.api.mailbox.RemoteMailboxPropertiesUpdateEvent; import org.briarproject.bramble.api.mailbox.RemoteMailboxUpdateEvent;
import org.briarproject.bramble.api.nullsafety.NotNullByDefault; import org.briarproject.bramble.api.nullsafety.NotNullByDefault;
import org.briarproject.bramble.api.sync.Group; import org.briarproject.bramble.api.sync.Group;
import org.briarproject.bramble.api.sync.Group.Visibility; import org.briarproject.bramble.api.sync.Group.Visibility;
@@ -48,7 +48,7 @@ import static org.briarproject.bramble.api.sync.validation.IncomingMessageHook.D
import static org.briarproject.bramble.mailbox.MailboxApi.CLIENT_SUPPORTS; import static org.briarproject.bramble.mailbox.MailboxApi.CLIENT_SUPPORTS;
@NotNullByDefault @NotNullByDefault
class MailboxPropertyManagerImpl implements MailboxPropertyManager, class MailboxUpdateManagerImpl implements MailboxUpdateManager,
OpenDatabaseHook, ContactHook, ClientVersioningHook, OpenDatabaseHook, ContactHook, ClientVersioningHook,
IncomingMessageHook, MailboxHook { IncomingMessageHook, MailboxHook {
@@ -63,7 +63,7 @@ class MailboxPropertyManagerImpl implements MailboxPropertyManager,
private final Group localGroup; private final Group localGroup;
@Inject @Inject
MailboxPropertyManagerImpl(DatabaseComponent db, ClientHelper clientHelper, MailboxUpdateManagerImpl(DatabaseComponent db, ClientHelper clientHelper,
ClientVersioningManager clientVersioningManager, ClientVersioningManager clientVersioningManager,
MetadataParser metadataParser, MetadataParser metadataParser,
ContactGroupFactory contactGroupFactory, Clock clock, ContactGroupFactory contactGroupFactory, Clock clock,
@@ -108,11 +108,11 @@ class MailboxPropertyManagerImpl implements MailboxPropertyManager,
mailboxSettingsManager.getOwnMailboxProperties(txn); mailboxSettingsManager.getOwnMailboxProperties(txn);
if (ownProps != null) { if (ownProps != null) {
// We are paired, create and send props to the newly added contact // We are paired, create and send props to the newly added contact
createAndSendProperties(txn, c, ownProps.getServerSupports(), createAndSendUpdateWithMailbox(txn, c, ownProps.getServerSupports(),
ownProps.getOnion()); ownProps.getOnion());
} else { } else {
// Not paired, but we still want to get our clientSupports sent // Not paired, but we still want to get our clientSupports sent
sendEmptyProperties(txn, c); sendUpdateNoMailbox(txn, c);
} }
} }
@@ -126,14 +126,14 @@ class MailboxPropertyManagerImpl implements MailboxPropertyManager,
List<MailboxVersion> serverSupports) List<MailboxVersion> serverSupports)
throws DbException { throws DbException {
for (Contact c : db.getContacts(txn)) { for (Contact c : db.getContacts(txn)) {
createAndSendProperties(txn, c, serverSupports, ownOnion); createAndSendUpdateWithMailbox(txn, c, serverSupports, ownOnion);
} }
} }
@Override @Override
public void mailboxUnpaired(Transaction txn) throws DbException { public void mailboxUnpaired(Transaction txn) throws DbException {
for (Contact c : db.getContacts(txn)) { for (Contact c : db.getContacts(txn)) {
sendEmptyProperties(txn, c); sendUpdateNoMailbox(txn, c);
} }
} }
@@ -165,8 +165,8 @@ class MailboxPropertyManagerImpl implements MailboxPropertyManager,
} }
ContactId c = clientHelper.getContactId(txn, m.getGroupId()); ContactId c = clientHelper.getContactId(txn, m.getGroupId());
BdfList body = clientHelper.getMessageAsList(txn, m.getId()); BdfList body = clientHelper.getMessageAsList(txn, m.getId());
MailboxPropertiesUpdate p = parseProperties(body); MailboxUpdate u = parseUpdate(body);
txn.attach(new RemoteMailboxPropertiesUpdateEvent(c, p)); txn.attach(new RemoteMailboxUpdateEvent(c, u));
// Reset message retransmission timers for the contact. Avoiding // Reset message retransmission timers for the contact. Avoiding
// messages getting stranded: // messages getting stranded:
// - on our mailbox, if they now have a mailbox but didn't before // - on our mailbox, if they now have a mailbox but didn't before
@@ -180,10 +180,9 @@ class MailboxPropertyManagerImpl implements MailboxPropertyManager,
} }
@Override @Override
public MailboxPropertiesUpdate getLocalProperties(Transaction txn, public MailboxUpdate getLocalUpdate(Transaction txn, ContactId c)
ContactId c) throws DbException { throws DbException {
MailboxPropertiesUpdate local = MailboxUpdate local = getUpdate(txn, db.getContact(txn, c), true);
getProperties(txn, db.getContact(txn, c), true);
// An update (with or without mailbox) is created when contact is added // An update (with or without mailbox) is created when contact is added
if (local == null) { if (local == null) {
throw new DbException(); throw new DbException();
@@ -193,9 +192,9 @@ class MailboxPropertyManagerImpl implements MailboxPropertyManager,
@Override @Override
@Nullable @Nullable
public MailboxPropertiesUpdate getRemoteProperties(Transaction txn, public MailboxUpdate getRemoteUpdate(Transaction txn, ContactId c) throws
ContactId c) throws DbException { DbException {
return getProperties(txn, db.getContact(txn, c), false); return getUpdate(txn, db.getContact(txn, c), false);
} }
/** /**
@@ -204,16 +203,16 @@ class MailboxPropertyManagerImpl implements MailboxPropertyManager,
* supported Mailbox API version(s). All of which the contact needs to * supported Mailbox API version(s). All of which the contact needs to
* communicate with our Mailbox. * communicate with our Mailbox.
*/ */
private void createAndSendProperties(Transaction txn, Contact c, private void createAndSendUpdateWithMailbox(Transaction txn, Contact c,
List<MailboxVersion> serverSupports, String ownOnion) List<MailboxVersion> serverSupports, String ownOnion)
throws DbException { throws DbException {
MailboxPropertiesUpdate p = new MailboxPropertiesUpdateMailbox( MailboxUpdate u = new MailboxUpdateWithMailbox(
CLIENT_SUPPORTS, serverSupports, ownOnion, CLIENT_SUPPORTS, serverSupports, ownOnion,
new MailboxAuthToken(crypto.generateUniqueId().getBytes()), new MailboxAuthToken(crypto.generateUniqueId().getBytes()),
new MailboxFolderId(crypto.generateUniqueId().getBytes()), new MailboxFolderId(crypto.generateUniqueId().getBytes()),
new MailboxFolderId(crypto.generateUniqueId().getBytes())); new MailboxFolderId(crypto.generateUniqueId().getBytes()));
Group g = getContactGroup(c); Group g = getContactGroup(c);
storeMessageReplaceLatest(txn, g.getId(), p); storeMessageReplaceLatest(txn, g.getId(), u);
} }
/** /**
@@ -222,39 +221,38 @@ class MailboxPropertyManagerImpl implements MailboxPropertyManager,
* Mailbox that they can use. It still includes the list of Mailbox API * Mailbox that they can use. It still includes the list of Mailbox API
* version(s) that we support as a client. * version(s) that we support as a client.
*/ */
private void sendEmptyProperties(Transaction txn, Contact c) private void sendUpdateNoMailbox(Transaction txn, Contact c)
throws DbException { throws DbException {
Group g = getContactGroup(c); Group g = getContactGroup(c);
MailboxPropertiesUpdate p = MailboxUpdate u = new MailboxUpdate(CLIENT_SUPPORTS);
new MailboxPropertiesUpdate(CLIENT_SUPPORTS); storeMessageReplaceLatest(txn, g.getId(), u);
storeMessageReplaceLatest(txn, g.getId(), p);
} }
@Nullable @Nullable
private MailboxPropertiesUpdate getProperties(Transaction txn, private MailboxUpdate getUpdate(Transaction txn, Contact c, boolean local)
Contact c, boolean local) throws DbException { throws DbException {
MailboxPropertiesUpdate p = null; MailboxUpdate u = null;
Group g = getContactGroup(c); Group g = getContactGroup(c);
try { try {
LatestUpdate latest = findLatest(txn, g.getId(), local); LatestUpdate latest = findLatest(txn, g.getId(), local);
if (latest != null) { if (latest != null) {
BdfList body = BdfList body =
clientHelper.getMessageAsList(txn, latest.messageId); clientHelper.getMessageAsList(txn, latest.messageId);
p = parseProperties(body); u = parseUpdate(body);
} }
} catch (FormatException e) { } catch (FormatException e) {
throw new DbException(e); throw new DbException(e);
} }
return p; return u;
} }
private void storeMessageReplaceLatest(Transaction txn, GroupId g, private void storeMessageReplaceLatest(Transaction txn, GroupId g,
MailboxPropertiesUpdate p) throws DbException { MailboxUpdate u) throws DbException {
try { try {
LatestUpdate latest = findLatest(txn, g, true); LatestUpdate latest = findLatest(txn, g, true);
long version = latest == null ? 1 : latest.version + 1; long version = latest == null ? 1 : latest.version + 1;
Message m = clientHelper.createMessage(g, clock.currentTimeMillis(), Message m = clientHelper.createMessage(g, clock.currentTimeMillis(),
encodeProperties(version, p)); encodeProperties(version, u));
BdfDictionary meta = new BdfDictionary(); BdfDictionary meta = new BdfDictionary();
meta.put(MSG_KEY_VERSION, version); meta.put(MSG_KEY_VERSION, version);
meta.put(MSG_KEY_LOCAL, true); meta.put(MSG_KEY_LOCAL, true);
@@ -286,19 +284,18 @@ class MailboxPropertyManagerImpl implements MailboxPropertyManager,
return null; return null;
} }
private BdfList encodeProperties(long version, MailboxPropertiesUpdate p) { private BdfList encodeProperties(long version, MailboxUpdate u) {
BdfDictionary dict = new BdfDictionary(); BdfDictionary dict = new BdfDictionary();
BdfList serverSupports = new BdfList(); BdfList serverSupports = new BdfList();
if (p.hasMailbox()) { if (u.hasMailbox()) {
MailboxPropertiesUpdateMailbox pm = MailboxUpdateWithMailbox um = (MailboxUpdateWithMailbox) u;
(MailboxPropertiesUpdateMailbox) p; serverSupports = encodeSupportsList(um.getServerSupports());
serverSupports = encodeSupportsList(pm.getServerSupports()); dict.put(PROP_KEY_ONION, um.getOnion());
dict.put(PROP_KEY_ONION, pm.getOnion()); dict.put(PROP_KEY_AUTHTOKEN, um.getAuthToken().getBytes());
dict.put(PROP_KEY_AUTHTOKEN, pm.getAuthToken().getBytes()); dict.put(PROP_KEY_INBOXID, um.getInboxId().getBytes());
dict.put(PROP_KEY_INBOXID, pm.getInboxId().getBytes()); dict.put(PROP_KEY_OUTBOXID, um.getOutboxId().getBytes());
dict.put(PROP_KEY_OUTBOXID, pm.getOutboxId().getBytes());
} }
return BdfList.of(version, encodeSupportsList(p.getClientSupports()), return BdfList.of(version, encodeSupportsList(u.getClientSupports()),
serverSupports, dict); serverSupports, dict);
} }
@@ -310,14 +307,13 @@ class MailboxPropertyManagerImpl implements MailboxPropertyManager,
return supports; return supports;
} }
private MailboxPropertiesUpdate parseProperties(BdfList body) private MailboxUpdate parseUpdate(BdfList body)
throws FormatException { throws FormatException {
BdfList clientSupports = body.getList(1); BdfList clientSupports = body.getList(1);
BdfList serverSupports = body.getList(2); BdfList serverSupports = body.getList(2);
BdfDictionary dict = body.getDictionary(3); BdfDictionary dict = body.getDictionary(3);
return clientHelper.parseAndValidateMailboxPropertiesUpdate( return clientHelper.parseAndValidateMailboxUpdate(clientSupports,
clientSupports, serverSupports, dict serverSupports, dict);
);
} }
private Group getContactGroup(Contact c) { private Group getContactGroup(Contact c) {

View File

@@ -15,15 +15,15 @@ import org.briarproject.bramble.api.system.Clock;
import javax.annotation.concurrent.Immutable; import javax.annotation.concurrent.Immutable;
import static org.briarproject.bramble.api.mailbox.MailboxPropertyManager.MSG_KEY_LOCAL; import static org.briarproject.bramble.api.mailbox.MailboxUpdateManager.MSG_KEY_LOCAL;
import static org.briarproject.bramble.api.mailbox.MailboxPropertyManager.MSG_KEY_VERSION; import static org.briarproject.bramble.api.mailbox.MailboxUpdateManager.MSG_KEY_VERSION;
import static org.briarproject.bramble.util.ValidationUtils.checkSize; import static org.briarproject.bramble.util.ValidationUtils.checkSize;
@Immutable @Immutable
@NotNullByDefault @NotNullByDefault
class MailboxPropertyValidator extends BdfMessageValidator { class MailboxUpdateValidator extends BdfMessageValidator {
MailboxPropertyValidator(ClientHelper clientHelper, MailboxUpdateValidator(ClientHelper clientHelper,
MetadataEncoder metadataEncoder, Clock clock) { MetadataEncoder metadataEncoder, Clock clock) {
super(clientHelper, metadataEncoder, clock); super(clientHelper, metadataEncoder, clock);
} }
@@ -42,9 +42,8 @@ class MailboxPropertyValidator extends BdfMessageValidator {
BdfList serverSupports = body.getList(2); BdfList serverSupports = body.getList(2);
// Properties // Properties
BdfDictionary dictionary = body.getDictionary(3); BdfDictionary dictionary = body.getDictionary(3);
clientHelper.parseAndValidateMailboxPropertiesUpdate(clientSupports, clientHelper.parseAndValidateMailboxUpdate(clientSupports,
serverSupports, dictionary serverSupports, dictionary);
);
// Return the metadata // Return the metadata
BdfDictionary meta = new BdfDictionary(); BdfDictionary meta = new BdfDictionary();
meta.put(MSG_KEY_VERSION, version); meta.put(MSG_KEY_VERSION, version);

View File

@@ -23,8 +23,8 @@ import org.briarproject.bramble.api.identity.Author;
import org.briarproject.bramble.api.identity.AuthorFactory; import org.briarproject.bramble.api.identity.AuthorFactory;
import org.briarproject.bramble.api.mailbox.MailboxAuthToken; import org.briarproject.bramble.api.mailbox.MailboxAuthToken;
import org.briarproject.bramble.api.mailbox.MailboxFolderId; import org.briarproject.bramble.api.mailbox.MailboxFolderId;
import org.briarproject.bramble.api.mailbox.MailboxPropertiesUpdate; import org.briarproject.bramble.api.mailbox.MailboxUpdate;
import org.briarproject.bramble.api.mailbox.MailboxPropertiesUpdateMailbox; import org.briarproject.bramble.api.mailbox.MailboxUpdateWithMailbox;
import org.briarproject.bramble.api.mailbox.MailboxVersion; import org.briarproject.bramble.api.mailbox.MailboxVersion;
import org.briarproject.bramble.api.sync.GroupId; import org.briarproject.bramble.api.sync.GroupId;
import org.briarproject.bramble.api.sync.Message; import org.briarproject.bramble.api.sync.Message;
@@ -47,17 +47,17 @@ import static java.util.Collections.singletonList;
import static org.briarproject.bramble.api.identity.AuthorConstants.MAX_AUTHOR_NAME_LENGTH; import static org.briarproject.bramble.api.identity.AuthorConstants.MAX_AUTHOR_NAME_LENGTH;
import static org.briarproject.bramble.api.identity.AuthorConstants.MAX_PUBLIC_KEY_LENGTH; import static org.briarproject.bramble.api.identity.AuthorConstants.MAX_PUBLIC_KEY_LENGTH;
import static org.briarproject.bramble.api.identity.AuthorConstants.MAX_SIGNATURE_LENGTH; import static org.briarproject.bramble.api.identity.AuthorConstants.MAX_SIGNATURE_LENGTH;
import static org.briarproject.bramble.api.mailbox.MailboxPropertyManager.PROP_KEY_AUTHTOKEN; import static org.briarproject.bramble.api.mailbox.MailboxUpdateManager.PROP_KEY_AUTHTOKEN;
import static org.briarproject.bramble.api.mailbox.MailboxPropertyManager.PROP_KEY_INBOXID; import static org.briarproject.bramble.api.mailbox.MailboxUpdateManager.PROP_KEY_INBOXID;
import static org.briarproject.bramble.api.mailbox.MailboxPropertyManager.PROP_KEY_ONION; import static org.briarproject.bramble.api.mailbox.MailboxUpdateManager.PROP_KEY_ONION;
import static org.briarproject.bramble.api.mailbox.MailboxPropertyManager.PROP_KEY_OUTBOXID; import static org.briarproject.bramble.api.mailbox.MailboxUpdateManager.PROP_KEY_OUTBOXID;
import static org.briarproject.bramble.test.TestUtils.getAuthor; import static org.briarproject.bramble.test.TestUtils.getAuthor;
import static org.briarproject.bramble.test.TestUtils.getMessage; import static org.briarproject.bramble.test.TestUtils.getMessage;
import static org.briarproject.bramble.test.TestUtils.getRandomBytes; import static org.briarproject.bramble.test.TestUtils.getRandomBytes;
import static org.briarproject.bramble.test.TestUtils.getRandomId; import static org.briarproject.bramble.test.TestUtils.getRandomId;
import static org.briarproject.bramble.test.TestUtils.getSignaturePrivateKey; import static org.briarproject.bramble.test.TestUtils.getSignaturePrivateKey;
import static org.briarproject.bramble.test.TestUtils.getSignaturePublicKey; import static org.briarproject.bramble.test.TestUtils.getSignaturePublicKey;
import static org.briarproject.bramble.test.TestUtils.mailboxPropertiesUpdateEqual; import static org.briarproject.bramble.test.TestUtils.mailboxUpdateEqual;
import static org.briarproject.bramble.util.StringUtils.getRandomString; import static org.briarproject.bramble.util.StringUtils.getRandomString;
import static org.junit.Assert.assertArrayEquals; import static org.junit.Assert.assertArrayEquals;
import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertEquals;
@@ -98,7 +98,7 @@ public class ClientHelperImplTest extends BrambleMockTestCase {
messageFactory, bdfReaderFactory, bdfWriterFactory, metadataParser, messageFactory, bdfReaderFactory, bdfWriterFactory, metadataParser,
metadataEncoder, cryptoComponent, authorFactory); metadataEncoder, cryptoComponent, authorFactory);
private final MailboxPropertiesUpdateMailbox validMailboxPropsUpdate; private final MailboxUpdateWithMailbox validMailboxUpdateWithMailbox;
private final BdfList emptyClientSupports; private final BdfList emptyClientSupports;
private final BdfList someClientSupports; private final BdfList someClientSupports;
private final BdfList emptyServerSupports; private final BdfList emptyServerSupports;
@@ -109,7 +109,7 @@ public class ClientHelperImplTest extends BrambleMockTestCase {
someClientSupports = BdfList.of(BdfList.of(1, 0)); someClientSupports = BdfList.of(BdfList.of(1, 0));
emptyServerSupports = new BdfList(); emptyServerSupports = new BdfList();
someServerSupports = BdfList.of(BdfList.of(1, 0)); someServerSupports = BdfList.of(BdfList.of(1, 0));
validMailboxPropsUpdate = new MailboxPropertiesUpdateMailbox( validMailboxUpdateWithMailbox = new MailboxUpdateWithMailbox(
singletonList(new MailboxVersion(1, 0)), singletonList(new MailboxVersion(1, 0)),
singletonList(new MailboxVersion(1, 0)), singletonList(new MailboxVersion(1, 0)),
"pg6mmjiyjmcrsslvykfwnntlaru7p5svn6y2ymmju6nubxndf4pscryd", "pg6mmjiyjmcrsslvykfwnntlaru7p5svn6y2ymmju6nubxndf4pscryd",
@@ -118,14 +118,14 @@ public class ClientHelperImplTest extends BrambleMockTestCase {
new MailboxFolderId(getRandomId())); new MailboxFolderId(getRandomId()));
} }
private BdfDictionary getValidMailboxPropsUpdateDict() { private BdfDictionary getValidMailboxUpdateWithMailboxDict() {
BdfDictionary dict = new BdfDictionary(); BdfDictionary dict = new BdfDictionary();
dict.put(PROP_KEY_ONION, validMailboxPropsUpdate.getOnion()); dict.put(PROP_KEY_ONION, validMailboxUpdateWithMailbox.getOnion());
dict.put(PROP_KEY_AUTHTOKEN, validMailboxPropsUpdate.getAuthToken() dict.put(PROP_KEY_AUTHTOKEN, validMailboxUpdateWithMailbox
.getAuthToken().getBytes());
dict.put(PROP_KEY_INBOXID, validMailboxUpdateWithMailbox.getInboxId()
.getBytes()); .getBytes());
dict.put(PROP_KEY_INBOXID, validMailboxPropsUpdate.getInboxId() dict.put(PROP_KEY_OUTBOXID, validMailboxUpdateWithMailbox.getOutboxId()
.getBytes());
dict.put(PROP_KEY_OUTBOXID, validMailboxPropsUpdate.getOutboxId()
.getBytes()); .getBytes());
return dict; return dict;
} }
@@ -560,172 +560,150 @@ public class ClientHelperImplTest extends BrambleMockTestCase {
} }
@Test(expected = FormatException.class) @Test(expected = FormatException.class)
public void testRejectsMailboxPropsWithEmptyClientSupports() public void testRejectsMailboxUpdateWithEmptyClientSupports()
throws Exception { throws Exception {
BdfDictionary emptyPropsDict = new BdfDictionary(); BdfDictionary emptyPropsDict = new BdfDictionary();
clientHelper.parseAndValidateMailboxPropertiesUpdate( clientHelper.parseAndValidateMailboxUpdate(emptyClientSupports,
emptyClientSupports, emptyServerSupports, emptyPropsDict emptyServerSupports, emptyPropsDict
); );
} }
@Test @Test
public void testParseEmptyMailboxPropsUpdate() throws Exception { public void testParseMailboxUpdateNoMailbox() throws Exception {
BdfDictionary emptyPropsDict = new BdfDictionary(); BdfDictionary emptyPropsDict = new BdfDictionary();
MailboxPropertiesUpdate parsedProps = clientHelper MailboxUpdate parsedUpdate = clientHelper.parseAndValidateMailboxUpdate(
.parseAndValidateMailboxPropertiesUpdate(someClientSupports, someClientSupports, emptyServerSupports, emptyPropsDict);
emptyServerSupports, emptyPropsDict assertFalse(parsedUpdate.hasMailbox());
);
assertFalse(parsedProps.hasMailbox());
} }
@Test(expected = FormatException.class) @Test(expected = FormatException.class)
public void testRejectsEmptyMailboxPropsWithSomeServerSupports() public void testRejectsMailboxUpdateNoMailboxWithSomeServerSupports()
throws Exception { throws Exception {
BdfDictionary emptyPropsDict = new BdfDictionary(); BdfDictionary emptyPropsDict = new BdfDictionary();
clientHelper.parseAndValidateMailboxPropertiesUpdate(someClientSupports, clientHelper.parseAndValidateMailboxUpdate(someClientSupports,
someServerSupports, emptyPropsDict someServerSupports, emptyPropsDict);
);
} }
@Test(expected = FormatException.class) @Test(expected = FormatException.class)
public void testRejectsMailboxPropsShortSupports() throws Exception { public void testRejectsMailboxUpdateShortSupports() throws Exception {
clientHelper.parseAndValidateMailboxPropertiesUpdate( clientHelper.parseAndValidateMailboxUpdate(BdfList.of(BdfList.of(1)),
BdfList.of(BdfList.of(1)), emptyServerSupports, emptyServerSupports, new BdfDictionary());
new BdfDictionary()
);
} }
@Test(expected = FormatException.class) @Test(expected = FormatException.class)
public void testRejectsMailboxPropsLongSupports() throws Exception { public void testRejectsMailboxUpdateLongSupports() throws Exception {
clientHelper.parseAndValidateMailboxPropertiesUpdate( clientHelper.parseAndValidateMailboxUpdate(
BdfList.of(BdfList.of(1, 0, 0)), emptyServerSupports, BdfList.of(BdfList.of(1, 0, 0)), emptyServerSupports,
new BdfDictionary() new BdfDictionary());
);
} }
@Test(expected = FormatException.class) @Test(expected = FormatException.class)
public void testRejectsMailboxPropsNonIntSupports() throws Exception { public void testRejectsMailboxUpdateNonIntSupports() throws Exception {
clientHelper.parseAndValidateMailboxPropertiesUpdate( clientHelper.parseAndValidateMailboxUpdate(
BdfList.of(BdfList.of(1, "0")), emptyServerSupports, BdfList.of(BdfList.of(1, "0")), emptyServerSupports,
new BdfDictionary() new BdfDictionary()
); );
} }
@Test(expected = FormatException.class) @Test(expected = FormatException.class)
public void testRejectsMailboxPropsNonListSupports() throws Exception { public void testRejectsMailboxUpdateNonListSupports() throws Exception {
clientHelper.parseAndValidateMailboxPropertiesUpdate( clientHelper.parseAndValidateMailboxUpdate(
BdfList.of("non-list"), emptyServerSupports, new BdfDictionary() BdfList.of("non-list"), emptyServerSupports,
); new BdfDictionary());
} }
@Test @Test
public void testParseValidMailboxPropsUpdate() throws Exception { public void testParseValidMailboxUpdateWithMailbox() throws Exception {
MailboxPropertiesUpdate parsedProps = clientHelper MailboxUpdate parsedUpdate = clientHelper.parseAndValidateMailboxUpdate(
.parseAndValidateMailboxPropertiesUpdate( someClientSupports, someServerSupports,
someClientSupports, someServerSupports, getValidMailboxUpdateWithMailboxDict());
getValidMailboxPropsUpdateDict() assertTrue(
); mailboxUpdateEqual(validMailboxUpdateWithMailbox,
assertTrue(mailboxPropertiesUpdateEqual(validMailboxPropsUpdate, parsedUpdate));
parsedProps));
} }
@Test(expected = FormatException.class) @Test(expected = FormatException.class)
public void rejectsMailboxPropsWithEmptyServerSupports() throws Exception { public void rejectsMailboxUpdateWithEmptyServerSupports() throws Exception {
clientHelper.parseAndValidateMailboxPropertiesUpdate( clientHelper.parseAndValidateMailboxUpdate(someClientSupports,
someClientSupports, emptyServerSupports, emptyServerSupports, getValidMailboxUpdateWithMailboxDict());
getValidMailboxPropsUpdateDict()
);
} }
@Test(expected = FormatException.class) @Test(expected = FormatException.class)
public void testRejectsMailboxPropsUpdateOnionNotDecodable() public void testRejectsMailboxUpdateOnionNotDecodable() throws Exception {
throws Exception { BdfDictionary propsDict = getValidMailboxUpdateWithMailboxDict();
BdfDictionary propsDict = getValidMailboxPropsUpdateDict();
String badOnion = "!" + propsDict.getString(PROP_KEY_ONION) String badOnion = "!" + propsDict.getString(PROP_KEY_ONION)
.substring(1); .substring(1);
propsDict.put(PROP_KEY_ONION, badOnion); propsDict.put(PROP_KEY_ONION, badOnion);
clientHelper.parseAndValidateMailboxPropertiesUpdate(someClientSupports, clientHelper.parseAndValidateMailboxUpdate(someClientSupports,
emptyServerSupports, propsDict emptyServerSupports, propsDict);
);
} }
@Test(expected = FormatException.class) @Test(expected = FormatException.class)
public void testRejectsMailboxPropsUpdateOnionWrongLength() public void testRejectsMailboxUpdateOnionWrongLength() throws Exception {
throws Exception { BdfDictionary propsDict = getValidMailboxUpdateWithMailboxDict();
BdfDictionary propsDict = getValidMailboxPropsUpdateDict();
String tooLongOnion = propsDict.getString(PROP_KEY_ONION) + "!"; String tooLongOnion = propsDict.getString(PROP_KEY_ONION) + "!";
propsDict.put(PROP_KEY_ONION, tooLongOnion); propsDict.put(PROP_KEY_ONION, tooLongOnion);
clientHelper.parseAndValidateMailboxPropertiesUpdate(someClientSupports, clientHelper.parseAndValidateMailboxUpdate(someClientSupports,
emptyServerSupports, propsDict emptyServerSupports, propsDict
); );
} }
@Test(expected = FormatException.class) @Test(expected = FormatException.class)
public void testRejectsMailboxPropsUpdateInboxIdWrongLength() public void testRejectsMailboxUpdateInboxIdWrongLength() throws Exception {
throws Exception { BdfDictionary propsDict = getValidMailboxUpdateWithMailboxDict();
BdfDictionary propsDict = getValidMailboxPropsUpdateDict();
propsDict.put(PROP_KEY_INBOXID, getRandomBytes(UniqueId.LENGTH + 1)); propsDict.put(PROP_KEY_INBOXID, getRandomBytes(UniqueId.LENGTH + 1));
clientHelper.parseAndValidateMailboxPropertiesUpdate(someClientSupports, clientHelper.parseAndValidateMailboxUpdate(someClientSupports,
someServerSupports, propsDict someServerSupports, propsDict);
);
} }
@Test(expected = FormatException.class) @Test(expected = FormatException.class)
public void testRejectsMailboxPropsUpdateOutboxIdWrongLength() public void testRejectsMailboxUpdateOutboxIdWrongLength() throws Exception {
throws Exception { BdfDictionary propsDict = getValidMailboxUpdateWithMailboxDict();
BdfDictionary propsDict = getValidMailboxPropsUpdateDict();
propsDict.put(PROP_KEY_OUTBOXID, getRandomBytes(UniqueId.LENGTH + 1)); propsDict.put(PROP_KEY_OUTBOXID, getRandomBytes(UniqueId.LENGTH + 1));
clientHelper.parseAndValidateMailboxPropertiesUpdate(someClientSupports, clientHelper.parseAndValidateMailboxUpdate(someClientSupports,
someServerSupports, propsDict someServerSupports, propsDict);
);
} }
@Test(expected = FormatException.class) @Test(expected = FormatException.class)
public void testRejectsMailboxPropsUpdateAuthTokenWrongLength() public void testRejectsMailboxUpdateAuthTokenWrongLength()
throws Exception { throws Exception {
BdfDictionary propsDict = getValidMailboxPropsUpdateDict(); BdfDictionary propsDict = getValidMailboxUpdateWithMailboxDict();
propsDict.put(PROP_KEY_AUTHTOKEN, getRandomBytes(UniqueId.LENGTH + 1)); propsDict.put(PROP_KEY_AUTHTOKEN, getRandomBytes(UniqueId.LENGTH + 1));
clientHelper.parseAndValidateMailboxPropertiesUpdate(someClientSupports, clientHelper.parseAndValidateMailboxUpdate(someClientSupports,
someServerSupports, propsDict someServerSupports, propsDict);
);
} }
@Test(expected = FormatException.class) @Test(expected = FormatException.class)
public void testRejectsMailboxPropsUpdateMissingOnion() throws Exception { public void testRejectsMailboxUpdateMissingOnion() throws Exception {
BdfDictionary propsDict = getValidMailboxPropsUpdateDict(); BdfDictionary propsDict = getValidMailboxUpdateWithMailboxDict();
propsDict.remove(PROP_KEY_ONION); propsDict.remove(PROP_KEY_ONION);
clientHelper.parseAndValidateMailboxPropertiesUpdate(someClientSupports, clientHelper.parseAndValidateMailboxUpdate(someClientSupports,
someServerSupports, propsDict someServerSupports, propsDict
); );
} }
@Test(expected = FormatException.class) @Test(expected = FormatException.class)
public void testRejectsMailboxPropsUpdateMissingAuthToken() public void testRejectsMailboxUpdateMissingAuthToken() throws Exception {
throws Exception { BdfDictionary propsDict = getValidMailboxUpdateWithMailboxDict();
BdfDictionary propsDict = getValidMailboxPropsUpdateDict();
propsDict.remove(PROP_KEY_AUTHTOKEN); propsDict.remove(PROP_KEY_AUTHTOKEN);
clientHelper.parseAndValidateMailboxPropertiesUpdate(someClientSupports, clientHelper.parseAndValidateMailboxUpdate(someClientSupports,
someServerSupports, propsDict someServerSupports, propsDict);
);
} }
@Test(expected = FormatException.class) @Test(expected = FormatException.class)
public void testRejectsMailboxPropsUpdateMissingInboxId() throws Exception { public void testRejectsMailboxUpdateMissingInboxId() throws Exception {
BdfDictionary propsDict = getValidMailboxPropsUpdateDict(); BdfDictionary propsDict = getValidMailboxUpdateWithMailboxDict();
propsDict.remove(PROP_KEY_INBOXID); propsDict.remove(PROP_KEY_INBOXID);
clientHelper.parseAndValidateMailboxPropertiesUpdate(someClientSupports, clientHelper.parseAndValidateMailboxUpdate(someClientSupports,
someServerSupports, propsDict someServerSupports, propsDict);
);
} }
@Test(expected = FormatException.class) @Test(expected = FormatException.class)
public void testRejectsMailboxPropsUpdateMissingOutboxId() public void testRejectsMailboxUpdateMissingOutboxId() throws Exception {
throws Exception { BdfDictionary propsDict = getValidMailboxUpdateWithMailboxDict();
BdfDictionary propsDict = getValidMailboxPropsUpdateDict();
propsDict.remove(PROP_KEY_OUTBOXID); propsDict.remove(PROP_KEY_OUTBOXID);
clientHelper.parseAndValidateMailboxPropertiesUpdate(someClientSupports, clientHelper.parseAndValidateMailboxUpdate(someClientSupports,
someServerSupports, propsDict someServerSupports, propsDict);
);
} }
} }

View File

@@ -9,9 +9,9 @@ import org.briarproject.bramble.api.mailbox.MailboxAuthToken;
import org.briarproject.bramble.api.mailbox.MailboxPairingState; import org.briarproject.bramble.api.mailbox.MailboxPairingState;
import org.briarproject.bramble.api.mailbox.MailboxPairingTask; import org.briarproject.bramble.api.mailbox.MailboxPairingTask;
import org.briarproject.bramble.api.mailbox.MailboxProperties; import org.briarproject.bramble.api.mailbox.MailboxProperties;
import org.briarproject.bramble.api.mailbox.MailboxPropertiesUpdate;
import org.briarproject.bramble.api.mailbox.MailboxPropertyManager;
import org.briarproject.bramble.api.mailbox.MailboxSettingsManager; import org.briarproject.bramble.api.mailbox.MailboxSettingsManager;
import org.briarproject.bramble.api.mailbox.MailboxUpdate;
import org.briarproject.bramble.api.mailbox.MailboxUpdateManager;
import org.briarproject.bramble.api.mailbox.OwnMailboxConnectionStatusEvent; import org.briarproject.bramble.api.mailbox.OwnMailboxConnectionStatusEvent;
import org.briarproject.bramble.api.system.Clock; import org.briarproject.bramble.api.system.Clock;
import org.briarproject.bramble.test.BrambleMockTestCase; import org.briarproject.bramble.test.BrambleMockTestCase;
@@ -49,11 +49,11 @@ public class MailboxPairingTaskImplTest extends BrambleMockTestCase {
private final MailboxApi api = context.mock(MailboxApi.class); private final MailboxApi api = context.mock(MailboxApi.class);
private final MailboxSettingsManager mailboxSettingsManager = private final MailboxSettingsManager mailboxSettingsManager =
context.mock(MailboxSettingsManager.class); context.mock(MailboxSettingsManager.class);
private final MailboxPropertyManager mailboxPropertyManager = private final MailboxUpdateManager mailboxUpdateManager =
context.mock(MailboxPropertyManager.class); context.mock(MailboxUpdateManager.class);
private final MailboxPairingTaskFactory factory = private final MailboxPairingTaskFactory factory =
new MailboxPairingTaskFactoryImpl(executor, db, crypto, clock, api, new MailboxPairingTaskFactoryImpl(executor, db, crypto, clock, api,
mailboxSettingsManager, mailboxPropertyManager); mailboxSettingsManager, mailboxUpdateManager);
private final String onion = getRandomString(56); private final String onion = getRandomString(56);
private final byte[] onionBytes = getRandomBytes(32); private final byte[] onionBytes = getRandomBytes(32);
@@ -107,8 +107,7 @@ public class MailboxPairingTaskImplTest extends BrambleMockTestCase {
}}); }});
Contact contact1 = getContact(); Contact contact1 = getContact();
Transaction txn = new Transaction(null, false); Transaction txn = new Transaction(null, false);
MailboxPropertiesUpdate emptyProps = new MailboxPropertiesUpdate( MailboxUpdate updateNoMailbox = new MailboxUpdate(CLIENT_SUPPORTS);
CLIENT_SUPPORTS);
context.checking(new DbExpectations() {{ context.checking(new DbExpectations() {{
oneOf(db).transaction(with(false), withDbRunnable(txn)); oneOf(db).transaction(with(false), withDbRunnable(txn));
oneOf(mailboxSettingsManager).setOwnMailboxProperties( oneOf(mailboxSettingsManager).setOwnMailboxProperties(
@@ -116,9 +115,9 @@ public class MailboxPairingTaskImplTest extends BrambleMockTestCase {
oneOf(mailboxSettingsManager).recordSuccessfulConnection(txn, time); oneOf(mailboxSettingsManager).recordSuccessfulConnection(txn, time);
oneOf(db).getContacts(txn); oneOf(db).getContacts(txn);
will(returnValue(singletonList(contact1))); will(returnValue(singletonList(contact1)));
oneOf(mailboxPropertyManager).getRemoteProperties(txn, oneOf(mailboxUpdateManager).getRemoteUpdate(txn,
contact1.getId()); contact1.getId());
will(returnValue(emptyProps)); will(returnValue(updateNoMailbox));
oneOf(db).resetUnackedMessagesToSend(txn, contact1.getId()); oneOf(db).resetUnackedMessagesToSend(txn, contact1.getId());
}}); }});

View File

@@ -14,11 +14,11 @@ import org.briarproject.bramble.api.db.Transaction;
import org.briarproject.bramble.api.mailbox.MailboxAuthToken; import org.briarproject.bramble.api.mailbox.MailboxAuthToken;
import org.briarproject.bramble.api.mailbox.MailboxFolderId; import org.briarproject.bramble.api.mailbox.MailboxFolderId;
import org.briarproject.bramble.api.mailbox.MailboxProperties; import org.briarproject.bramble.api.mailbox.MailboxProperties;
import org.briarproject.bramble.api.mailbox.MailboxPropertiesUpdate;
import org.briarproject.bramble.api.mailbox.MailboxPropertiesUpdateMailbox;
import org.briarproject.bramble.api.mailbox.MailboxSettingsManager; import org.briarproject.bramble.api.mailbox.MailboxSettingsManager;
import org.briarproject.bramble.api.mailbox.MailboxUpdate;
import org.briarproject.bramble.api.mailbox.MailboxUpdateWithMailbox;
import org.briarproject.bramble.api.mailbox.MailboxVersion; import org.briarproject.bramble.api.mailbox.MailboxVersion;
import org.briarproject.bramble.api.mailbox.RemoteMailboxPropertiesUpdateEvent; import org.briarproject.bramble.api.mailbox.RemoteMailboxUpdateEvent;
import org.briarproject.bramble.api.sync.Group; import org.briarproject.bramble.api.sync.Group;
import org.briarproject.bramble.api.sync.GroupId; import org.briarproject.bramble.api.sync.GroupId;
import org.briarproject.bramble.api.sync.Message; import org.briarproject.bramble.api.sync.Message;
@@ -34,14 +34,14 @@ import java.util.List;
import java.util.Map; import java.util.Map;
import static java.util.Collections.singletonList; import static java.util.Collections.singletonList;
import static org.briarproject.bramble.api.mailbox.MailboxPropertyManager.CLIENT_ID; import static org.briarproject.bramble.api.mailbox.MailboxUpdateManager.CLIENT_ID;
import static org.briarproject.bramble.api.mailbox.MailboxPropertyManager.MAJOR_VERSION; import static org.briarproject.bramble.api.mailbox.MailboxUpdateManager.MAJOR_VERSION;
import static org.briarproject.bramble.api.mailbox.MailboxPropertyManager.MSG_KEY_LOCAL; import static org.briarproject.bramble.api.mailbox.MailboxUpdateManager.MSG_KEY_LOCAL;
import static org.briarproject.bramble.api.mailbox.MailboxPropertyManager.MSG_KEY_VERSION; import static org.briarproject.bramble.api.mailbox.MailboxUpdateManager.MSG_KEY_VERSION;
import static org.briarproject.bramble.api.mailbox.MailboxPropertyManager.PROP_KEY_AUTHTOKEN; import static org.briarproject.bramble.api.mailbox.MailboxUpdateManager.PROP_KEY_AUTHTOKEN;
import static org.briarproject.bramble.api.mailbox.MailboxPropertyManager.PROP_KEY_INBOXID; import static org.briarproject.bramble.api.mailbox.MailboxUpdateManager.PROP_KEY_INBOXID;
import static org.briarproject.bramble.api.mailbox.MailboxPropertyManager.PROP_KEY_ONION; import static org.briarproject.bramble.api.mailbox.MailboxUpdateManager.PROP_KEY_ONION;
import static org.briarproject.bramble.api.mailbox.MailboxPropertyManager.PROP_KEY_OUTBOXID; import static org.briarproject.bramble.api.mailbox.MailboxUpdateManager.PROP_KEY_OUTBOXID;
import static org.briarproject.bramble.api.sync.Group.Visibility.SHARED; import static org.briarproject.bramble.api.sync.Group.Visibility.SHARED;
import static org.briarproject.bramble.api.sync.validation.IncomingMessageHook.DeliveryAction.ACCEPT_DO_NOT_SHARE; import static org.briarproject.bramble.api.sync.validation.IncomingMessageHook.DeliveryAction.ACCEPT_DO_NOT_SHARE;
import static org.briarproject.bramble.mailbox.MailboxApi.CLIENT_SUPPORTS; import static org.briarproject.bramble.mailbox.MailboxApi.CLIENT_SUPPORTS;
@@ -50,13 +50,13 @@ import static org.briarproject.bramble.test.TestUtils.getGroup;
import static org.briarproject.bramble.test.TestUtils.getMessage; import static org.briarproject.bramble.test.TestUtils.getMessage;
import static org.briarproject.bramble.test.TestUtils.getRandomId; import static org.briarproject.bramble.test.TestUtils.getRandomId;
import static org.briarproject.bramble.test.TestUtils.hasEvent; import static org.briarproject.bramble.test.TestUtils.hasEvent;
import static org.briarproject.bramble.test.TestUtils.mailboxPropertiesUpdateEqual; import static org.briarproject.bramble.test.TestUtils.mailboxUpdateEqual;
import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse; import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertNull; import static org.junit.Assert.assertNull;
import static org.junit.Assert.assertTrue; import static org.junit.Assert.assertTrue;
public class MailboxPropertyManagerImplTest extends BrambleMockTestCase { public class MailboxUpdateManagerImplTest extends BrambleMockTestCase {
private final DatabaseComponent db = context.mock(DatabaseComponent.class); private final DatabaseComponent db = context.mock(DatabaseComponent.class);
private final ClientHelper clientHelper = context.mock(ClientHelper.class); private final ClientHelper clientHelper = context.mock(ClientHelper.class);
@@ -80,11 +80,11 @@ public class MailboxPropertyManagerImplTest extends BrambleMockTestCase {
private final BdfList emptyServerSupports; private final BdfList emptyServerSupports;
private final BdfList someServerSupports; private final BdfList someServerSupports;
private final List<MailboxVersion> someServerSupportsList; private final List<MailboxVersion> someServerSupportsList;
private final MailboxPropertiesUpdateMailbox updateMailbox; private final MailboxUpdateWithMailbox updateWithMailbox;
private final MailboxPropertiesUpdate updateNoMailbox; private final MailboxUpdate updateNoMailbox;
private final MailboxProperties ownProps; private final MailboxProperties ownProps;
public MailboxPropertyManagerImplTest() { public MailboxUpdateManagerImplTest() {
someClientSupports = BdfList.of(BdfList.of(1, 0)); someClientSupports = BdfList.of(BdfList.of(1, 0));
someClientSupportsList = singletonList(new MailboxVersion(1, 0)); someClientSupportsList = singletonList(new MailboxVersion(1, 0));
emptyServerSupports = new BdfList(); emptyServerSupports = new BdfList();
@@ -97,7 +97,7 @@ public class MailboxPropertyManagerImplTest extends BrambleMockTestCase {
ownProps = new MailboxProperties("http://bar.onion", ownProps = new MailboxProperties("http://bar.onion",
new MailboxAuthToken(getRandomId()), true, new MailboxAuthToken(getRandomId()), true,
someServerSupportsList); someServerSupportsList);
updateMailbox = new MailboxPropertiesUpdateMailbox( updateWithMailbox = new MailboxUpdateWithMailbox(
singletonList(new MailboxVersion(1, 0)), singletonList(new MailboxVersion(1, 0)),
singletonList(new MailboxVersion(1, 0)), singletonList(new MailboxVersion(1, 0)),
ownProps.getOnion(), ownProps.getOnion(),
@@ -105,22 +105,23 @@ public class MailboxPropertyManagerImplTest extends BrambleMockTestCase {
new MailboxFolderId(getRandomId()), new MailboxFolderId(getRandomId()),
new MailboxFolderId(getRandomId())); new MailboxFolderId(getRandomId()));
propsDict = new BdfDictionary(); propsDict = new BdfDictionary();
propsDict.put(PROP_KEY_ONION, updateMailbox.getOnion()); propsDict.put(PROP_KEY_ONION, updateWithMailbox.getOnion());
propsDict.put(PROP_KEY_AUTHTOKEN, propsDict.put(PROP_KEY_AUTHTOKEN, updateWithMailbox.getAuthToken()
updateMailbox.getAuthToken().getBytes()); .getBytes());
propsDict.put(PROP_KEY_INBOXID, updateMailbox.getInboxId().getBytes()); propsDict.put(PROP_KEY_INBOXID, updateWithMailbox.getInboxId()
propsDict.put(PROP_KEY_OUTBOXID, .getBytes());
updateMailbox.getOutboxId().getBytes()); propsDict.put(PROP_KEY_OUTBOXID, updateWithMailbox.getOutboxId()
updateNoMailbox = new MailboxPropertiesUpdate(someClientSupportsList); .getBytes());
updateNoMailbox = new MailboxUpdate(someClientSupportsList);
} }
private MailboxPropertyManagerImpl createInstance() { private MailboxUpdateManagerImpl createInstance() {
context.checking(new Expectations() {{ context.checking(new Expectations() {{
oneOf(contactGroupFactory).createLocalGroup(CLIENT_ID, oneOf(contactGroupFactory).createLocalGroup(CLIENT_ID,
MAJOR_VERSION); MAJOR_VERSION);
will(returnValue(localGroup)); will(returnValue(localGroup));
}}); }});
return new MailboxPropertyManagerImpl(db, clientHelper, return new MailboxUpdateManagerImpl(db, clientHelper,
clientVersioningManager, metadataParser, contactGroupFactory, clientVersioningManager, metadataParser, contactGroupFactory,
clock, mailboxSettingsManager, crypto); clock, mailboxSettingsManager, crypto);
} }
@@ -161,7 +162,7 @@ public class MailboxPropertyManagerImplTest extends BrambleMockTestCase {
emptyServerSupports, emptyPropsDict, true); emptyServerSupports, emptyPropsDict, true);
}}); }});
MailboxPropertyManagerImpl t = createInstance(); MailboxUpdateManagerImpl t = createInstance();
t.onDatabaseOpened(txn); t.onDatabaseOpened(txn);
} }
@@ -193,11 +194,11 @@ public class MailboxPropertyManagerImplTest extends BrambleMockTestCase {
oneOf(mailboxSettingsManager).getOwnMailboxProperties(txn); oneOf(mailboxSettingsManager).getOwnMailboxProperties(txn);
will(returnValue(ownProps)); will(returnValue(ownProps));
oneOf(crypto).generateUniqueId(); oneOf(crypto).generateUniqueId();
will(returnValue(updateMailbox.getAuthToken())); will(returnValue(updateWithMailbox.getAuthToken()));
oneOf(crypto).generateUniqueId(); oneOf(crypto).generateUniqueId();
will(returnValue(updateMailbox.getInboxId())); will(returnValue(updateWithMailbox.getInboxId()));
oneOf(crypto).generateUniqueId(); oneOf(crypto).generateUniqueId();
will(returnValue(updateMailbox.getOutboxId())); will(returnValue(updateWithMailbox.getOutboxId()));
oneOf(contactGroupFactory).createContactGroup(CLIENT_ID, oneOf(contactGroupFactory).createContactGroup(CLIENT_ID,
MAJOR_VERSION, contact); MAJOR_VERSION, contact);
will(returnValue(contactGroup)); will(returnValue(contactGroup));
@@ -208,7 +209,7 @@ public class MailboxPropertyManagerImplTest extends BrambleMockTestCase {
someServerSupports, propsDict, true); someServerSupports, propsDict, true);
}}); }});
MailboxPropertyManagerImpl t = createInstance(); MailboxUpdateManagerImpl t = createInstance();
t.onDatabaseOpened(txn); t.onDatabaseOpened(txn);
} }
@@ -222,7 +223,7 @@ public class MailboxPropertyManagerImplTest extends BrambleMockTestCase {
will(returnValue(true)); will(returnValue(true));
}}); }});
MailboxPropertyManagerImpl t = createInstance(); MailboxUpdateManagerImpl t = createInstance();
t.onDatabaseOpened(txn); t.onDatabaseOpened(txn);
} }
@@ -259,7 +260,7 @@ public class MailboxPropertyManagerImplTest extends BrambleMockTestCase {
emptyServerSupports, emptyPropsDict, true); emptyServerSupports, emptyPropsDict, true);
}}); }});
MailboxPropertyManagerImpl t = createInstance(); MailboxUpdateManagerImpl t = createInstance();
t.addingContact(txn, contact); t.addingContact(txn, contact);
} }
@@ -287,11 +288,11 @@ public class MailboxPropertyManagerImplTest extends BrambleMockTestCase {
oneOf(mailboxSettingsManager).getOwnMailboxProperties(txn); oneOf(mailboxSettingsManager).getOwnMailboxProperties(txn);
will(returnValue(ownProps)); will(returnValue(ownProps));
oneOf(crypto).generateUniqueId(); oneOf(crypto).generateUniqueId();
will(returnValue(updateMailbox.getAuthToken())); will(returnValue(updateWithMailbox.getAuthToken()));
oneOf(crypto).generateUniqueId(); oneOf(crypto).generateUniqueId();
will(returnValue(updateMailbox.getInboxId())); will(returnValue(updateWithMailbox.getInboxId()));
oneOf(crypto).generateUniqueId(); oneOf(crypto).generateUniqueId();
will(returnValue(updateMailbox.getOutboxId())); will(returnValue(updateWithMailbox.getOutboxId()));
oneOf(contactGroupFactory).createContactGroup(CLIENT_ID, oneOf(contactGroupFactory).createContactGroup(CLIENT_ID,
MAJOR_VERSION, contact); MAJOR_VERSION, contact);
will(returnValue(contactGroup)); will(returnValue(contactGroup));
@@ -302,7 +303,7 @@ public class MailboxPropertyManagerImplTest extends BrambleMockTestCase {
someServerSupports, propsDict, true); someServerSupports, propsDict, true);
}}); }});
MailboxPropertyManagerImpl t = createInstance(); MailboxUpdateManagerImpl t = createInstance();
t.addingContact(txn, contact); t.addingContact(txn, contact);
} }
@@ -319,7 +320,7 @@ public class MailboxPropertyManagerImplTest extends BrambleMockTestCase {
oneOf(db).removeGroup(txn, contactGroup); oneOf(db).removeGroup(txn, contactGroup);
}}); }});
MailboxPropertyManagerImpl t = createInstance(); MailboxUpdateManagerImpl t = createInstance();
t.removingContact(txn, contact); t.removingContact(txn, contact);
} }
@@ -355,16 +356,16 @@ public class MailboxPropertyManagerImplTest extends BrambleMockTestCase {
will(returnValue(contact.getId())); will(returnValue(contact.getId()));
oneOf(clientHelper).getMessageAsList(txn, message.getId()); oneOf(clientHelper).getMessageAsList(txn, message.getId());
will(returnValue(body)); will(returnValue(body));
oneOf(clientHelper).parseAndValidateMailboxPropertiesUpdate( oneOf(clientHelper).parseAndValidateMailboxUpdate(
someClientSupports, someServerSupports, propsDict); someClientSupports, someServerSupports, propsDict);
will(returnValue(updateMailbox)); will(returnValue(updateWithMailbox));
oneOf(db).resetUnackedMessagesToSend(txn, contact.getId()); oneOf(db).resetUnackedMessagesToSend(txn, contact.getId());
}}); }});
MailboxPropertyManagerImpl t = createInstance(); MailboxUpdateManagerImpl t = createInstance();
assertEquals(ACCEPT_DO_NOT_SHARE, assertEquals(ACCEPT_DO_NOT_SHARE,
t.incomingMessage(txn, message, meta)); t.incomingMessage(txn, message, meta));
assertTrue(hasEvent(txn, RemoteMailboxPropertiesUpdateEvent.class)); assertTrue(hasEvent(txn, RemoteMailboxUpdateEvent.class));
} }
@Test @Test
@@ -407,16 +408,16 @@ public class MailboxPropertyManagerImplTest extends BrambleMockTestCase {
will(returnValue(contact.getId())); will(returnValue(contact.getId()));
oneOf(clientHelper).getMessageAsList(txn, message.getId()); oneOf(clientHelper).getMessageAsList(txn, message.getId());
will(returnValue(body)); will(returnValue(body));
oneOf(clientHelper).parseAndValidateMailboxPropertiesUpdate( oneOf(clientHelper).parseAndValidateMailboxUpdate(
someClientSupports, someServerSupports, propsDict); someClientSupports, someServerSupports, propsDict);
will(returnValue(updateMailbox)); will(returnValue(updateWithMailbox));
oneOf(db).resetUnackedMessagesToSend(txn, contact.getId()); oneOf(db).resetUnackedMessagesToSend(txn, contact.getId());
}}); }});
MailboxPropertyManagerImpl t = createInstance(); MailboxUpdateManagerImpl t = createInstance();
assertEquals(ACCEPT_DO_NOT_SHARE, assertEquals(ACCEPT_DO_NOT_SHARE,
t.incomingMessage(txn, message, meta)); t.incomingMessage(txn, message, meta));
assertTrue(hasEvent(txn, RemoteMailboxPropertiesUpdateEvent.class)); assertTrue(hasEvent(txn, RemoteMailboxUpdateEvent.class));
} }
@Test @Test
@@ -447,14 +448,14 @@ public class MailboxPropertyManagerImplTest extends BrambleMockTestCase {
oneOf(db).deleteMessageMetadata(txn, message.getId()); oneOf(db).deleteMessageMetadata(txn, message.getId());
}}); }});
MailboxPropertyManagerImpl t = createInstance(); MailboxUpdateManagerImpl t = createInstance();
assertEquals(ACCEPT_DO_NOT_SHARE, assertEquals(ACCEPT_DO_NOT_SHARE,
t.incomingMessage(txn, message, meta)); t.incomingMessage(txn, message, meta));
assertFalse(hasEvent(txn, RemoteMailboxPropertiesUpdateEvent.class)); assertFalse(hasEvent(txn, RemoteMailboxUpdateEvent.class));
} }
@Test @Test
public void testCreatesAndStoresLocalPropertiesWithNewVersionOnPairing() public void testCreatesAndStoresLocalUpdateWithNewVersionOnPairing()
throws Exception { throws Exception {
Contact contact = getContact(); Contact contact = getContact();
List<Contact> contacts = singletonList(contact); List<Contact> contacts = singletonList(contact);
@@ -477,11 +478,11 @@ public class MailboxPropertyManagerImplTest extends BrambleMockTestCase {
oneOf(db).getContacts(txn); oneOf(db).getContacts(txn);
will(returnValue(contacts)); will(returnValue(contacts));
oneOf(crypto).generateUniqueId(); oneOf(crypto).generateUniqueId();
will(returnValue(updateMailbox.getAuthToken())); will(returnValue(updateWithMailbox.getAuthToken()));
oneOf(crypto).generateUniqueId(); oneOf(crypto).generateUniqueId();
will(returnValue(updateMailbox.getInboxId())); will(returnValue(updateWithMailbox.getInboxId()));
oneOf(crypto).generateUniqueId(); oneOf(crypto).generateUniqueId();
will(returnValue(updateMailbox.getOutboxId())); will(returnValue(updateWithMailbox.getOutboxId()));
oneOf(contactGroupFactory).createContactGroup(CLIENT_ID, oneOf(contactGroupFactory).createContactGroup(CLIENT_ID,
MAJOR_VERSION, contact); MAJOR_VERSION, contact);
will(returnValue(contactGroup)); will(returnValue(contactGroup));
@@ -493,12 +494,12 @@ public class MailboxPropertyManagerImplTest extends BrambleMockTestCase {
oneOf(db).removeMessage(txn, latestId); oneOf(db).removeMessage(txn, latestId);
}}); }});
MailboxPropertyManagerImpl t = createInstance(); MailboxUpdateManagerImpl t = createInstance();
t.mailboxPaired(txn, ownProps.getOnion(), someServerSupportsList); t.mailboxPaired(txn, ownProps.getOnion(), someServerSupportsList);
} }
@Test @Test
public void testStoresEmptyLocalPropertiesWithNewVersionOnUnpairing() public void testStoresLocalUpdateNoMailboxWithNewVersionOnUnpairing()
throws Exception { throws Exception {
Contact contact = getContact(); Contact contact = getContact();
List<Contact> contacts = singletonList(contact); List<Contact> contacts = singletonList(contact);
@@ -531,13 +532,12 @@ public class MailboxPropertyManagerImplTest extends BrambleMockTestCase {
oneOf(db).removeMessage(txn, latestId); oneOf(db).removeMessage(txn, latestId);
}}); }});
MailboxPropertyManagerImpl t = createInstance(); MailboxUpdateManagerImpl t = createInstance();
t.mailboxUnpaired(txn); t.mailboxUnpaired(txn);
} }
@Test @Test
public void testGetRemoteProperties() public void testGetRemoteUpdate() throws Exception {
throws Exception {
Transaction txn = new Transaction(null, false); Transaction txn = new Transaction(null, false);
Contact contact = getContact(); Contact contact = getContact();
Group contactGroup = getGroup(CLIENT_ID, MAJOR_VERSION); Group contactGroup = getGroup(CLIENT_ID, MAJOR_VERSION);
@@ -554,27 +554,26 @@ public class MailboxPropertyManagerImplTest extends BrambleMockTestCase {
context.checking(new Expectations() {{ context.checking(new Expectations() {{
oneOf(db).getContact(txn, contact.getId()); oneOf(db).getContact(txn, contact.getId());
will(returnValue(contact)); will(returnValue(contact));
oneOf(contactGroupFactory).createContactGroup(CLIENT_ID, oneOf(contactGroupFactory)
MAJOR_VERSION, contact); .createContactGroup(CLIENT_ID, MAJOR_VERSION, contact);
will(returnValue(contactGroup)); will(returnValue(contactGroup));
oneOf(clientHelper).getMessageMetadataAsDictionary(txn, oneOf(clientHelper).getMessageMetadataAsDictionary(txn,
contactGroup.getId()); contactGroup.getId());
will(returnValue(messageMetadata)); will(returnValue(messageMetadata));
oneOf(clientHelper).getMessageAsList(txn, messageId); oneOf(clientHelper).getMessageAsList(txn, messageId);
will(returnValue(body)); will(returnValue(body));
oneOf(clientHelper).parseAndValidateMailboxPropertiesUpdate( oneOf(clientHelper).parseAndValidateMailboxUpdate(
someClientSupports, someServerSupports, propsDict); someClientSupports, someServerSupports, propsDict);
will(returnValue(updateMailbox)); will(returnValue(updateWithMailbox));
}}); }});
MailboxPropertyManagerImpl t = createInstance(); MailboxUpdateManagerImpl t = createInstance();
MailboxPropertiesUpdate remote = MailboxUpdate remote = t.getRemoteUpdate(txn, contact.getId());
t.getRemoteProperties(txn, contact.getId()); assertTrue(mailboxUpdateEqual(remote, updateWithMailbox));
assertTrue(mailboxPropertiesUpdateEqual(remote, updateMailbox));
} }
@Test @Test
public void testGetRemotePropertiesReturnsNullBecauseNoUpdate() public void testGetRemoteUpdateReturnsNullBecauseNoUpdate()
throws Exception { throws Exception {
Transaction txn = new Transaction(null, false); Transaction txn = new Transaction(null, false);
Contact contact = getContact(); Contact contact = getContact();
@@ -593,13 +592,12 @@ public class MailboxPropertyManagerImplTest extends BrambleMockTestCase {
will(returnValue(emptyMessageMetadata)); will(returnValue(emptyMessageMetadata));
}}); }});
MailboxPropertyManagerImpl t = createInstance(); MailboxUpdateManagerImpl t = createInstance();
assertNull(t.getRemoteProperties(txn, contact.getId())); assertNull(t.getRemoteUpdate(txn, contact.getId()));
} }
@Test @Test
public void testGetRemotePropertiesNoMailbox() public void testGetRemoteUpdateNoMailbox() throws Exception {
throws Exception {
Transaction txn = new Transaction(null, false); Transaction txn = new Transaction(null, false);
Contact contact = getContact(); Contact contact = getContact();
Group contactGroup = getGroup(CLIENT_ID, MAJOR_VERSION); Group contactGroup = getGroup(CLIENT_ID, MAJOR_VERSION);
@@ -624,20 +622,18 @@ public class MailboxPropertyManagerImplTest extends BrambleMockTestCase {
will(returnValue(messageMetadata)); will(returnValue(messageMetadata));
oneOf(clientHelper).getMessageAsList(txn, messageId); oneOf(clientHelper).getMessageAsList(txn, messageId);
will(returnValue(body)); will(returnValue(body));
oneOf(clientHelper).parseAndValidateMailboxPropertiesUpdate( oneOf(clientHelper).parseAndValidateMailboxUpdate(
someClientSupports, emptyServerSupports, emptyPropsDict); someClientSupports, emptyServerSupports, emptyPropsDict);
will(returnValue(updateNoMailbox)); will(returnValue(updateNoMailbox));
}}); }});
MailboxPropertyManagerImpl t = createInstance(); MailboxUpdateManagerImpl t = createInstance();
MailboxPropertiesUpdate remote = MailboxUpdate remote = t.getRemoteUpdate(txn, contact.getId());
t.getRemoteProperties(txn, contact.getId()); assertTrue(mailboxUpdateEqual(remote, updateNoMailbox));
assertTrue(mailboxPropertiesUpdateEqual(remote, updateNoMailbox));
} }
@Test @Test
public void testGetLocalProperties() public void testGetLocalUpdate() throws Exception {
throws Exception {
Transaction txn = new Transaction(null, false); Transaction txn = new Transaction(null, false);
Contact contact = getContact(); Contact contact = getContact();
Group contactGroup = getGroup(CLIENT_ID, MAJOR_VERSION); Group contactGroup = getGroup(CLIENT_ID, MAJOR_VERSION);
@@ -662,20 +658,18 @@ public class MailboxPropertyManagerImplTest extends BrambleMockTestCase {
will(returnValue(messageMetadata)); will(returnValue(messageMetadata));
oneOf(clientHelper).getMessageAsList(txn, messageId); oneOf(clientHelper).getMessageAsList(txn, messageId);
will(returnValue(body)); will(returnValue(body));
oneOf(clientHelper).parseAndValidateMailboxPropertiesUpdate( oneOf(clientHelper).parseAndValidateMailboxUpdate(
someClientSupports, someServerSupports, propsDict); someClientSupports, someServerSupports, propsDict);
will(returnValue(updateMailbox)); will(returnValue(updateWithMailbox));
}}); }});
MailboxPropertyManagerImpl t = createInstance(); MailboxUpdateManagerImpl t = createInstance();
MailboxPropertiesUpdate local = MailboxUpdate local = t.getLocalUpdate(txn, contact.getId());
t.getLocalProperties(txn, contact.getId()); assertTrue(mailboxUpdateEqual(local, updateWithMailbox));
assertTrue(mailboxPropertiesUpdateEqual(local, updateMailbox));
} }
@Test @Test
public void testGetLocalPropertiesNoMailbox() public void testGetLocalUpdateNoMailbox() throws Exception {
throws Exception {
Transaction txn = new Transaction(null, false); Transaction txn = new Transaction(null, false);
Contact contact = getContact(); Contact contact = getContact();
Group contactGroup = getGroup(CLIENT_ID, MAJOR_VERSION); Group contactGroup = getGroup(CLIENT_ID, MAJOR_VERSION);
@@ -700,15 +694,14 @@ public class MailboxPropertyManagerImplTest extends BrambleMockTestCase {
will(returnValue(messageMetadata)); will(returnValue(messageMetadata));
oneOf(clientHelper).getMessageAsList(txn, messageId); oneOf(clientHelper).getMessageAsList(txn, messageId);
will(returnValue(body)); will(returnValue(body));
oneOf(clientHelper).parseAndValidateMailboxPropertiesUpdate( oneOf(clientHelper).parseAndValidateMailboxUpdate(
someClientSupports, emptyServerSupports, emptyPropsDict); someClientSupports, emptyServerSupports, emptyPropsDict);
will(returnValue(updateNoMailbox)); will(returnValue(updateNoMailbox));
}}); }});
MailboxPropertyManagerImpl t = createInstance(); MailboxUpdateManagerImpl t = createInstance();
MailboxPropertiesUpdate local = MailboxUpdate local = t.getLocalUpdate(txn, contact.getId());
t.getLocalProperties(txn, contact.getId()); assertTrue(mailboxUpdateEqual(local, updateNoMailbox));
assertTrue(mailboxPropertiesUpdateEqual(local, updateNoMailbox));
} }
private void expectStoreMessage(Transaction txn, GroupId g, private void expectStoreMessage(Transaction txn, GroupId g,

View File

@@ -8,9 +8,9 @@ import org.briarproject.bramble.api.data.BdfList;
import org.briarproject.bramble.api.data.MetadataEncoder; import org.briarproject.bramble.api.data.MetadataEncoder;
import org.briarproject.bramble.api.mailbox.MailboxAuthToken; import org.briarproject.bramble.api.mailbox.MailboxAuthToken;
import org.briarproject.bramble.api.mailbox.MailboxFolderId; import org.briarproject.bramble.api.mailbox.MailboxFolderId;
import org.briarproject.bramble.api.mailbox.MailboxPropertiesUpdate; import org.briarproject.bramble.api.mailbox.MailboxUpdate;
import org.briarproject.bramble.api.mailbox.MailboxPropertiesUpdateMailbox; import org.briarproject.bramble.api.mailbox.MailboxUpdateManager;
import org.briarproject.bramble.api.mailbox.MailboxPropertyManager; import org.briarproject.bramble.api.mailbox.MailboxUpdateWithMailbox;
import org.briarproject.bramble.api.mailbox.MailboxVersion; import org.briarproject.bramble.api.mailbox.MailboxVersion;
import org.briarproject.bramble.api.sync.Group; import org.briarproject.bramble.api.sync.Group;
import org.briarproject.bramble.api.sync.Message; import org.briarproject.bramble.api.sync.Message;
@@ -28,7 +28,7 @@ import static org.briarproject.bramble.test.TestUtils.getMessage;
import static org.briarproject.bramble.test.TestUtils.getRandomId; import static org.briarproject.bramble.test.TestUtils.getRandomId;
import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertEquals;
public class MailboxPropertyValidatorTest extends BrambleMockTestCase { public class MailboxUpdateValidatorTest extends BrambleMockTestCase {
private final ClientHelper clientHelper = context.mock(ClientHelper.class); private final ClientHelper clientHelper = context.mock(ClientHelper.class);
@@ -37,39 +37,39 @@ public class MailboxPropertyValidatorTest extends BrambleMockTestCase {
private final BdfList someClientSupports; private final BdfList someClientSupports;
private final List<MailboxVersion> someClientSupportsList; private final List<MailboxVersion> someClientSupportsList;
private final BdfList someServerSupports; private final BdfList someServerSupports;
private final MailboxPropertiesUpdateMailbox updateMailbox; private final MailboxUpdateWithMailbox updateMailbox;
private final MailboxPropertiesUpdate updateNoMailbox; private final MailboxUpdate updateNoMailbox;
private final Group group; private final Group group;
private final Message message; private final Message message;
private final MailboxPropertyValidator mpv; private final MailboxUpdateValidator muv;
public MailboxPropertyValidatorTest() { public MailboxUpdateValidatorTest() {
// Just dummies, clientHelper is mocked so our test is a bit shallow; // Just dummies, clientHelper is mocked so our test is a bit shallow;
// not testing // not testing
// {@link ClientHelper#parseAndValidateMailboxPropertiesUpdate(BdfDictionary)} // {@link ClientHelper#parseAndValidateMailboxUpdate(BdfList, BdfList, BdfDictionary)}
emptyServerSupports = new BdfList(); emptyServerSupports = new BdfList();
someClientSupports = BdfList.of(BdfList.of(1, 0)); someClientSupports = BdfList.of(BdfList.of(1, 0));
someClientSupportsList = singletonList(new MailboxVersion(1, 0)); someClientSupportsList = singletonList(new MailboxVersion(1, 0));
someServerSupports = BdfList.of(BdfList.of(1, 0)); someServerSupports = BdfList.of(BdfList.of(1, 0));
bdfDict = BdfDictionary.of(new BdfEntry("foo", "bar")); bdfDict = BdfDictionary.of(new BdfEntry("foo", "bar"));
updateMailbox = new MailboxPropertiesUpdateMailbox( updateMailbox = new MailboxUpdateWithMailbox(
singletonList(new MailboxVersion(1, 0)), singletonList(new MailboxVersion(1, 0)),
singletonList(new MailboxVersion(1, 0)), singletonList(new MailboxVersion(1, 0)),
"baz", "baz",
new MailboxAuthToken(getRandomId()), new MailboxAuthToken(getRandomId()),
new MailboxFolderId(getRandomId()), new MailboxFolderId(getRandomId()),
new MailboxFolderId(getRandomId())); new MailboxFolderId(getRandomId()));
updateNoMailbox = new MailboxPropertiesUpdate(someClientSupportsList); updateNoMailbox = new MailboxUpdate(someClientSupportsList);
group = getGroup(MailboxPropertyManager.CLIENT_ID, group = getGroup(MailboxUpdateManager.CLIENT_ID,
MailboxPropertyManager.MAJOR_VERSION); MailboxUpdateManager.MAJOR_VERSION);
message = getMessage(group.getId()); message = getMessage(group.getId());
MetadataEncoder metadataEncoder = context.mock(MetadataEncoder.class); MetadataEncoder metadataEncoder = context.mock(MetadataEncoder.class);
Clock clock = context.mock(Clock.class); Clock clock = context.mock(Clock.class);
mpv = new MailboxPropertyValidator(clientHelper, metadataEncoder, muv = new MailboxUpdateValidator(clientHelper, metadataEncoder,
clock); clock);
} }
@@ -79,26 +79,26 @@ public class MailboxPropertyValidatorTest extends BrambleMockTestCase {
BdfList.of(4, someClientSupports, someServerSupports, bdfDict); BdfList.of(4, someClientSupports, someServerSupports, bdfDict);
context.checking(new Expectations() {{ context.checking(new Expectations() {{
oneOf(clientHelper).parseAndValidateMailboxPropertiesUpdate( oneOf(clientHelper).parseAndValidateMailboxUpdate(
someClientSupports, someServerSupports, bdfDict); someClientSupports, someServerSupports, bdfDict);
will(returnValue(updateMailbox)); will(returnValue(updateMailbox));
}}); }});
BdfDictionary result = BdfDictionary result =
mpv.validateMessage(message, group, body).getDictionary(); muv.validateMessage(message, group, body).getDictionary();
assertEquals(4, result.getLong("version").longValue()); assertEquals(4, result.getLong("version").longValue());
} }
@Test(expected = FormatException.class) @Test(expected = FormatException.class)
public void testValidateWrongVersionValue() throws IOException { public void testValidateWrongVersionValue() throws IOException {
BdfList body = BdfList.of(-1, bdfDict); BdfList body = BdfList.of(-1, bdfDict);
mpv.validateMessage(message, group, body); muv.validateMessage(message, group, body);
} }
@Test(expected = FormatException.class) @Test(expected = FormatException.class)
public void testValidateWrongVersionType() throws IOException { public void testValidateWrongVersionType() throws IOException {
BdfList body = BdfList.of(bdfDict, bdfDict); BdfList body = BdfList.of(bdfDict, bdfDict);
mpv.validateMessage(message, group, body); muv.validateMessage(message, group, body);
} }
@Test @Test
@@ -108,13 +108,13 @@ public class MailboxPropertyValidatorTest extends BrambleMockTestCase {
emptyBdfDict); emptyBdfDict);
context.checking(new Expectations() {{ context.checking(new Expectations() {{
oneOf(clientHelper).parseAndValidateMailboxPropertiesUpdate( oneOf(clientHelper).parseAndValidateMailboxUpdate(
someClientSupports, emptyServerSupports, emptyBdfDict); someClientSupports, emptyServerSupports, emptyBdfDict);
will(returnValue(updateNoMailbox)); will(returnValue(updateNoMailbox));
}}); }});
BdfDictionary result = BdfDictionary result =
mpv.validateMessage(message, group, body).getDictionary(); muv.validateMessage(message, group, body).getDictionary();
assertEquals(42, result.getLong("version").longValue()); assertEquals(42, result.getLong("version").longValue());
} }
} }

View File

@@ -345,7 +345,7 @@ public class TransportKeyAgreementIntegrationTest
.canSendOutgoingStreams(aliceId, DUPLEX_TRANSPORT_ID)); .canSendOutgoingStreams(aliceId, DUPLEX_TRANSPORT_ID));
} }
// Sync initial client versioning updates and mailbox properties updates // Sync initial client versioning updates and mailbox updates
syncMessage(alice, bob, bobId, 1, true); syncMessage(alice, bob, bobId, 1, true);
syncMessage(bob, alice, aliceId, 1, true); syncMessage(bob, alice, aliceId, 1, true);
syncMessage(alice, bob, bobId, 2, true); syncMessage(alice, bob, bobId, 2, true);

View File

@@ -1051,8 +1051,8 @@ public class IntroductionIntegrationTest
true); true);
contact0From1 = contactManager1.getContact(contactId0From1); contact0From1 = contactManager1.getContact(contactId0From1);
// Sync initial client versioning updates, mailbox properties updates, // Sync initial client versioning updates, mailbox updates, and
// and transport properties // transport properties
sync0To1(1, true); sync0To1(1, true);
sync1To0(1, true); sync1To0(1, true);
sync0To1(3, true); sync0To1(3, true);

View File

@@ -172,7 +172,7 @@ public abstract class BriarIntegrationTest<C extends BriarIntegrationTestCompone
true); true);
contact0From2 = contactManager2.getContact(contactId0From2); contact0From2 = contactManager2.getContact(contactId0From2);
// Sync initial client versioning updates and mailbox properties updates // Sync initial client versioning updates and mailbox updates
sync0To1(1, true); sync0To1(1, true);
sync1To0(1, true); sync1To0(1, true);
sync0To1(2, true); sync0To1(2, true);
@@ -202,8 +202,8 @@ public abstract class BriarIntegrationTest<C extends BriarIntegrationTestCompone
// Sync initial client versioning updates // Sync initial client versioning updates
sync1To2(1, true); sync1To2(1, true);
sync2To1(1, true); sync2To1(1, true);
// Sync 2nd client versioning msg from 1to2, mailbox properties updates, // Sync 2nd client versioning msg from 1to2, mailbox updates, and
// and transport properties if we should // transport properties if we should
if (haveTransportProperties) { if (haveTransportProperties) {
sync1To2(3, true); sync1To2(3, true);
sync2To1(2, true); sync2To1(2, true);