fix: hide v3 closed group protobuf messages for now
parent
456d52ab1a
commit
fddfc8c501
@ -1,55 +1,55 @@
|
||||
import { SignalService } from '../../../../../../protobuf';
|
||||
import { isArray } from 'lodash';
|
||||
import { GroupMessage, GroupMessageParams } from './GroupMessage';
|
||||
// import { PubKey } from '../../../../../types';
|
||||
// import { from_hex } from 'libsodium-wrappers-sumo';
|
||||
|
||||
interface GroupAdminMessageParams extends GroupMessageParams {
|
||||
/*
|
||||
* A proof that we are an admin (a proof that we have access to the private key of the closed group).
|
||||
* this field is needed for all types of admin messages so that every member can make
|
||||
*/
|
||||
groupSignature: Uint8Array;
|
||||
}
|
||||
|
||||
interface GroupAdminMessageParams extends GroupMessageParams {
|
||||
/**
|
||||
* hex string of the members to delete the group from.
|
||||
* a single '*' is allowed too and means 'every members'
|
||||
*
|
||||
*/
|
||||
members: Array<string>;
|
||||
}
|
||||
|
||||
export class GroupAdminGroupMessage extends GroupMessage {
|
||||
// private readonly members: Array<string>;
|
||||
|
||||
constructor(params: GroupAdminMessageParams) {
|
||||
super(params);
|
||||
|
||||
if (!params.members || !isArray(params.members) || !params.members.length) {
|
||||
throw new Error('members parameter must be set');
|
||||
}
|
||||
|
||||
// if (params.members.length === 1 && params.members[0] === '*') {
|
||||
// this.members = params.members;
|
||||
// } else {
|
||||
// const allAreValid = params.members.every(PubKey.isValidGroupPubkey);
|
||||
// if (!allAreValid) {
|
||||
// throw new Error('One of the members is not a `isValidGroupPubkey`');
|
||||
// }
|
||||
|
||||
// this.members = params.members;
|
||||
// }
|
||||
throw new Error('TODO and add tests');
|
||||
}
|
||||
|
||||
public dataProto(): SignalService.DataMessage {
|
||||
const dataMessage = new SignalService.DataMessage();
|
||||
dataMessage.groupMessage = super.groupMessage();
|
||||
dataMessage.groupMessage.adminMessage = new SignalService.GroupAdminMessage();
|
||||
// dataMessage.groupMessage.members = this.members.map(from_hex);
|
||||
|
||||
return dataMessage;
|
||||
}
|
||||
}
|
||||
// import { SignalService } from '../../../../../../protobuf';
|
||||
// import { isArray } from 'lodash';
|
||||
// import { GroupMessage, GroupMessageParams } from './GroupMessage';
|
||||
// // import { PubKey } from '../../../../../types';
|
||||
// // import { from_hex } from 'libsodium-wrappers-sumo';
|
||||
|
||||
// interface GroupAdminMessageParams extends GroupMessageParams {
|
||||
// /*
|
||||
// * A proof that we are an admin (a proof that we have access to the private key of the closed group).
|
||||
// * this field is needed for all types of admin messages so that every member can make
|
||||
// */
|
||||
// groupSignature: Uint8Array;
|
||||
// }
|
||||
|
||||
// interface GroupAdminMessageParams extends GroupMessageParams {
|
||||
// /**
|
||||
// * hex string of the members to delete the group from.
|
||||
// * a single '*' is allowed too and means 'every members'
|
||||
// *
|
||||
// */
|
||||
// members: Array<string>;
|
||||
// }
|
||||
|
||||
// export class GroupAdminGroupMessage extends GroupMessage {
|
||||
// // private readonly members: Array<string>;
|
||||
|
||||
// constructor(params: GroupAdminMessageParams) {
|
||||
// super(params);
|
||||
|
||||
// if (!params.members || !isArray(params.members) || !params.members.length) {
|
||||
// throw new Error('members parameter must be set');
|
||||
// }
|
||||
|
||||
// // if (params.members.length === 1 && params.members[0] === '*') {
|
||||
// // this.members = params.members;
|
||||
// // } else {
|
||||
// // const allAreValid = params.members.every(PubKey.isValidGroupPubkey);
|
||||
// // if (!allAreValid) {
|
||||
// // throw new Error('One of the members is not a `isValidGroupPubkey`');
|
||||
// // }
|
||||
|
||||
// // this.members = params.members;
|
||||
// // }
|
||||
// throw new Error('TODO and add tests');
|
||||
// }
|
||||
|
||||
// public dataProto(): SignalService.DataMessage {
|
||||
// const dataMessage = new SignalService.DataMessage();
|
||||
// dataMessage.groupMessage = super.groupMessage();
|
||||
// dataMessage.groupMessage.adminMessage = new SignalService.GroupAdminMessage();
|
||||
// // dataMessage.groupMessage.members = this.members.map(from_hex);
|
||||
|
||||
// return dataMessage;
|
||||
// }
|
||||
// }
|
||||
|
@ -1,48 +1,48 @@
|
||||
import { SignalService } from '../../../../../../protobuf';
|
||||
import { isEmpty, isString } from 'lodash';
|
||||
import { GroupMessage, GroupMessageParams } from './GroupMessage';
|
||||
import { PubKey } from '../../../../../types';
|
||||
import { from_hex } from 'libsodium-wrappers-sumo';
|
||||
|
||||
export interface GroupInviteMessageParams extends GroupMessageParams {
|
||||
name: string;
|
||||
/**
|
||||
* hex string of that member private key
|
||||
*/
|
||||
memberPrivateKey: string;
|
||||
}
|
||||
|
||||
export class GroupInviteMessage extends GroupMessage {
|
||||
private readonly name: string;
|
||||
private readonly memberPrivateKey: string;
|
||||
|
||||
constructor(params: GroupInviteMessageParams) {
|
||||
super(params);
|
||||
|
||||
if (!params.name || isEmpty(params.name) || !isString(params.name)) {
|
||||
throw new Error('name parameter must be valid');
|
||||
}
|
||||
|
||||
if (
|
||||
!params.memberPrivateKey ||
|
||||
isEmpty(params.memberPrivateKey) ||
|
||||
!isString(params.memberPrivateKey) ||
|
||||
!PubKey.isHexOnly(params.memberPrivateKey)
|
||||
) {
|
||||
throw new Error('memberPrivateKey parameter must be valid');
|
||||
}
|
||||
|
||||
this.name = params.name;
|
||||
this.memberPrivateKey = params.memberPrivateKey;
|
||||
}
|
||||
|
||||
public dataProto(): SignalService.DataMessage {
|
||||
const dataMessage = new SignalService.DataMessage();
|
||||
dataMessage.groupMessage = super.groupMessage();
|
||||
dataMessage.groupMessage.inviteMessage = new SignalService.GroupInviteMessage();
|
||||
dataMessage.groupMessage.inviteMessage.name = this.name;
|
||||
dataMessage.groupMessage.inviteMessage.memberPrivateKey = from_hex(this.memberPrivateKey);
|
||||
|
||||
return dataMessage;
|
||||
}
|
||||
}
|
||||
// import { SignalService } from '../../../../../../protobuf';
|
||||
// import { isEmpty, isString } from 'lodash';
|
||||
// import { GroupMessage, GroupMessageParams } from './GroupMessage';
|
||||
// import { PubKey } from '../../../../../types';
|
||||
// import { from_hex } from 'libsodium-wrappers-sumo';
|
||||
|
||||
// export interface GroupInviteMessageParams extends GroupMessageParams {
|
||||
// name: string;
|
||||
// /**
|
||||
// * hex string of that member private key
|
||||
// */
|
||||
// memberPrivateKey: string;
|
||||
// }
|
||||
|
||||
// export class GroupInviteMessage extends GroupMessage {
|
||||
// private readonly name: string;
|
||||
// private readonly memberPrivateKey: string;
|
||||
|
||||
// constructor(params: GroupInviteMessageParams) {
|
||||
// super(params);
|
||||
|
||||
// if (!params.name || isEmpty(params.name) || !isString(params.name)) {
|
||||
// throw new Error('name parameter must be valid');
|
||||
// }
|
||||
|
||||
// if (
|
||||
// !params.memberPrivateKey ||
|
||||
// isEmpty(params.memberPrivateKey) ||
|
||||
// !isString(params.memberPrivateKey) ||
|
||||
// !PubKey.isHexOnly(params.memberPrivateKey)
|
||||
// ) {
|
||||
// throw new Error('memberPrivateKey parameter must be valid');
|
||||
// }
|
||||
|
||||
// this.name = params.name;
|
||||
// this.memberPrivateKey = params.memberPrivateKey;
|
||||
// }
|
||||
|
||||
// public dataProto(): SignalService.DataMessage {
|
||||
// const dataMessage = new SignalService.DataMessage();
|
||||
// dataMessage.groupMessage = super.groupMessage();
|
||||
// dataMessage.groupMessage.inviteMessage = new SignalService.GroupInviteMessage();
|
||||
// dataMessage.groupMessage.inviteMessage.name = this.name;
|
||||
// dataMessage.groupMessage.inviteMessage.memberPrivateKey = from_hex(this.memberPrivateKey);
|
||||
|
||||
// return dataMessage;
|
||||
// }
|
||||
// }
|
||||
|
@ -1,18 +1,18 @@
|
||||
import { SignalService } from '../../../../../../protobuf';
|
||||
import { GroupMessage, GroupMessageParams } from './GroupMessage';
|
||||
// import { SignalService } from '../../../../../../protobuf';
|
||||
// import { GroupMessage, GroupMessageParams } from './GroupMessage';
|
||||
|
||||
interface GroupMemberLeftMessageParams extends GroupMessageParams {}
|
||||
// interface GroupMemberLeftMessageParams extends GroupMessageParams {}
|
||||
|
||||
export class GroupMemberLeftMessage extends GroupMessage {
|
||||
constructor(params: GroupMemberLeftMessageParams) {
|
||||
super(params);
|
||||
}
|
||||
// export class GroupMemberLeftMessage extends GroupMessage {
|
||||
// constructor(params: GroupMemberLeftMessageParams) {
|
||||
// super(params);
|
||||
// }
|
||||
|
||||
public dataProto(): SignalService.DataMessage {
|
||||
const dataMessage = new SignalService.DataMessage();
|
||||
dataMessage.groupMessage = super.groupMessage();
|
||||
dataMessage.groupMessage.memberLeftMessage = new SignalService.GroupMemberLeftMessage();
|
||||
// public dataProto(): SignalService.DataMessage {
|
||||
// const dataMessage = new SignalService.DataMessage();
|
||||
// dataMessage.groupMessage = super.groupMessage();
|
||||
// dataMessage.groupMessage.memberLeftMessage = new SignalService.GroupMemberLeftMessage();
|
||||
|
||||
return dataMessage;
|
||||
}
|
||||
}
|
||||
// return dataMessage;
|
||||
// }
|
||||
// }
|
||||
|
@ -1,18 +1,18 @@
|
||||
import { SignalService } from '../../../../../../protobuf';
|
||||
import { DataMessage } from '../../../DataMessage';
|
||||
import { MessageParams } from '../../../Message';
|
||||
// import { SignalService } from '../../../../../../protobuf';
|
||||
// import { DataMessage } from '../../../DataMessage';
|
||||
// import { MessageParams } from '../../../Message';
|
||||
|
||||
export interface GroupMessageParams extends MessageParams {}
|
||||
// export interface GroupMessageParams extends MessageParams {}
|
||||
|
||||
export abstract class GroupMessage extends DataMessage {
|
||||
constructor(params: GroupMessageParams) {
|
||||
super({
|
||||
timestamp: params.timestamp,
|
||||
identifier: params.identifier,
|
||||
});
|
||||
}
|
||||
// export abstract class GroupMessage extends DataMessage {
|
||||
// constructor(params: GroupMessageParams) {
|
||||
// super({
|
||||
// timestamp: params.timestamp,
|
||||
// identifier: params.identifier,
|
||||
// });
|
||||
// }
|
||||
|
||||
protected groupMessage() {
|
||||
return new SignalService.GroupMessage();
|
||||
}
|
||||
}
|
||||
// protected groupMessage() {
|
||||
// return new SignalService.GroupMessage();
|
||||
// }
|
||||
// }
|
||||
|
@ -1,34 +1,34 @@
|
||||
import { SignalService } from '../../../../../../protobuf';
|
||||
import { isEmpty } from 'lodash';
|
||||
import { GroupMessage, GroupMessageParams } from './GroupMessage';
|
||||
import { from_hex } from 'libsodium-wrappers-sumo';
|
||||
// import { SignalService } from '../../../../../../protobuf';
|
||||
// import { isEmpty } from 'lodash';
|
||||
// import { GroupMessage, GroupMessageParams } from './GroupMessage';
|
||||
// import { from_hex } from 'libsodium-wrappers-sumo';
|
||||
|
||||
export interface GroupPromoteMessageParams extends GroupMessageParams {
|
||||
/**
|
||||
* hex string of the group private key
|
||||
*/
|
||||
privateKey: string;
|
||||
}
|
||||
// export interface GroupPromoteMessageParams extends GroupMessageParams {
|
||||
// /**
|
||||
// * hex string of the group private key
|
||||
// */
|
||||
// privateKey: string;
|
||||
// }
|
||||
|
||||
export class GroupPromoteMessage extends GroupMessage {
|
||||
private readonly privateKey: string;
|
||||
// export class GroupPromoteMessage extends GroupMessage {
|
||||
// private readonly privateKey: string;
|
||||
|
||||
constructor(params: GroupPromoteMessageParams) {
|
||||
super(params);
|
||||
// constructor(params: GroupPromoteMessageParams) {
|
||||
// super(params);
|
||||
|
||||
if (!params.privateKey || isEmpty(params.privateKey)) {
|
||||
throw new Error('privateKey parameter must be set');
|
||||
}
|
||||
// if (!params.privateKey || isEmpty(params.privateKey)) {
|
||||
// throw new Error('privateKey parameter must be set');
|
||||
// }
|
||||
|
||||
this.privateKey = params.privateKey;
|
||||
}
|
||||
// this.privateKey = params.privateKey;
|
||||
// }
|
||||
|
||||
public dataProto(): SignalService.DataMessage {
|
||||
const dataMessage = new SignalService.DataMessage();
|
||||
dataMessage.groupMessage = super.groupMessage();
|
||||
dataMessage.groupMessage.promoteMessage = new SignalService.GroupPromoteMessage();
|
||||
dataMessage.groupMessage.promoteMessage.privateKey = from_hex(this.privateKey);
|
||||
// public dataProto(): SignalService.DataMessage {
|
||||
// const dataMessage = new SignalService.DataMessage();
|
||||
// dataMessage.groupMessage = super.groupMessage();
|
||||
// dataMessage.groupMessage.promoteMessage = new SignalService.GroupPromoteMessage();
|
||||
// dataMessage.groupMessage.promoteMessage.privateKey = from_hex(this.privateKey);
|
||||
|
||||
return dataMessage;
|
||||
}
|
||||
}
|
||||
// return dataMessage;
|
||||
// }
|
||||
// }
|
||||
|
@ -1,87 +1,89 @@
|
||||
import { expect } from 'chai';
|
||||
// import { expect } from 'chai';
|
||||
|
||||
import { SignalService } from '../../../../../../protobuf';
|
||||
import { GroupInviteMessage } from '../../../../../../session/messages/outgoing/controlMessage/group/v3/GroupInviteMessage';
|
||||
import { v4 } from 'uuid';
|
||||
import { Constants } from '../../../../../../session';
|
||||
import { from_hex } from 'libsodium-wrappers-sumo';
|
||||
// import { SignalService } from '../../../../../../protobuf';
|
||||
// import { GroupInviteMessage } from '../../../../../../session/messages/outgoing/controlMessage/group/v3/GroupInviteMessage';
|
||||
// import { v4 } from 'uuid';
|
||||
// import { Constants } from '../../../../../../session';
|
||||
// import { from_hex } from 'libsodium-wrappers-sumo';
|
||||
|
||||
describe('GroupInviteMessage', () => {
|
||||
it('can create valid message', () => {
|
||||
const message = new GroupInviteMessage({
|
||||
timestamp: 12345,
|
||||
memberPrivateKey: '654321',
|
||||
name: 'groupName',
|
||||
identifier: v4(),
|
||||
});
|
||||
// describe('GroupInviteMessage', () => {
|
||||
// beforeEach(async () => {});
|
||||
|
||||
const plainText = message.plainTextBuffer();
|
||||
const decoded = SignalService.Content.decode(plainText);
|
||||
expect(decoded.dataMessage)
|
||||
.to.have.property('groupMessage')
|
||||
.to.have.property('inviteMessage')
|
||||
.to.have.deep.property('name', 'groupName');
|
||||
expect(decoded.dataMessage)
|
||||
.to.have.property('groupMessage')
|
||||
.to.have.property('inviteMessage')
|
||||
.to.have.deep.property('memberPrivateKey', from_hex('654321'));
|
||||
// it('can create valid message', async () => {
|
||||
// const message = new GroupInviteMessage({
|
||||
// timestamp: 12345,
|
||||
// memberPrivateKey: '654321',
|
||||
// name: 'groupName',
|
||||
// identifier: v4(),
|
||||
// });
|
||||
|
||||
expect(message)
|
||||
.to.have.property('timestamp')
|
||||
.to.be.equal(12345);
|
||||
});
|
||||
// const plainText = message.plainTextBuffer();
|
||||
// const decoded = SignalService.Content.decode(plainText);
|
||||
// expect(decoded.dataMessage)
|
||||
// .to.have.property('groupMessage')
|
||||
// .to.have.property('inviteMessage')
|
||||
// .to.have.deep.property('name', 'groupName');
|
||||
// expect(decoded.dataMessage)
|
||||
// .to.have.property('groupMessage')
|
||||
// .to.have.property('inviteMessage')
|
||||
// .to.have.deep.property('memberPrivateKey', from_hex('654321'));
|
||||
|
||||
it('correct ttl', () => {
|
||||
const message = new GroupInviteMessage({
|
||||
timestamp: 12345,
|
||||
memberPrivateKey: '654321',
|
||||
name: 'groupName',
|
||||
identifier: v4(),
|
||||
});
|
||||
// expect(message)
|
||||
// .to.have.property('timestamp')
|
||||
// .to.be.equal(12345);
|
||||
// });
|
||||
|
||||
expect(message.ttl()).to.equal(Constants.TTL_DEFAULT.TTL_MAX);
|
||||
});
|
||||
// it('correct ttl', () => {
|
||||
// const message = new GroupInviteMessage({
|
||||
// timestamp: 12345,
|
||||
// memberPrivateKey: '654321',
|
||||
// name: 'groupName',
|
||||
// identifier: v4(),
|
||||
// });
|
||||
|
||||
it('has an identifier even if none are provided', () => {
|
||||
const message = new GroupInviteMessage({
|
||||
timestamp: 12345,
|
||||
memberPrivateKey: '654321',
|
||||
name: 'groupName',
|
||||
});
|
||||
// expect(message.ttl()).to.equal(Constants.TTL_DEFAULT.TTL_MAX);
|
||||
// });
|
||||
|
||||
expect(message.identifier).to.not.equal(null, 'identifier cannot be null');
|
||||
expect(message.identifier).to.not.equal(undefined, 'identifier cannot be undefined');
|
||||
});
|
||||
// it('has an identifier even if none are provided', () => {
|
||||
// const message = new GroupInviteMessage({
|
||||
// timestamp: 12345,
|
||||
// memberPrivateKey: '654321',
|
||||
// name: 'groupName',
|
||||
// });
|
||||
|
||||
describe('constructor throws on invalid ', () => {
|
||||
it('memberPk is empty', () => {
|
||||
expect(() => {
|
||||
new GroupInviteMessage({
|
||||
timestamp: 12345,
|
||||
memberPrivateKey: undefined as any,
|
||||
name: 'groupName',
|
||||
});
|
||||
}).throws();
|
||||
});
|
||||
// expect(message.identifier).to.not.equal(null, 'identifier cannot be null');
|
||||
// expect(message.identifier).to.not.equal(undefined, 'identifier cannot be undefined');
|
||||
// });
|
||||
|
||||
it('memberPk is not a string', () => {
|
||||
expect(() => {
|
||||
new GroupInviteMessage({
|
||||
timestamp: 12345,
|
||||
memberPrivateKey: 1234 as any,
|
||||
name: 'groupName',
|
||||
});
|
||||
}).throws();
|
||||
});
|
||||
// describe('constructor throws on invalid ', () => {
|
||||
// it('memberPk is empty', () => {
|
||||
// expect(() => {
|
||||
// new GroupInviteMessage({
|
||||
// timestamp: 12345,
|
||||
// memberPrivateKey: undefined as any,
|
||||
// name: 'groupName',
|
||||
// });
|
||||
// }).throws();
|
||||
// });
|
||||
|
||||
it('memberPk is not a hex string', () => {
|
||||
expect(() => {
|
||||
new GroupInviteMessage({
|
||||
timestamp: 12345,
|
||||
memberPrivateKey: '03ghklmnopqrstuvxyz' as any,
|
||||
name: 'groupName',
|
||||
});
|
||||
}).throws();
|
||||
});
|
||||
});
|
||||
});
|
||||
// it('memberPk is not a string', () => {
|
||||
// expect(() => {
|
||||
// new GroupInviteMessage({
|
||||
// timestamp: 12345,
|
||||
// memberPrivateKey: 1234 as any,
|
||||
// name: 'groupName',
|
||||
// });
|
||||
// }).throws();
|
||||
// });
|
||||
|
||||
// it('memberPk is not a hex string', () => {
|
||||
// expect(() => {
|
||||
// new GroupInviteMessage({
|
||||
// timestamp: 12345,
|
||||
// memberPrivateKey: '03ghklmnopqrstuvxyz' as any,
|
||||
// name: 'groupName',
|
||||
// });
|
||||
// }).throws();
|
||||
// });
|
||||
// });
|
||||
// });
|
||||
|
@ -1,49 +1,52 @@
|
||||
import { expect } from 'chai';
|
||||
|
||||
import { SignalService } from '../../../../../../protobuf';
|
||||
import { v4 } from 'uuid';
|
||||
import { Constants } from '../../../../../../session';
|
||||
import { GroupMemberLeftMessage } from '../../../../../../session/messages/outgoing/controlMessage/group/v3/GroupMemberLeftMessage';
|
||||
|
||||
describe('GroupMemberLeftMessage', () => {
|
||||
it('can create valid message', () => {
|
||||
const message = new GroupMemberLeftMessage({
|
||||
timestamp: 12345,
|
||||
identifier: v4(),
|
||||
});
|
||||
|
||||
const plainText = message.plainTextBuffer();
|
||||
const decoded = SignalService.Content.decode(plainText);
|
||||
expect(decoded.dataMessage)
|
||||
.to.have.property('groupMessage')
|
||||
.to.have.property('memberLeftMessage').to.be.not.undefined;
|
||||
expect(decoded.dataMessage)
|
||||
.to.have.property('groupMessage')
|
||||
.to.have.property('memberLeftMessage').to.be.not.null;
|
||||
|
||||
expect(decoded.dataMessage)
|
||||
.to.have.property('groupMessage')
|
||||
.to.have.property('memberLeftMessage').to.be.empty;
|
||||
expect(message)
|
||||
.to.have.property('timestamp')
|
||||
.to.be.equal(12345);
|
||||
});
|
||||
|
||||
it('correct ttl', () => {
|
||||
const message = new GroupMemberLeftMessage({
|
||||
timestamp: 12345,
|
||||
identifier: v4(),
|
||||
});
|
||||
|
||||
expect(message.ttl()).to.equal(Constants.TTL_DEFAULT.TTL_MAX);
|
||||
});
|
||||
|
||||
it('has an identifier even if none are provided', () => {
|
||||
const message = new GroupMemberLeftMessage({
|
||||
timestamp: 12345,
|
||||
});
|
||||
|
||||
expect(message.identifier).to.not.equal(null, 'identifier cannot be null');
|
||||
expect(message.identifier).to.not.equal(undefined, 'identifier cannot be undefined');
|
||||
});
|
||||
});
|
||||
// import { expect } from 'chai';
|
||||
|
||||
// import { SignalService } from '../../../../../../protobuf';
|
||||
// import { v4 } from 'uuid';
|
||||
// import { Constants } from '../../../../../../session';
|
||||
// import { GroupMemberLeftMessage } from '../../../../../../session/messages/outgoing/controlMessage/group/v3/GroupMemberLeftMessage';
|
||||
|
||||
// describe('GroupMemberLeftMessage', () => {
|
||||
// beforeEach(async () => {});
|
||||
|
||||
// it('can create valid message', async () => {
|
||||
// const message = new GroupMemberLeftMessage({
|
||||
// timestamp: 12345,
|
||||
// identifier: v4(),
|
||||
// });
|
||||
|
||||
// const plainText = message.plainTextBuffer();
|
||||
// const decoded = SignalService.Content.decode(plainText);
|
||||
// expect(decoded.dataMessage)
|
||||
// .to.have.property('groupMessage')
|
||||
// .to.have.property('memberLeftMessage').to.be.not.undefined;
|
||||
// expect(decoded.dataMessage)
|
||||
// .to.have.property('groupMessage')
|
||||
// .to.have.property('memberLeftMessage').to.be.not.null;
|
||||
|
||||
// expect(decoded.dataMessage)
|
||||
// .to.have.property('groupMessage')
|
||||
// .to.have.property('memberLeftMessage').to.be.empty;
|
||||
// expect(message)
|
||||
// .to.have.property('timestamp')
|
||||
// .to.be.equal(12345);
|
||||
// });
|
||||
|
||||
// it('correct ttl', () => {
|
||||
// const message = new GroupMemberLeftMessage({
|
||||
// timestamp: 12345,
|
||||
// identifier: v4(),
|
||||
// });
|
||||
|
||||
// expect(message.ttl()).to.equal(Constants.TTL_DEFAULT.TTL_MAX);
|
||||
// });
|
||||
|
||||
// it('has an identifier even if none are provided', () => {
|
||||
// const message = new GroupMemberLeftMessage({
|
||||
// timestamp: 12345,
|
||||
// });
|
||||
|
||||
// expect(message.identifier).to.not.equal(null, 'identifier cannot be null');
|
||||
// expect(message.identifier).to.not.equal(undefined, 'identifier cannot be undefined');
|
||||
// });
|
||||
|
||||
// });
|
||||
|
@ -1,58 +1,60 @@
|
||||
import { expect } from 'chai';
|
||||
|
||||
import { SignalService } from '../../../../../../protobuf';
|
||||
import { GroupPromoteMessage } from '../../../../../../session/messages/outgoing/controlMessage/group/v3/GroupPromoteMessage';
|
||||
import { v4 } from 'uuid';
|
||||
import { Constants } from '../../../../../../session';
|
||||
import { from_hex } from 'libsodium-wrappers-sumo';
|
||||
|
||||
describe('GroupPromoteMessage', () => {
|
||||
it('can create valid message', () => {
|
||||
const message = new GroupPromoteMessage({
|
||||
timestamp: 12345,
|
||||
identifier: v4(),
|
||||
privateKey: '1234',
|
||||
});
|
||||
|
||||
const plainText = message.plainTextBuffer();
|
||||
const decoded = SignalService.Content.decode(plainText);
|
||||
expect(decoded.dataMessage)
|
||||
.to.have.property('groupMessage')
|
||||
.to.have.property('promoteMessage')
|
||||
.to.have.deep.property('privateKey', from_hex('1234'));
|
||||
expect(message)
|
||||
.to.have.property('timestamp')
|
||||
.to.be.equal(12345);
|
||||
});
|
||||
|
||||
it('correct ttl', () => {
|
||||
const message = new GroupPromoteMessage({
|
||||
timestamp: 12345,
|
||||
identifier: v4(),
|
||||
privateKey: '1234',
|
||||
});
|
||||
|
||||
expect(message.ttl()).to.equal(Constants.TTL_DEFAULT.TTL_MAX);
|
||||
});
|
||||
|
||||
it('has an identifier even if none are provided', () => {
|
||||
const message = new GroupPromoteMessage({
|
||||
timestamp: 12345,
|
||||
privateKey: '1234',
|
||||
});
|
||||
|
||||
expect(message.identifier).to.not.equal(null, 'identifier cannot be null');
|
||||
expect(message.identifier).to.not.equal(undefined, 'identifier cannot be undefined');
|
||||
});
|
||||
|
||||
describe('constructor throws on invalid ', () => {
|
||||
it('privateKey empty', () => {
|
||||
expect(() => {
|
||||
new GroupPromoteMessage({
|
||||
timestamp: 12345,
|
||||
privateKey: null as any,
|
||||
});
|
||||
}).throws();
|
||||
});
|
||||
});
|
||||
});
|
||||
// import { expect } from 'chai';
|
||||
|
||||
// import { SignalService } from '../../../../../../protobuf';
|
||||
// import { GroupPromoteMessage } from '../../../../../../session/messages/outgoing/controlMessage/group/v3/GroupPromoteMessage';
|
||||
// import { v4 } from 'uuid';
|
||||
// import { Constants } from '../../../../../../session';
|
||||
// import { from_hex } from 'libsodium-wrappers-sumo';
|
||||
|
||||
// describe('GroupPromoteMessage', () => {
|
||||
// beforeEach(async () => {});
|
||||
|
||||
// it('can create valid message', async () => {
|
||||
// const message = new GroupPromoteMessage({
|
||||
// timestamp: 12345,
|
||||
// identifier: v4(),
|
||||
// privateKey: '1234',
|
||||
// });
|
||||
|
||||
// const plainText = message.plainTextBuffer();
|
||||
// const decoded = SignalService.Content.decode(plainText);
|
||||
// expect(decoded.dataMessage)
|
||||
// .to.have.property('groupMessage')
|
||||
// .to.have.property('promoteMessage')
|
||||
// .to.have.deep.property('privateKey', from_hex('1234'));
|
||||
// expect(message)
|
||||
// .to.have.property('timestamp')
|
||||
// .to.be.equal(12345);
|
||||
// });
|
||||
|
||||
// it('correct ttl', () => {
|
||||
// const message = new GroupPromoteMessage({
|
||||
// timestamp: 12345,
|
||||
// identifier: v4(),
|
||||
// privateKey: '1234',
|
||||
// });
|
||||
|
||||
// expect(message.ttl()).to.equal(Constants.TTL_DEFAULT.TTL_MAX);
|
||||
// });
|
||||
|
||||
// it('has an identifier even if none are provided', () => {
|
||||
// const message = new GroupPromoteMessage({
|
||||
// timestamp: 12345,
|
||||
// privateKey: '1234',
|
||||
// });
|
||||
|
||||
// expect(message.identifier).to.not.equal(null, 'identifier cannot be null');
|
||||
// expect(message.identifier).to.not.equal(undefined, 'identifier cannot be undefined');
|
||||
// });
|
||||
|
||||
// describe('constructor throws on invalid ', () => {
|
||||
// it('privateKey empty', () => {
|
||||
// expect(() => {
|
||||
// new GroupPromoteMessage({
|
||||
// timestamp: 12345,
|
||||
// privateKey: null as any,
|
||||
// });
|
||||
// }).throws();
|
||||
// });
|
||||
// });
|
||||
// });
|
||||
|
Loading…
Reference in New Issue