|
|
|
@ -6,132 +6,154 @@ const common = require('./common');
|
|
|
|
|
const ConversationPage = require('./page-objects/conversation.page');
|
|
|
|
|
|
|
|
|
|
async function generateAndSendMessage(app) {
|
|
|
|
|
|
|
|
|
|
// send a message from app and validate it is received on app2
|
|
|
|
|
const textMessage = common.generateSendMessageText();
|
|
|
|
|
await app.client
|
|
|
|
|
// send a message from app and validate it is received on app2
|
|
|
|
|
const textMessage = common.generateSendMessageText();
|
|
|
|
|
await app.client
|
|
|
|
|
.element(ConversationPage.sendMessageTextarea)
|
|
|
|
|
.setValue(textMessage);
|
|
|
|
|
|
|
|
|
|
await app.client
|
|
|
|
|
await app.client
|
|
|
|
|
.element(ConversationPage.sendMessageTextarea)
|
|
|
|
|
.getValue()
|
|
|
|
|
.should.eventually.equal(textMessage);
|
|
|
|
|
// send the message
|
|
|
|
|
await app.client.keys('Enter');
|
|
|
|
|
// send the message
|
|
|
|
|
await app.client.keys('Enter');
|
|
|
|
|
|
|
|
|
|
// validate that the message has been added to the message list view
|
|
|
|
|
await app.client.waitForExist(
|
|
|
|
|
ConversationPage.existingSendMessageText(textMessage),
|
|
|
|
|
2000
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
return textMessage;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// validate that the message has been added to the message list view
|
|
|
|
|
await app.client.waitForExist(
|
|
|
|
|
ConversationPage.existingSendMessageText(textMessage),
|
|
|
|
|
2000
|
|
|
|
|
);
|
|
|
|
|
async function makeFriendsPlusMessage(app, [app2, pubkey]) {
|
|
|
|
|
await common.makeFriends(app, [app2, pubkey]);
|
|
|
|
|
|
|
|
|
|
return textMessage;
|
|
|
|
|
// Send something back so that `app` can see our name
|
|
|
|
|
const text = await generateAndSendMessage(app2);
|
|
|
|
|
await app.client.waitForExist(
|
|
|
|
|
ConversationPage.existingReceivedMessageText(text),
|
|
|
|
|
8000
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
// Click away so we can call this function again
|
|
|
|
|
await app.client.element(ConversationPage.globeButtonSection).click();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
describe('senderkeys', function() {
|
|
|
|
|
let app;
|
|
|
|
|
let app2;
|
|
|
|
|
async function testTwoMembers() {
|
|
|
|
|
const [app, app2] = await common.startAppsAsFriends();
|
|
|
|
|
|
|
|
|
|
this.timeout(60000);
|
|
|
|
|
this.slow(30000);
|
|
|
|
|
await app.client.element(ConversationPage.globeButtonSection).click();
|
|
|
|
|
await app.client.element(ConversationPage.createClosedGroupButton).click();
|
|
|
|
|
|
|
|
|
|
beforeEach(async () => {
|
|
|
|
|
await common.killallElectron();
|
|
|
|
|
await common.stopStubSnodeServer();
|
|
|
|
|
const useSenderKeys = true;
|
|
|
|
|
|
|
|
|
|
});
|
|
|
|
|
// create group and add new friend
|
|
|
|
|
await common.addFriendToNewClosedGroup([app, app2], useSenderKeys);
|
|
|
|
|
|
|
|
|
|
afterEach(async () => {
|
|
|
|
|
await common.stopApp(app);
|
|
|
|
|
await common.killallElectron();
|
|
|
|
|
await common.stopStubSnodeServer();
|
|
|
|
|
});
|
|
|
|
|
const text1 = await generateAndSendMessage(app);
|
|
|
|
|
|
|
|
|
|
it('Two member group', async function() {
|
|
|
|
|
// validate that the message has been added to the message list view
|
|
|
|
|
await app2.client.waitForExist(
|
|
|
|
|
ConversationPage.existingReceivedMessageText(text1),
|
|
|
|
|
5000
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
[app, app2] = await common.startAppsAsFriends();
|
|
|
|
|
// Send a message back:
|
|
|
|
|
const text2 = await generateAndSendMessage(app2);
|
|
|
|
|
|
|
|
|
|
await app.client.element(ConversationPage.globeButtonSection).click();
|
|
|
|
|
await app.client.element(ConversationPage.createClosedGroupButton).click();
|
|
|
|
|
// TODO: fix this. We can send messages back manually, not sure
|
|
|
|
|
// why this test fails
|
|
|
|
|
await app.client.waitForExist(
|
|
|
|
|
ConversationPage.existingReceivedMessageText(text2),
|
|
|
|
|
10000
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const useSenderKeys = true;
|
|
|
|
|
async function testThreeMembers() {
|
|
|
|
|
// 1. Make three clients A, B, C
|
|
|
|
|
|
|
|
|
|
// create group and add new friend
|
|
|
|
|
await common.addFriendToNewClosedGroup([app, app2], useSenderKeys);
|
|
|
|
|
const app1Props = {
|
|
|
|
|
mnemonic: common.TEST_MNEMONIC1,
|
|
|
|
|
displayName: common.TEST_DISPLAY_NAME1,
|
|
|
|
|
stubSnode: true,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const text1 = await generateAndSendMessage(app);
|
|
|
|
|
const app2Props = {
|
|
|
|
|
mnemonic: common.TEST_MNEMONIC2,
|
|
|
|
|
displayName: common.TEST_DISPLAY_NAME2,
|
|
|
|
|
stubSnode: true,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// validate that the message has been added to the message list view
|
|
|
|
|
await app2.client.waitForExist(
|
|
|
|
|
ConversationPage.existingReceivedMessageText(text1),
|
|
|
|
|
5000
|
|
|
|
|
);
|
|
|
|
|
const app3Props = {
|
|
|
|
|
mnemonic: common.TEST_MNEMONIC3,
|
|
|
|
|
displayName: common.TEST_DISPLAY_NAME3,
|
|
|
|
|
stubSnode: true,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// Send a message back:
|
|
|
|
|
const text2 = await generateAndSendMessage(app2);
|
|
|
|
|
const [app1, app2, app3] = await Promise.all([
|
|
|
|
|
common.startAndStub(app1Props),
|
|
|
|
|
common.startAndStubN(app2Props, 2),
|
|
|
|
|
common.startAndStubN(app3Props, 3),
|
|
|
|
|
]);
|
|
|
|
|
|
|
|
|
|
// TODO: fix this. We can send messages back manually, not sure
|
|
|
|
|
// why this test fails
|
|
|
|
|
// await app.client.waitForExist(
|
|
|
|
|
// ConversationPage.existingReceivedMessageText(text2),
|
|
|
|
|
// 10000
|
|
|
|
|
// );
|
|
|
|
|
// 2. Make A friends with B and C (B and C are not friends)
|
|
|
|
|
|
|
|
|
|
});
|
|
|
|
|
await makeFriendsPlusMessage(app1, [app2, common.TEST_PUBKEY2]);
|
|
|
|
|
await makeFriendsPlusMessage(app1, [app3, common.TEST_PUBKEY3]);
|
|
|
|
|
|
|
|
|
|
it('Three member group: test session requests', async function() {
|
|
|
|
|
const useSenderKeys = true;
|
|
|
|
|
|
|
|
|
|
// 1. Make three clients A, B, C
|
|
|
|
|
await app1.client.element(ConversationPage.globeButtonSection).click();
|
|
|
|
|
await app1.client.element(ConversationPage.createClosedGroupButton).click();
|
|
|
|
|
|
|
|
|
|
const app1Props = {
|
|
|
|
|
mnemonic: common.TEST_MNEMONIC1,
|
|
|
|
|
displayName: common.TEST_DISPLAY_NAME1,
|
|
|
|
|
stubSnode: true,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const app2Props = {
|
|
|
|
|
mnemonic: common.TEST_MNEMONIC2,
|
|
|
|
|
displayName: common.TEST_DISPLAY_NAME2,
|
|
|
|
|
stubSnode: true,
|
|
|
|
|
};
|
|
|
|
|
// 3. Add all three to the group
|
|
|
|
|
|
|
|
|
|
const app3Props = {
|
|
|
|
|
mnemonic: common.TEST_MNEMONIC3,
|
|
|
|
|
displayName: common.TEST_DISPLAY_NAME3,
|
|
|
|
|
stubSnode: true,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const [app1, app2, app3] = await Promise.all([
|
|
|
|
|
common.startAndStub(app1Props),
|
|
|
|
|
common.startAndStubN(app2Props, 2),
|
|
|
|
|
common.startAndStubN(app3Props, 3)
|
|
|
|
|
]);
|
|
|
|
|
await common.addFriendToNewClosedGroup([app1, app2, app3], useSenderKeys);
|
|
|
|
|
|
|
|
|
|
// 2. Make A friends with B and C (B and C are not friends)
|
|
|
|
|
// 4. Test that all members can see the message from app1
|
|
|
|
|
const text1 = await generateAndSendMessage(app1);
|
|
|
|
|
|
|
|
|
|
await common.makeFriends(app1, [app2, common.TEST_PUBKEY2]);
|
|
|
|
|
await app2.client.waitForExist(
|
|
|
|
|
ConversationPage.existingReceivedMessageText(text1),
|
|
|
|
|
5000
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
await common.makeFriends(app1, [app3, common.TEST_PUBKEY3]);
|
|
|
|
|
await app3.client.waitForExist(
|
|
|
|
|
ConversationPage.existingReceivedMessageText(text1),
|
|
|
|
|
5000
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
// const text1 = await generateAndSendMessage(app1);
|
|
|
|
|
// TODO: test that B and C can send messages to the group
|
|
|
|
|
|
|
|
|
|
// // validate that the message has been added to the message list view
|
|
|
|
|
// await app2.client.waitForExist(
|
|
|
|
|
// ConversationPage.existingReceivedMessageText(text1),
|
|
|
|
|
// 5000
|
|
|
|
|
// );
|
|
|
|
|
// const text2 = await generateAndSendMessage(app3);
|
|
|
|
|
|
|
|
|
|
// // validate that the message has been added to the message list view
|
|
|
|
|
// await app3.client.waitForExist(
|
|
|
|
|
// ConversationPage.existingReceivedMessageText(text1),
|
|
|
|
|
// 5000
|
|
|
|
|
// );
|
|
|
|
|
// await app2.client.waitForExist(
|
|
|
|
|
// ConversationPage.existingReceivedMessageText(text2),
|
|
|
|
|
// 5000
|
|
|
|
|
// );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// TODO: test that B and C can send messages to the group
|
|
|
|
|
describe('senderkeys', function() {
|
|
|
|
|
let app;
|
|
|
|
|
|
|
|
|
|
this.timeout(600000);
|
|
|
|
|
this.slow(40000);
|
|
|
|
|
|
|
|
|
|
beforeEach(async () => {
|
|
|
|
|
await common.killallElectron();
|
|
|
|
|
await common.stopStubSnodeServer();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
afterEach(async () => {
|
|
|
|
|
await common.stopApp(app);
|
|
|
|
|
await common.killallElectron();
|
|
|
|
|
await common.stopStubSnodeServer();
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
it('Two member group', testTwoMembers);
|
|
|
|
|
|
|
|
|
|
it('Three member group: test session requests', testThreeMembers);
|
|
|
|
|
});
|
|
|
|
|