-
-
Notifications
You must be signed in to change notification settings - Fork 694
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into site-and-navroot
- Loading branch information
Showing
74 changed files
with
1,555 additions
and
626 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
import { ploneAuth } from '../../../support/constants'; | ||
|
||
describe('Logout Tests', () => { | ||
beforeEach(() => { | ||
cy.visit('/'); | ||
cy.contains('Log in').click(); | ||
const user = ploneAuth[0]; | ||
const password = ploneAuth[1]; | ||
|
||
cy.get('#login').type(user).should('have.value', user); | ||
cy.get('#password').type(password).should('have.value', password); | ||
cy.get('#login-form-submit').click(); | ||
cy.get('body').should('have.class', 'has-toolbar'); | ||
}); | ||
it('As registered user I can logout', function () { | ||
cy.get('#toolbar-personal').click(); | ||
cy.get('#toolbar-logout').click(); | ||
cy.getCookie('auth_key').should('not.exist'); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
describe('Add Content Tests', () => { | ||
beforeEach(() => { | ||
cy.intercept('GET', `/**/*?expand*`).as('content'); | ||
// give a logged in editor and the site root | ||
cy.autologin(); | ||
cy.visit('/'); | ||
cy.wait('@content'); | ||
}); | ||
|
||
it('As editor I can change the view to Listing View', function () { | ||
|
||
cy.visit('/events'); | ||
cy.get('#toolbar-more').click(); | ||
cy.findByText('Listing view').click(); | ||
cy.findByText('Album view').click(); | ||
cy.visit('/events'); | ||
cy.wait('@content'); | ||
cy.wait(2000); | ||
cy.get('main').contains('Event').should('be.visible'); | ||
}); | ||
|
||
it('As editor I can change the view to Summary View', function () { | ||
|
||
cy.visit('/events'); | ||
cy.get('#toolbar-more').click(); | ||
cy.findByText('Listing view').click(); | ||
cy.findByText('Summary view').click(); | ||
cy.visit('/events'); | ||
cy.wait('@content'); | ||
cy.wait(2000); | ||
cy.get('main').contains('Event').should('be.visible'); | ||
}); | ||
it('As editor I can change the view to Tabular View', function () { | ||
|
||
cy.visit('/events'); | ||
cy.get('#toolbar-more').click(); | ||
cy.findByText('Listing view').click(); | ||
cy.findByText('Tabular view').click(); | ||
cy.visit('/events'); | ||
cy.wait('@content'); | ||
cy.wait(2000); | ||
cy.get('main').contains('Event').should('be.visible'); | ||
}); | ||
it('As editor I can change the view to Album View', function () { | ||
|
||
cy.visit('/events'); | ||
cy.get('#toolbar-more').click(); | ||
cy.findByText('Listing view').click(); | ||
cy.visit('/events'); | ||
cy.wait('@content'); | ||
cy.wait(2000); | ||
cy.get('main').contains('Event').should('be.visible'); | ||
}); | ||
}); | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.