366b875fd2
Co-authored-by: Scott Nonnenberg <scott@signal.org>
38 lines
891 B
TypeScript
38 lines
891 B
TypeScript
// Copyright 2021 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
import { assert } from 'chai';
|
|
import { generateAci } from '../types/ServiceId';
|
|
|
|
import { processSyncMessage } from '../textsecure/processSyncMessage';
|
|
|
|
describe('processSyncMessage', () => {
|
|
const destinationServiceId = generateAci();
|
|
|
|
it('should normalize UUIDs in sent', () => {
|
|
const out = processSyncMessage({
|
|
sent: {
|
|
destinationServiceId: destinationServiceId.toUpperCase(),
|
|
|
|
unidentifiedStatus: [
|
|
{
|
|
destinationServiceId: destinationServiceId.toUpperCase(),
|
|
},
|
|
],
|
|
},
|
|
});
|
|
|
|
assert.deepStrictEqual(out, {
|
|
sent: {
|
|
destinationServiceId,
|
|
|
|
storyMessageRecipients: undefined,
|
|
unidentifiedStatus: [
|
|
{
|
|
destinationServiceId,
|
|
},
|
|
],
|
|
},
|
|
});
|
|
});
|
|
});
|