testing stubs

pull/1159/head
Vincent 5 years ago
parent 734debe841
commit fb4c6fb387

@ -12,7 +12,7 @@ import { PubKey } from '../types';
// memory and sync its state with the database on modification (add or remove).
export class PendingMessageCache {
public cache: Array<RawMessage>;
private cache: Array<RawMessage>;
constructor() {
// Load pending messages from the database
@ -22,6 +22,11 @@ export class PendingMessageCache {
void this.init();
}
public get(): Array<RawMessage> {
// Get all pending from cache, sorted with oldest first
return this.cache.sort((a, b) => a.timestamp - b.timestamp);
}
public async add(
device: PubKey,
message: ContentMessage
@ -67,7 +72,9 @@ export class PendingMessageCache {
}
public getForDevice(device: PubKey): Array<RawMessage> {
return this.cache.filter(m => m.device === device.key);
const pending = this.cache.filter(m => m.device === device.key);
return pending.sort((a, b) => a.timestamp - b.timestamp);
}
public async clear() {

@ -1,60 +1,60 @@
import { expect } from 'chai';
import { ChatMessage, SessionResetMessage } from '../../../session/messages/outgoing';
import { TextEncoder } from 'util';
import { MessageUtils } from '../../../session/utils';
import { PendingMessageCache } from '../../../session/sending/PendingMessageCache';
// Used for ExampleMessage
import { v4 as uuid } from 'uuid';
import { SignalService } from '../../../protobuf';
export class ExampleMessage extends ContentMessage {
constructor() {
super({
timestamp: Math.floor(Math.random() * 10000000000000),
identifier: uuid(),
});
}
public ttl(): number {
// throw new Error("Method not implemented.");
return 5;
}
protected contentProto(): SignalService.Content {
// throw new Error("Method not implemented.");
// TODO - get actual content
const content = SignalService.Content.create();
return content;
}
}
describe('PendingMessageCache', () => {
const pendingMessageCache = new PendingMessageCache();
let sessionResetMessage: SessionResetMessage;
const preKeyBundle = {
deviceId: 123456,
preKeyId: 654321,
signedKeyId: 111111,
preKey: new TextEncoder().encode('preKey'),
signature: new TextEncoder().encode('signature'),
signedKey: new TextEncoder().encode('signedKey'),
identityKey: new TextEncoder().encode('identityKey'),
};
// queue with session reset message.
// should return undefined
// TOOD: Send me to MESSAGE QUEUE TEST
it('queue session reset message', () => {
const timestamp = Date.now();
sessionResetMessage = new SessionResetMessage({timestamp, preKeyBundle});
});
});
// import { expect } from 'chai';
// import { ChatMessage, SessionResetMessage } from '../../../session/messages/outgoing';
// import { TextEncoder } from 'util';
// import { MessageUtils } from '../../../session/utils';
// import { PendingMessageCache } from '../../../session/sending/PendingMessageCache';
// // Used for ExampleMessage
// import { v4 as uuid } from 'uuid';
// import { SignalService } from '../../../protobuf';
// export class ExampleMessage extends ContentMessage {
// constructor() {
// super({
// timestamp: Math.floor(Math.random() * 10000000000000),
// identifier: uuid(),
// });
// }
// public ttl(): number {
// // throw new Error("Method not implemented.");
// return 5;
// }
// protected contentProto(): SignalService.Content {
// // throw new Error("Method not implemented.");
// // TODO - get actual content
// const content = SignalService.Content.create();
// return content;
// }
// }
// describe('PendingMessageCache', () => {
// const pendingMessageCache = new PendingMessageCache();
// let sessionResetMessage: SessionResetMessage;
// const preKeyBundle = {
// deviceId: 123456,
// preKeyId: 654321,
// signedKeyId: 111111,
// preKey: new TextEncoder().encode('preKey'),
// signature: new TextEncoder().encode('signature'),
// signedKey: new TextEncoder().encode('signedKey'),
// identityKey: new TextEncoder().encode('identityKey'),
// };
// // queue with session reset message.
// // should return undefined
// // TOOD: Send me to MESSAGE QUEUE TEST
// it('queue session reset message', () => {
// const timestamp = Date.now();
// sessionResetMessage = new SessionResetMessage({timestamp, preKeyBundle});
// });
// });

@ -2,53 +2,51 @@ import { expect } from 'chai';
import * as sinon from 'sinon';
import uuid from 'uuid';
import { ChatMessage } from '../../../session/messages/outgoing';
import * as MessageUtils from '../../../session/utils';
import { TestUtils } from '../../../test/test-utils';
import { PendingMessageCache } from '../../../session/sending/PendingMessageCache';
import { RawMessage } from '../../../session/types/RawMessage';
import { PubKey } from '../../../session/types';
import * as Data from '../../../../js/modules/data';
describe('PendingMessageCache', () => {
const sandbox = sinon.createSandbox();
let pendingMessageCacheStub: PendingMessageCache;
// tslint:disable-next-line: no-require-imports no-var-requires
const Data = require('../../../../js/modules/data');
// tslint:disable-next-line: promise-function-async
const wrapInPromise = (value: any) =>
new Promise(resolve => {
resolve(value);
});
// Equivalent to Data.StorageItem
interface StorageItem {
id: string;
value: any;
}
beforeEach(async () => {
describe('PendingMessageCache', () => {// Initialize new stubbed cache
let pendingMessageCacheStub: PendingMessageCache;
beforeEach(async () => {
// Stub out methods which touch the database
const storageID = 'pendingMessages';
let data: Data.StorageItem = {
let data: StorageItem = {
id: storageID,
value: '',
};
TestUtils.stubData('getItemById').withArgs('pendingMessages').callsFake(async () => {
return wrapInPromise(data);
return data;
});
TestUtils.stubData('createOrUpdateItem').callsFake((item: Data.StorageItem) => {
TestUtils.stubData('createOrUpdateItem').callsFake((item: StorageItem) => {
data = item;
});
// Initialize new stubbed cache
pendingMessageCacheStub = new PendingMessageCache();
await pendingMessageCacheStub.init();
});
afterEach(() => {
sandbox.restore();
TestUtils.restoreStubs();
});
it('can initialize cache', async () => {
const { cache } = pendingMessageCacheStub;
const cache = pendingMessageCacheStub.get();
// We expect the cache to initialise as an empty array
expect(cache).to.be.instanceOf(Array);
@ -63,7 +61,7 @@ describe('PendingMessageCache', () => {
await pendingMessageCacheStub.add(device, message);
// Verify that the message is in the cache
const finalCache = pendingMessageCacheStub.cache;
const finalCache = pendingMessageCacheStub.get();
expect(finalCache).to.have.length(1);
@ -79,13 +77,13 @@ describe('PendingMessageCache', () => {
await pendingMessageCacheStub.add(device, message);
const initialCache = pendingMessageCacheStub.cache;
const initialCache = pendingMessageCacheStub.get();
expect(initialCache).to.have.length(1);
// Remove the message
await pendingMessageCacheStub.remove(rawMessage);
const finalCache = pendingMessageCacheStub.cache;
const finalCache = pendingMessageCacheStub.get();
// Verify that the message was removed
expect(finalCache).to.have.length(0);
@ -111,7 +109,7 @@ describe('PendingMessageCache', () => {
await pendingMessageCacheStub.add(item.device, item.message);
});
const { cache } = pendingMessageCacheStub;
const cache = pendingMessageCacheStub.get();
expect(cache).to.have.length(cacheItems.length);
// Get list of devices
@ -139,7 +137,7 @@ describe('PendingMessageCache', () => {
await pendingMessageCacheStub.add(item.device, item.message);
});
const initialCache = pendingMessageCacheStub.cache;
const initialCache = pendingMessageCacheStub.get();
expect(initialCache).to.have.length(cacheItems.length);
// Get pending for each specific device
@ -168,7 +166,7 @@ describe('PendingMessageCache', () => {
await pendingMessageCacheStub.add(device, message);
const finalCache = pendingMessageCacheStub.cache;
const finalCache = pendingMessageCacheStub.get();
expect(finalCache).to.have.length(1);
const foundMessage = pendingMessageCacheStub.find(rawMessage);
@ -196,13 +194,13 @@ describe('PendingMessageCache', () => {
await pendingMessageCacheStub.add(item.device, item.message);
});
const initialCache = pendingMessageCacheStub.cache;
const initialCache = pendingMessageCacheStub.get();
expect(initialCache).to.have.length(cacheItems.length);
// Clear cache
await pendingMessageCacheStub.clear();
const finalCache = pendingMessageCacheStub.cache;
const finalCache = pendingMessageCacheStub.get();
expect(finalCache).to.have.length(0);
});
});

@ -1,74 +0,0 @@
import { expect, should } from 'chai';
import { SignalService } from '../../../protobuf';
import { ChatMessage } from '../../../session/messages/outgoing';
import { RawMessage } from '../../../session/types/RawMessage';
import { MessageUtils, PubKey, PubKeyType } from '../../../session/utils';
describe('MessageUtils', () => {
it('can convert to RawMessage', () => {
// TOOD: MOVE ME TO MESSAGE UTILS TEST
const pubkey =
'0582fe8822c684999663cc6636148328fbd47c0836814c118af4e326bb4f0e1000';
const messageText = 'This is some message content';
const isRawMessage = (object: any): object is RawMessage => {
return (
'identifier' in object &&
'plainTextBuffer' in object &&
'timestamp' in object &&
'device' in object &&
'ttl' in object &&
'encryption' in object
);
};
const message = new ChatMessage({
body: messageText,
identifier: '1234567890',
timestamp: Date.now(),
attachments: undefined,
quote: undefined,
expireTimer: undefined,
lokiProfile: undefined,
preview: undefined,
});
// Explicitly check that it's a RawMessage
const rawMessage = MessageUtils.toRawMessage(pubkey, message);
expect(isRawMessage(rawMessage)).to.be.equal(true);
// console.log('[vince] isRawMessage(rawMessage):', isRawMessage(rawMessage));
// Check plaintext
const plainText = message.plainTextBuffer();
const decoded = SignalService.Content.decode(plainText);
expect(decoded.dataMessage?.body).to.be.equal(messageText);
});
// Pubkeys
it('can create new valid pubkey', () => {
const validPubkey =
'0582fe8822c684999663cc6636148328fbd47c0836814c118af4e326bb4f0e1000';
should().not.Throw(() => new PubKey(validPubkey), Error);
const pubkey = new PubKey(validPubkey);
expect(pubkey instanceof PubKey).to.be.equal(true);
});
it('invalid pubkey should throw error', () => {
const invalidPubkey = 'Lorem Ipsum';
should().Throw(() => new PubKey(invalidPubkey), Error);
});
it('can set pubkey type', () => {
const validPubkey =
'0582fe8822c684999663cc6636148328fbd47c0836814c118af4e326bb4f0e1000';
const pubkeyType = PubKeyType.Primary;
should().not.Throw(() => new PubKey(validPubkey, pubkeyType), Error);
const pubkey = new PubKey(validPubkey, pubkeyType);
expect(pubkey.type).to.be.equal(PubKeyType.Primary);
});
});
Loading…
Cancel
Save