|
| 1 | +describe("Abbr Plugin", () => { |
| 2 | + beforeEach(() => { |
| 3 | + cy.visit("http://localhost:8080/demo/modules/abbr.html"); |
| 4 | + cy.get("#main").click(); |
| 5 | + }); |
| 6 | + |
| 7 | + it("opens Aloha Editor UI when clicked", () => { |
| 8 | + cy.get(".aloha-ui.aloha-ui-toolbar.ui-draggable").should("exist"); |
| 9 | + }); |
| 10 | + |
| 11 | + it('creates a "format as abbreviation" button in the Format and an "insert abbreviation" in the Insert tab', () => { |
| 12 | + cy.get("#tab-ui-container-1").within(() => { |
| 13 | + cy.get("span").contains("format as abbreviation").should("exist"); |
| 14 | + }); |
| 15 | + cy.get("#ui-id-2").click(); |
| 16 | + cy.get("#tab-ui-container-2").within(() => { |
| 17 | + cy.get("span").contains("insert abbreviation").should("exist"); |
| 18 | + }); |
| 19 | + }); |
| 20 | + |
| 21 | + it('"format as abbreviation" should create an "Abbreviation" tab with an input that adds <abbr> tags to selected text', () => { |
| 22 | + cy.get("h1").type("{leftarrow}"); |
| 23 | + cy.get("#tab-ui-container-1").within(() => { |
| 24 | + cy.get("span").contains("format as abbreviation").click(); |
| 25 | + }); |
| 26 | + cy.get("#aloha-attribute-field-abbrText") |
| 27 | + .should("exist") |
| 28 | + .type("Testing abbreviation"); |
| 29 | + cy.get("h1") |
| 30 | + .find("abbr") |
| 31 | + .should("exist") |
| 32 | + .should("contain", "Plugin") |
| 33 | + .invoke("attr", "title") |
| 34 | + .should("equal", "Testing abbreviation"); |
| 35 | + }); |
| 36 | + |
| 37 | + it('"format as abbreviation" should work with more than one selected word', () => { |
| 38 | + cy.get("h1") |
| 39 | + .type("{ctrl+a}") |
| 40 | + .then(() => { |
| 41 | + cy.get("#tab-ui-container-1") |
| 42 | + .find("span") |
| 43 | + .contains("format as abbreviation") |
| 44 | + .click(); |
| 45 | + }); |
| 46 | + |
| 47 | + cy.get("#aloha-attribute-field-abbrText") |
| 48 | + .should("exist") |
| 49 | + .type("Testing abbreviation"); |
| 50 | + cy.get("h1") |
| 51 | + .find("abbr") |
| 52 | + .should("exist") |
| 53 | + .should("contain", "Abbr Plugin") |
| 54 | + .invoke("attr", "title") |
| 55 | + .should("equal", "Testing abbreviation"); |
| 56 | + }); |
| 57 | + |
| 58 | + it('"format as abbreviation" should work with different selected lines', () => { |
| 59 | + cy.get("h1").type("{shift+enter}This is a new line"); |
| 60 | + cy.get("h1") |
| 61 | + .type("{ctrl+a}") |
| 62 | + .then(() => { |
| 63 | + cy.get("#tab-ui-container-1") |
| 64 | + .find("span") |
| 65 | + .contains("format as abbreviation") |
| 66 | + .click(); |
| 67 | + }); |
| 68 | + |
| 69 | + cy.get("#aloha-attribute-field-abbrText") |
| 70 | + .should("exist") |
| 71 | + .type("Testing abbreviation"); |
| 72 | + cy.get("h1") |
| 73 | + .find("abbr") |
| 74 | + .first() |
| 75 | + .should("contain", "Abbr Plugin") |
| 76 | + .invoke("attr", "title") |
| 77 | + .should("equal", "Testing abbreviation"); |
| 78 | + cy.get("h1") |
| 79 | + .find("abbr") |
| 80 | + .eq(2) |
| 81 | + .should("contain", "This is a new line") |
| 82 | + .invoke("attr", "title") |
| 83 | + .should("equal", "Testing abbreviation"); |
| 84 | + }); |
| 85 | + |
| 86 | + it('"insert abbreviation" should create an "Abbreviation" tab with an input that adds the text "Abbr" with <abbr> tags', () => { |
| 87 | + cy.get("h1").type(" "); |
| 88 | + cy.get("#tab-ui-container-1").within(() => { |
| 89 | + cy.get("span").contains("format as abbreviation").click(); |
| 90 | + }); |
| 91 | + cy.get("#aloha-attribute-field-abbrText") |
| 92 | + .should("exist") |
| 93 | + .type("Testing abbreviation"); |
| 94 | + cy.get("h1") |
| 95 | + .find("abbr") |
| 96 | + .should("exist") |
| 97 | + .invoke("attr", "title") |
| 98 | + .should("equal", "Testing abbreviation"); |
| 99 | + }); |
| 100 | + |
| 101 | + it('creates a "remove abbreviation" button in both tabs that removes the <abbr> tags', () => { |
| 102 | + cy.get("h1").type("{leftarrow}"); |
| 103 | + cy.get("#tab-ui-container-1").within(() => { |
| 104 | + cy.get("span").contains("format as abbreviation").click(); |
| 105 | + }); |
| 106 | + cy.get("#aloha-attribute-field-abbrText").type("Testing abbreviation"); |
| 107 | + cy.get("#tab-ui-container-6").within(() => { |
| 108 | + cy.get("span").contains("remove abbreviation").click(); |
| 109 | + }); |
| 110 | + cy.get("h1").find("abbr").should("not.exist"); |
| 111 | + }); |
| 112 | + |
| 113 | + it('Verify if the icon exists', () => { |
| 114 | + cy.get(".ui-button-icon-primary").should("exist").should('be.visible'); |
| 115 | +}); |
| 116 | +}); |
0 commit comments