group-tests

pull/1199/head
Vincent 5 years ago
parent 5d8f9cf950
commit a62a19145c

@ -1,5 +1,5 @@
import { ConversationType } from '../../ts/state/ducks/conversations';
import { Mesasge } from '../../ts/types/Message';
import { Message } from '../../ts/types/Message';
export type IdentityKey = {
id: string;

@ -14,9 +14,26 @@ chai.use(chaiAsPromised);
const { expect } = chai;
describe('Groups Utils', () => {
const sandbox = sinon.createSandbox();
describe('getGroupMembers', () => {
let ConversationControllerStub: sinon.SinonStub;
beforeEach(async () => {
const mockConversation = TestUtils.MockGroupConversation({ type: 'group' });
ConversationControllerStub = TestUtils.stubWindow('ConversationCollection', {
get: sandbox.stub().returns(mockConversation),
});
});
it('', async () => {
//
// should all be primary keys
});
});

@ -51,10 +51,10 @@ describe('Sync Message Utils', () => {
const numConversations = 20;
const primaryConversations = new Array(numConversations / 2)
.fill({})
.map(() => new TestUtils.MockPrivateConversation({ isPrimary: true }));
.map(() => new TestUtils.MockConversation({ type: 'primary' }));
const secondaryConversations = new Array(numConversations / 2)
.fill({})
.map(() => new TestUtils.MockPrivateConversation({ isPrimary: false }));
.map(() => new TestUtils.MockConversation({ type: 'secondary' }));
const conversations = [...primaryConversations, ...secondaryConversations];
const sandbox = sinon.createSandbox();

@ -5,7 +5,7 @@ import {
} from '../../../session/messages/outgoing';
import { v4 as uuid } from 'uuid';
import { OpenGroup } from '../../../session/types';
import { generateFakePubKey } from './pubkey';
import { generateFakePubKey, generateFakePubKeys } from './pubkey';
import { ConversationAttributes } from '../../../../js/models/conversation';
export function generateChatMessage(identifier?: string): ChatMessage {
@ -48,24 +48,37 @@ export function generateClosedGroupMessage(
});
}
interface MockPrivateConversationParams {
interface MockConversationParams {
id?: string;
isPrimary: boolean;
type: MockConversationType;
members?: Array<string>;
}
export class MockPrivateConversation {
export enum MockConversationType {
Primary = 'primary',
Secondary = 'secondary',
Group = 'group',
}
export class MockConversation {
public id: string;
public isPrimary: boolean;
public type: MockConversationType;
public attributes: ConversationAttributes;
public isPrimary?: boolean;
constructor(params: MockPrivateConversationParams) {
constructor(params: MockConversationParams) {
const dayInSeconds = 86400;
this.isPrimary = params.isPrimary;
this.type = params.type;
this.id = params.id ?? generateFakePubKey().key;
this.isPrimary = this.type === MockConversationType.Primary;
const members = this.type === MockConversationType.Group
? params.members ?? generateFakePubKeys(10).map(m => m.key)
: [];
this.attributes = {
members: [],
members,
left: false,
expireTimer: dayInSeconds,
profileSharing: true,
@ -91,6 +104,10 @@ export class MockPrivateConversation {
}
public getPrimaryDevicePubKey() {
if (this.type === MockConversationType.Group) {
return undefined;
}
return this.isPrimary ? this.id : generateFakePubKey().key;
}
}

Loading…
Cancel
Save