Fix e2e tests

This commit is contained in:
ErickSkrauch
2020-01-10 15:27:20 +03:00
parent 438becb834
commit 7b85004994

View File

@@ -3,7 +3,7 @@ import { account1 } from '../../fixtures/accounts.json';
const defaults = { const defaults = {
client_id: 'ely', client_id: 'ely',
redirect_uri: 'http://ely.by/authorization/oauth', redirect_uri: 'https://dev.ely.by/authorization/oauth',
response_type: 'code', response_type: 'code',
scope: 'account_info,account_email', scope: 'account_info,account_email',
}; };
@@ -14,7 +14,7 @@ describe('OAuth', () => {
cy.visit(`/oauth2/v1/ely?${new URLSearchParams(defaults)}`); cy.visit(`/oauth2/v1/ely?${new URLSearchParams(defaults)}`);
cy.url().should('equal', 'https://ely.by/'); cy.url().should('equal', 'https://dev.ely.by/');
}); });
it('should restore previous oauthData if any', () => { it('should restore previous oauthData if any', () => {
@@ -24,7 +24,7 @@ describe('OAuth', () => {
timestamp: Date.now() - 3600, timestamp: Date.now() - 3600,
payload: { payload: {
clientId: 'ely', clientId: 'ely',
redirectUrl: 'http://ely.by/authorization/oauth', redirectUrl: 'https://dev.ely.by/authorization/oauth',
responseType: 'code', responseType: 'code',
description: null, description: null,
scope: 'account_info account_email', scope: 'account_info account_email',
@@ -37,7 +37,7 @@ describe('OAuth', () => {
cy.visit('/'); cy.visit('/');
cy.url().should('equal', 'https://ely.by/'); cy.url().should('equal', 'https://dev.ely.by/');
}); });
it('should ask to choose an account if user has multiple', () => { it('should ask to choose an account if user has multiple', () => {
@@ -53,7 +53,7 @@ describe('OAuth', () => {
.contains(account.email) .contains(account.email)
.click(); .click();
cy.url().should('equal', 'https://ely.by/'); cy.url().should('equal', 'https://dev.ely.by/');
}, },
); );
}); });
@@ -109,7 +109,7 @@ describe('OAuth', () => {
cy.get('[name=password]').type(`${account1.password}{enter}`); cy.get('[name=password]').type(`${account1.password}{enter}`);
cy.url().should('equal', 'https://ely.by/'); cy.url().should('equal', 'https://dev.ely.by/');
}); });
// TODO: enable, when backend api will return correct response on auth decline // TODO: enable, when backend api will return correct response on auth decline
@@ -165,7 +165,7 @@ describe('OAuth', () => {
}).toString()}`, }).toString()}`,
); );
cy.url().should('equal', 'https://ely.by/'); cy.url().should('equal', 'https://dev.ely.by/');
}, },
); );
}); });
@@ -182,7 +182,7 @@ describe('OAuth', () => {
})}`, })}`,
); );
cy.url().should('equal', 'https://ely.by/'); cy.url().should('equal', 'https://dev.ely.by/');
}, },
); );
}); });
@@ -202,7 +202,7 @@ describe('OAuth', () => {
})}`, })}`,
); );
cy.url().should('equal', 'https://ely.by/'); cy.url().should('equal', 'https://dev.ely.by/');
}, },
); );
}); });
@@ -226,7 +226,7 @@ describe('OAuth', () => {
.contains(account.email) .contains(account.email)
.click(); .click();
cy.url().should('equal', 'https://ely.by/'); cy.url().should('equal', 'https://dev.ely.by/');
}); });
}); });
@@ -254,7 +254,7 @@ describe('OAuth', () => {
cy.get('[name=password]').type(`${account1.password}{enter}`); cy.get('[name=password]').type(`${account1.password}{enter}`);
cy.url().should('equal', 'https://ely.by/'); cy.url().should('equal', 'https://dev.ely.by/');
}); });
it('should prompt for permissions', () => { it('should prompt for permissions', () => {