generated from eea/volto-addon-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #25 from eea/develop
Release
- Loading branch information
Showing
11 changed files
with
414 additions
and
38 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
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,76 @@ | ||
import { slateLayoutBeforeEach, slateLayoutAfterEach } from '../support/e2e'; | ||
|
||
describe('ControlPanel: Dexterity Content-Types Layout', () => { | ||
beforeEach(slateLayoutBeforeEach); | ||
afterEach(slateLayoutAfterEach); | ||
|
||
it('Edit Blocks Layout for Book', () => { | ||
cy.visit('/controlpanel/dexterity-types'); | ||
cy.waitForResourceToLoad('@navigation'); | ||
cy.waitForResourceToLoad('@breadcrumbs'); | ||
cy.waitForResourceToLoad('@actions'); | ||
cy.waitForResourceToLoad('@types'); | ||
|
||
cy.get('a[href="/controlpanel/dexterity-types/book"]').should( | ||
'have.text', | ||
'book', | ||
); | ||
|
||
cy.visit('/controlpanel/dexterity-types/book/layout'); | ||
cy.get('#page-controlpanel-layout').contains( | ||
'Can not edit Layout for book', | ||
); | ||
cy.get('#page-controlpanel-layout button').click(); | ||
|
||
// Wait a bit for draftjs to load, without this the title block | ||
// custom placeholder is missing and cypress gives a timeout error | ||
cy.wait(1000); | ||
cy.get('input[id="field-placeholder"]').type('Book title'); | ||
cy.get('label[for="field-required"]').click(); | ||
cy.get('label[for="field-fixed"]').click(); | ||
|
||
cy.getSlate().click(); | ||
|
||
cy.get('.ui.basic.icon.button.block-add-button:visible').click(); | ||
cy.get('.blocks-chooser .title').contains('Media').click(); | ||
cy.get('.content.active.media .button.nextCloudVideo') | ||
.contains('Video (NextCloud)') | ||
.click({ force: true }); | ||
|
||
cy.get('#toolbar-save').click(); | ||
|
||
cy.visit('/cypress'); | ||
cy.waitForResourceToLoad('@navigation'); | ||
cy.waitForResourceToLoad('@breadcrumbs'); | ||
cy.waitForResourceToLoad('@actions'); | ||
cy.waitForResourceToLoad('@types'); | ||
|
||
// Intercept cmshare request | ||
cy.intercept('GET', 'https://cmshare.eea.europa.eu//download').as( | ||
'cmshare', | ||
); | ||
|
||
cy.get('button[class="add"]').click(); | ||
cy.get('#toolbar-add-book').click(); | ||
cy.get('.block.title').contains('Book title'); | ||
|
||
// Change book title | ||
cy.clearSlateTitle(); | ||
cy.getSlateTitle().type('My First Book'); | ||
cy.get('.documentFirstHeading').contains('My First Book'); | ||
|
||
// Add video | ||
cy.get('.block.video .toolbar-inner .ui.input').type( | ||
'https://cmshare.eea.europa.eu/', | ||
); | ||
cy.get('.block.video .toolbar-inner .ui.buttons .ui.basic.primary').click(); | ||
cy.get('.ui.error.message').should('not.exist'); | ||
|
||
// Wait for cmshare request | ||
cy.wait('@cmshare'); | ||
|
||
cy.get('#toolbar-save').click(); | ||
cy.get('.documentFirstHeading').contains('My First Book'); | ||
cy.get('.block.video').should('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
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.