mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
05ecfa2e23
[server-pro] add e2e tests for registering users via GUI/script/email GitOrigin-RevId: 25243532038c8df72f1360c433af215b3a551f3a
36 lines
1.6 KiB
TypeScript
36 lines
1.6 KiB
TypeScript
/**
|
|
* Helper function for opening an email in Roundcube based mailtrap.
|
|
* We need to cross an origin boundary, which complicates the use of variables.
|
|
* Any variables need to be explicitly defined and the "runner" may only reference these and none from its scope.
|
|
* It is not possible to use Cypress helper functions, e.g. from the testing library or other functions like "activateUser", inside the "runner".
|
|
* REF: https://github.com/testing-library/cypress-testing-library/issues/221
|
|
*/
|
|
export function openEmail<T>(
|
|
subject: string | RegExp,
|
|
runner: (frame: Cypress.Chainable<JQuery<any>>, args: T) => void,
|
|
args?: T
|
|
) {
|
|
const runnerS = runner.toString()
|
|
cy.origin(
|
|
'http://mailtrap',
|
|
{ args: { args, runnerS, subject } },
|
|
({ args, runnerS, subject }) => {
|
|
cy.visit('/')
|
|
cy.get('input[name="_user"]').type('mailtrap')
|
|
cy.get('input[name="_pass"]').type('password-for-mailtrap')
|
|
cy.get('button[type="submit"]').click()
|
|
cy.log('mailtrap login is flaky in cypress, submit again')
|
|
cy.get('input[name="_pass"]').type('password-for-mailtrap')
|
|
cy.get('button[type="submit"]').click()
|
|
// Use force as the subject is partially hidden
|
|
cy.contains(subject).click({ force: true })
|
|
cy.log('wait for iframe loading')
|
|
cy.wait(1000)
|
|
cy.get('iframe[id="messagecontframe"]').then(frame => {
|
|
// runnerS='(frame, args) => { runner body }'. Extract the runnable function.
|
|
const runner = new Function('return ' + runnerS)()
|
|
runner(cy.wrap(frame.prop('contentWindow').document.body), args)
|
|
})
|
|
}
|
|
)
|
|
}
|