Bugzilla – Attachment 174877 Details for
Bug 38461
Table features needs to be covered by e2e tests using Cypress
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 38461: Add tests for 'Clear filter'
Bug-38461-Add-tests-for-Clear-filter.patch (text/plain), 7.77 KB, created by
Jonathan Druart
on 2024-11-21 13:49:59 UTC
(
hide
)
Description:
Bug 38461: Add tests for 'Clear filter'
Filename:
MIME Type:
Creator:
Jonathan Druart
Created:
2024-11-21 13:49:59 UTC
Size:
7.77 KB
patch
obsolete
>From 425cf40e59b99ef907c4374822e809a169a0b852 Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >Date: Wed, 20 Nov 2024 16:07:39 +0100 >Subject: [PATCH] Bug 38461: Add tests for 'Clear filter' > >--- > t/cypress/integration/KohaTable_spec.ts | 186 +++++++++++++++++++----- > 1 file changed, 146 insertions(+), 40 deletions(-) > >diff --git a/t/cypress/integration/KohaTable_spec.ts b/t/cypress/integration/KohaTable_spec.ts >index c24dae09852..9d655650e94 100644 >--- a/t/cypress/integration/KohaTable_spec.ts >+++ b/t/cypress/integration/KohaTable_spec.ts >@@ -1,6 +1,106 @@ > import { mount } from "@cypress/vue"; > >-describe("Table search", () => { >+describe("kohaTable (using REST API)", () => { >+ beforeEach(() => { >+ cy.login(); >+ cy.title().should("eq", "Koha staff interface"); >+ }); >+ >+ afterEach(() => {}); >+ >+ const RESTdefaultPageSize = 20; // FIXME Mock this >+ >+ it("Simple tables", () => { >+ const table_id = "libraries"; >+ >+ it("Input search bar and clear filter ", () => { >+ cy.visit("/cgi-bin/koha/admin/branches.pl"); >+ >+ cy.query("SELECT COUNT(*) as count FROM branches").then(result => { >+ let count = result[0].count; >+ let display = Math.min(RESTdefaultPageSize, count); >+ cy.get(`#${table_id}_wrapper .dt-info`).contains( >+ `Showing 1 to ${display} of ${count} entries` >+ ); >+ }); >+ >+ // Should be disabled by default - empty search bar >+ cy.get(`#${table_id}_wrapper .dt_button_clear_filter`).should( >+ "have.class", >+ "disabled" >+ ); >+ >+ // Type something in the input search bar >+ cy.get(`#${table_id}_wrapper input.dt-input`).type("centerville"); >+ cy.get(`#${table_id}_wrapper input.dt-input`).should( >+ "have.value", >+ "centerville" >+ ); >+ >+ // Should no longer be disabled >+ cy.get(`#${table_id}_wrapper .dt_button_clear_filter`).should( >+ "not.have.class", >+ "disabled" >+ ); >+ >+ // Click the clear_filter button >+ cy.get(`#${table_id}_wrapper .dt_button_clear_filter`).click(); >+ cy.get(`#${table_id}_wrapper input.dt-input`).should( >+ "have.value", >+ "" >+ ); >+ }); >+ }); >+ >+ it("Patrons search", () => { >+ const table_id = "memberresultst"; >+ >+ it("Input search bar and clear filter ", () => { >+ cy.visit("/cgi-bin/koha/members/members-home.pl"); >+ >+ cy.get("form.patron_search_form input[type='submit']").click(); >+ >+ cy.query("SELECT COUNT(*) as count FROM borrowers").then(result => { >+ let count = result[0].count; >+ let display = Math.min(RESTdefaultPageSize, count); >+ cy.get(`#${table_id}_wrapper .dt-info`).contains( >+ `Showing 1 to ${display} of ${count} entries` >+ ); >+ }); >+ >+ // Should be disabled by default - empty search bar >+ cy.get(`#${table_id}_wrapper .dt_button_clear_filter`).should( >+ "have.class", >+ "disabled" >+ ); >+ >+ // Type something in the input search bar >+ cy.get(`#${table_id}_wrapper input.dt-input`).type( >+ "edna", >+ { force: true } // Needs to force because of sticky header? It's not clear what's happening, Cypress bug? >+ ); >+ cy.get(`#${table_id}_wrapper input.dt-input`).should( >+ "have.value", >+ "edna" >+ ); >+ >+ // Should no longer be disabled >+ cy.get(`#${table_id}_wrapper .dt_button_clear_filter`).should( >+ "not.have.class", >+ "disabled" >+ ); >+ >+ // Click the clear_filter button >+ cy.get(`#${table_id}_wrapper .dt_button_clear_filter`).click(); >+ cy.get(`#${table_id}_wrapper input.dt-input`).should( >+ "have.value", >+ "" >+ ); >+ }); >+ }); >+}); >+ >+describe("ERM ", () => { > beforeEach(() => { > cy.login(); > cy.title().should("eq", "Koha staff interface"); >@@ -11,48 +111,54 @@ describe("Table search", () => { > ); > }); > >- it("Input search bar and clear filter ", () => { >- let erm_title = cy.get_title(); >- let titles = [erm_title]; >- >- cy.intercept("GET", "/api/v1/erm/eholdings/local/titles*", { >- statusCode: 200, >- body: titles, >- headers: { >- "X-Base-Total-Count": "1", >- "X-Total-Count": "1", >- }, >- }).as("get_titles"); >- >- cy.visit("/cgi-bin/koha/erm/eholdings/local/titles"); >- cy.get("#titles_list").contains("Showing 1 to 1 of 1 entries"); >- >- // Should be disabled by default - empty search bar >- cy.get(".datatable button.dt_button_clear_filter").should( >- "have.class", >- "disabled" >- ); >+ it("Local titles", () => { >+ const container_id = "title_list_result"; >+ it("Input search bar and clear filter ", () => { >+ let erm_title = cy.get_title(); >+ let titles = [erm_title]; > >- // Type something in the input search bar >- cy.get(".datatable input[type='search']").type( >- erm_title.publication_title >- ); >- cy.get(".datatable input[type='search']").should( >- "have.value", >- erm_title.publication_title >- ); >+ cy.intercept("GET", "/api/v1/erm/eholdings/local/titles*", { >+ statusCode: 200, >+ body: titles, >+ headers: { >+ "X-Base-Total-Count": "1", >+ "X-Total-Count": "1", >+ }, >+ }).as("get_titles"); > >- // Should no longer be disabled >- cy.get(".datatable button.dt_button_clear_filter").should( >- "not.have.class", >- "disabled" >- ); >+ cy.visit("/cgi-bin/koha/erm/eholdings/local/titles"); >+ cy.get("#titles_list").contains("Showing 1 to 1 of 1 entries"); >+ cy.get(`#${container_id} .dt-info`).contains( >+ `Showing 1 to 1 of 1 entries` >+ ); >+ >+ // Should be disabled by default - empty search bar >+ cy.get(`#${container_id} .dt_button_clear_filter`).should( >+ "have.class", >+ "disabled" >+ ); >+ >+ // Type something in the input search bar >+ cy.get(`#${container_id} input.dt-input`).type( >+ erm_title.publication_title >+ ); >+ cy.get(`#${container_id} input.dt-input`).type( >+ "have.value", >+ erm_title.publication_title >+ ); >+ >+ // Should no longer be disabled >+ cy.get(`#${container_id} .dt_button_clear_filter`).should( >+ "not.have.class", >+ "disabled" >+ ); > >- // Click the clear_filter button >- cy.get(".datatable button.dt_button_clear_filter").click(); >- cy.get(".datatable input[type='search']").should("have.value", ""); >+ // Click the clear_filter button >+ cy.get(`#${container_id} .dt_button_clear_filter`).click(); >+ cy.get(`#${container_id} input.dt-input`).should("have.value", ""); > >- // TODO: Some actual live API with data requests to test the search actually works >- // and returns results accordingly (or not) >+ // TODO: Some actual live API with data requests to test the search actually works >+ // and returns results accordingly (or not) >+ }); > }); > }); >-- >2.34.1
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 38461
:
174877
|
174878
|
175004
|
175005
|
175006
|
175007
|
175008
|
175009
|
175010
|
175011
|
175015
|
175016
|
175179
|
175223
|
175224
|
175225
|
175226
|
175227
|
175228
|
175229
|
175230
|
175231
|
175232
|
175233
|
175234
|
175235
|
175289
|
175290
|
175291
|
175292
|
176082
|
176083
|
176084
|
176085
|
176086
|
176087
|
176088
|
176089
|
176090
|
176091
|
176092
|
176093
|
176793
|
176846
|
176902