fix integration tests

pull/1038/head
Audric Ackermann 5 years ago
parent 8dccd1db2a
commit 5f42eb8212
No known key found for this signature in database
GPG Key ID: 999F434D76324AD4

@ -43,9 +43,8 @@ describe('Add friends', function() {
await app.client.element(ConversationPage.contactsButtonSection).click(); await app.client.element(ConversationPage.contactsButtonSection).click();
await app.client.element(ConversationPage.addContactButton).click(); await app.client.element(ConversationPage.addContactButton).click();
await app.client await app.client.isExisting(ConversationPage.leftPaneOverlay).should
.isExisting(ConversationPage.leftPaneOverlay) .eventually.be.true;
.should.eventually.be.equal(true);
await app.client await app.client
.element(ConversationPage.sessionIDInput) .element(ConversationPage.sessionIDInput)
@ -71,9 +70,8 @@ describe('Add friends', function() {
); );
// assure friend request message has been sent // assure friend request message has been sent
await common.timeout(3000); await common.timeout(3000);
await app.client await app.client.isExisting(ConversationPage.retrySendButton).should
.isExisting(ConversationPage.retrySendButton) .eventually.be.false;
.should.eventually.be.equal(false);
// wait for left notification Friend Request count to go to 1 and click it // wait for left notification Friend Request count to go to 1 and click it
await app2.client.waitForExist( await app2.client.waitForExist(
@ -86,7 +84,7 @@ describe('Add friends', function() {
// open the dropdown from the top friend request count // open the dropdown from the top friend request count
await app2.client.isExisting( await app2.client.isExisting(
ConversationPage.oneNotificationFriendRequestTop ConversationPage.oneNotificationFriendRequestTop
); ).should.eventually.be.true;
await app2.client await app2.client
.element(ConversationPage.oneNotificationFriendRequestTop) .element(ConversationPage.oneNotificationFriendRequestTop)
.click(); .click();
@ -97,8 +95,9 @@ describe('Add friends', function() {
common.TEST_DISPLAY_NAME1, common.TEST_DISPLAY_NAME1,
common.TEST_PUBKEY1 common.TEST_PUBKEY1
) )
); ).should.eventually.be.true;
await app2.client.isExisting(ConversationPage.acceptFriendRequestButton); await app2.client.isExisting(ConversationPage.acceptFriendRequestButton)
.should.eventually.be.true;
// accept the friend request and validate that on both side the "accepted FR" message is shown // accept the friend request and validate that on both side the "accepted FR" message is shown
await app2.client await app2.client

@ -59,15 +59,14 @@ describe('Closed groups', function() {
); );
await app.client.isExisting( await app.client.isExisting(
ConversationPage.headerTitleGroupName(common.VALID_CLOSED_GROUP_NAME1) ConversationPage.headerTitleGroupName(common.VALID_CLOSED_GROUP_NAME1)
); ).should.eventually.be.true;
await app.client await app.client
.element(ConversationPage.headerTitleMembers(2)) .element(ConversationPage.headerTitleMembers(2))
.isVisible(); .isVisible();
// validate overlay is closed // validate overlay is closed
await app.client await app.client.isExisting(ConversationPage.leftPaneOverlay).should
.isExisting(ConversationPage.leftPaneOverlay) .eventually.be.false;
.should.eventually.be.equal(false);
// move back to the conversation section // move back to the conversation section
await app.client await app.client
@ -79,7 +78,7 @@ describe('Closed groups', function() {
ConversationPage.rowOpenGroupConversationName( ConversationPage.rowOpenGroupConversationName(
common.VALID_CLOSED_GROUP_NAME1 common.VALID_CLOSED_GROUP_NAME1
) )
); ).should.eventually.be.true;
// next check app2 has been invited and has the group in its conversations // next check app2 has been invited and has the group in its conversations
await app2.client.waitForExist( await app2.client.waitForExist(

@ -244,7 +244,7 @@ module.exports = {
// open the dropdown from the top friend request count // open the dropdown from the top friend request count
await app2.client.isExisting( await app2.client.isExisting(
ConversationPage.oneNotificationFriendRequestTop ConversationPage.oneNotificationFriendRequestTop
); ).should.eventually.be.true;
await app2.client await app2.client
.element(ConversationPage.oneNotificationFriendRequestTop) .element(ConversationPage.oneNotificationFriendRequestTop)
.click(); .click();
@ -307,7 +307,8 @@ module.exports = {
2000 2000
); );
await app1.client.isExisting(ConversationPage.unpairDeviceButton); await app1.client.isExisting(ConversationPage.unpairDeviceButton).should
.eventually.be.true;
await app1.client.isExisting(ConversationPage.linkDeviceButtonDisabled) await app1.client.isExisting(ConversationPage.linkDeviceButtonDisabled)
.should.eventually.be.true; .should.eventually.be.true;
@ -325,7 +326,8 @@ module.exports = {
async triggerUnlinkApp2FromApp(app1, app2) { async triggerUnlinkApp2FromApp(app1, app2) {
// check app2 is loggedin // check app2 is loggedin
await app2.client.isExisting(RegistrationPage.conversationListContainer); await app2.client.isExisting(RegistrationPage.conversationListContainer)
.should.eventually.be.true;
await app1.client.element(ConversationPage.settingsButtonSection).click(); await app1.client.element(ConversationPage.settingsButtonSection).click();
await app1.client.element(ConversationPage.deviceSettingsRow).click(); await app1.client.element(ConversationPage.deviceSettingsRow).click();
@ -340,7 +342,7 @@ module.exports = {
2000 2000
); );
await app1.client.element(ConversationPage.linkDeviceButton).isEnabled() await app1.client.element(ConversationPage.linkDeviceButton).isEnabled()
.should.eventually.be.false; .should.eventually.be.true;
// let time to app2 to catch the event and restart dropping its data // let time to app2 to catch the event and restart dropping its data
await this.timeout(5000); await this.timeout(5000);
@ -349,7 +351,8 @@ module.exports = {
// (did not find a better way than checking the app no longer being accessible) // (did not find a better way than checking the app no longer being accessible)
let isApp2Joinable = true; let isApp2Joinable = true;
try { try {
await app2.client.isExisting(RegistrationPage.registrationTabSignIn); await app2.client.isExisting(RegistrationPage.registrationTabSignIn)
.should.eventually.be.true;
} catch (err) { } catch (err) {
// if we get an error here, it means Spectron is lost. // if we get an error here, it means Spectron is lost.
// this is a good thing because it means app2 restarted // this is a good thing because it means app2 restarted
@ -413,6 +416,7 @@ module.exports = {
if (this.messages[pubkey]) { if (this.messages[pubkey]) {
response.writeHead(200, { 'Content-Type': 'application/json' }); response.writeHead(200, { 'Content-Type': 'application/json' });
response.write(JSON.stringify(retrievedMessages)); response.write(JSON.stringify(retrievedMessages));
this.messages[pubkey] = [];
} }
response.end(); response.end();
} }

@ -37,16 +37,16 @@ describe('Open groups', function() {
await app.client.element(ConversationPage.joinOpenGroupButton).click(); await app.client.element(ConversationPage.joinOpenGroupButton).click();
// validate session loader is shown // validate session loader is shown
await app.client.isExisting(ConversationPage.sessionLoader); await app.client.isExisting(ConversationPage.sessionLoader).should
.eventually.be.true;
await app.client.waitForExist( await app.client.waitForExist(
ConversationPage.sessionToastJoinOpenGroupSuccess, ConversationPage.sessionToastJoinOpenGroupSuccess,
9000 9000
); );
// validate overlay is closed // validate overlay is closed
await app.client await app.client.isExisting(ConversationPage.leftPaneOverlay).should
.isExisting(ConversationPage.leftPaneOverlay) .eventually.be.false;
.should.eventually.be.equal(false);
// validate open chat has been added // validate open chat has been added
await app.client.waitForExist( await app.client.waitForExist(
@ -81,9 +81,8 @@ describe('Open groups', function() {
.setValue(common.VALID_GROUP_URL2); .setValue(common.VALID_GROUP_URL2);
await app.client.element(ConversationPage.joinOpenGroupButton).click(); await app.client.element(ConversationPage.joinOpenGroupButton).click();
// validate session loader is not shown // validate session loader is not shown
await app.client await app.client.isExisting(ConversationPage.sessionLoader).should
.isExisting(ConversationPage.sessionLoader) .eventually.be.false;
.should.eventually.be.equal(false);
await app.client.waitForExist( await app.client.waitForExist(
ConversationPage.sessionToastJoinOpenGroupAlreadyExist, ConversationPage.sessionToastJoinOpenGroupAlreadyExist,
@ -91,9 +90,8 @@ describe('Open groups', function() {
); );
// validate overlay is still opened // validate overlay is still opened
await app.client await app.client.isExisting(ConversationPage.leftPaneOverlay).should
.isExisting(ConversationPage.leftPaneOverlay) .eventually.be.true;
.should.eventually.be.equal(true);
}); });
it('can send message to open group', async () => { it('can send message to open group', async () => {

@ -8,7 +8,7 @@ module.exports = {
divRoleButtonWithTextDisabled: text => divRoleButtonWithTextDisabled: text =>
`//div[contains(string(), "${text}")][contains(@role, "button")][contains(@class, "disabled")]`, `//div[contains(string(), "${text}")][contains(@role, "button")][contains(@class, "disabled")]`,
divRoleButtonDangerWithText: text => divRoleButtonDangerWithText: text =>
`${module.exports.divRoleButtonWithText(text)}`, `${module.exports.divRoleButtonWithText(text)}[contains(@class, "danger")]`,
inputWithPlaceholder: placeholder => inputWithPlaceholder: placeholder =>
`//input[contains(@placeholder, "${placeholder}")]`, `//input[contains(@placeholder, "${placeholder}")]`,
textAreaWithPlaceholder: placeholder => textAreaWithPlaceholder: placeholder =>

@ -77,7 +77,7 @@ module.exports = {
oneNotificationFriendRequestLeft: oneNotificationFriendRequestLeft:
'//*[contains(@class,"session-icon-button") and .//*[contains(@class, "users")] and .//*[contains(@class, "notification-count") and contains(string(), "1")] ]', '//*[contains(@class,"session-icon-button") and .//*[contains(@class, "users")] and .//*[contains(@class, "notification-count") and contains(string(), "1")] ]',
oneNotificationFriendRequestTop: oneNotificationFriendRequestTop:
'//*[contains(@class,"contact-notification-count-bubble") and contains(string(), "1")]', '//*[contains(@class,"notification-count hover") and contains(string(), "1")]',
friendRequestFromUser: (displayName, pubkey) => friendRequestFromUser: (displayName, pubkey) =>
`//*[contains(@class,"module-left-pane__list-popup") and .//*[contains(@class, "module-conversation__user") and .//*[contains(string(), "${displayName}")] and .//*[contains(string(), "(...${pubkey.substring( `//*[contains(@class,"module-left-pane__list-popup") and .//*[contains(@class, "module-conversation__user") and .//*[contains(string(), "${displayName}")] and .//*[contains(string(), "(...${pubkey.substring(
60 60
@ -99,23 +99,23 @@ module.exports = {
), ),
validateDeleteAccount: commonPage.divRoleButtonDangerWithText('OK'), validateDeleteAccount: commonPage.divRoleButtonDangerWithText('OK'),
// device pairing // device linking
noPairedDeviceMessage: noPairedDeviceMessage:
'//*[contains(@class, "session-settings-item__title")][contains(string(), "No paired devices")]', '//*[contains(@class, "session-settings-item__title")][contains(string(), "No linked devices")]',
linkDeviceButton: commonPage.divRoleButtonWithText('Link New Device'), linkDeviceButton: commonPage.divRoleButtonWithText('Link New Device'),
linkDeviceButtonDisabled: commonPage.divRoleButtonWithTextDisabled( linkDeviceButtonDisabled: commonPage.divRoleButtonWithTextDisabled(
'Link New Device' 'Link New Device'
), ),
devicePairingDialog: '//*[contains(@class,"device-pairing-dialog")]', devicePairingDialog: '//*[contains(@class,"device-pairing-dialog")]',
qrImageDiv: commonPage.divWithClass('qr-image'), qrImageDiv: commonPage.divWithClass('qr-image'),
allowPairingButton: commonPage.divRoleButtonWithText('Allow Pairing'), allowPairingButton: commonPage.divRoleButtonWithText('Allow Linking'),
okButton: commonPage.divRoleButtonWithText('OK'), okButton: commonPage.divRoleButtonWithText('OK'),
devicePairedDescription: secretWords => devicePairedDescription: secretWords =>
commonPage.divWithClassAndText( commonPage.divWithClassAndText(
'session-settings-item__description', 'session-settings-item__description',
secretWords secretWords
), ),
unpairDeviceButton: commonPage.divRoleButtonDangerWithText('Unpair Device'), unpairDeviceButton: commonPage.divRoleButtonDangerWithText('Unlink Device'),
deleteAccountButton: commonPage.divRoleButtonDangerWithText('Delete Account'), deleteAccountButton: commonPage.divRoleButtonDangerWithText('Delete Account'),
validateUnpairDevice: commonPage.divRoleButtonDangerWithText('Unpair'), validateUnpairDevice: commonPage.divRoleButtonDangerWithText('Unlink'),
}; };

@ -82,7 +82,8 @@ describe('Window Test and Login', function() {
pubkeyGenerated.should.have.lengthOf(66); pubkeyGenerated.should.have.lengthOf(66);
pubkeyGenerated.substr(0, 2).should.be.equal('05'); pubkeyGenerated.substr(0, 2).should.be.equal('05');
await app.client.element(RegistrationPage.continueButton).click(); await app.client.element(RegistrationPage.continueButton).click();
await app.client.isExisting(RegistrationPage.displayNameInput); await app.client.isExisting(RegistrationPage.displayNameInput).should
.eventually.be.true;
await app.client await app.client
.element(RegistrationPage.displayNameInput) .element(RegistrationPage.displayNameInput)
.setValue(common.TEST_DISPLAY_NAME1); .setValue(common.TEST_DISPLAY_NAME1);
@ -117,7 +118,8 @@ describe('Window Test and Login', function() {
// delete account // delete account
await app.client.element(ConversationPage.settingsButtonSection).click(); await app.client.element(ConversationPage.settingsButtonSection).click();
await app.client.element(ConversationPage.deleteAccountButton).click(); await app.client.element(ConversationPage.deleteAccountButton).click();
await app.client.isExisting(ConversationPage.descriptionDeleteAccount); await app.client.isExisting(ConversationPage.descriptionDeleteAccount)
.should.eventually.be.true;
// click on the modal OK button to delete the account // click on the modal OK button to delete the account
await app.client.element(ConversationPage.validateDeleteAccount).click(); await app.client.element(ConversationPage.validateDeleteAccount).click();
// wait for the app restart // wait for the app restart

@ -432,3 +432,10 @@ if (
buildNewOnionPaths: () => [], buildNewOnionPaths: () => [],
}; };
} }
if (config.environment.includes('test-integration')) {
window.lokiFeatureFlags = {
multiDeviceUnpairing: true,
privateGroupChats: true,
useSnodeProxy: !process.env.USE_STUBBED_NETWORK,
};
}

Loading…
Cancel
Save