2018-02-17 22:27:15 +03:00
|
|
|
describe('Search', () => {
|
2018-03-19 17:34:37 +03:00
|
|
|
const getSearchInput = () => cy.get('[role="search"] input');
|
|
|
|
const getSearchResults = () => cy.get('[data-role="search:results"]');
|
|
|
|
const getResult = i => cy.get('[role=search] [role=menuitem]').eq(i);
|
|
|
|
|
|
|
|
beforeEach(() => {
|
2018-02-17 22:27:15 +03:00
|
|
|
cy.visit('e2e/standalone.html');
|
|
|
|
});
|
|
|
|
|
2018-07-16 18:29:36 +03:00
|
|
|
it('should correctly show and hide search results box', () => {
|
2018-03-19 17:34:37 +03:00
|
|
|
getSearchResults().should('not.exist');
|
2018-02-17 22:27:15 +03:00
|
|
|
|
2018-03-19 17:34:37 +03:00
|
|
|
// should not open for less than 3 symbols
|
2018-07-18 13:05:19 +03:00
|
|
|
getSearchInput().type('in', { force: true });
|
2018-03-19 17:34:37 +03:00
|
|
|
getSearchResults().should('not.exist');
|
2018-02-17 22:27:15 +03:00
|
|
|
|
2018-07-18 13:05:19 +03:00
|
|
|
getSearchInput().type('t', { force: true });
|
2018-07-16 18:29:36 +03:00
|
|
|
cy.get('[role=search] [role=menuitem]')
|
2018-02-17 22:27:15 +03:00
|
|
|
.should('have.length', 3)
|
|
|
|
.first()
|
|
|
|
.should('contain', 'Introduction');
|
2018-03-19 17:34:37 +03:00
|
|
|
|
2018-07-18 13:05:19 +03:00
|
|
|
getSearchInput().type('{esc}', { force: true });
|
2018-03-19 17:34:37 +03:00
|
|
|
getSearchResults().should('not.exist');
|
2018-02-17 22:27:15 +03:00
|
|
|
});
|
|
|
|
|
2018-07-16 18:29:36 +03:00
|
|
|
it('should support arrow navigation', () => {
|
2018-07-18 13:05:19 +03:00
|
|
|
getSearchInput().type('int', { force: true });
|
2018-03-19 17:34:37 +03:00
|
|
|
|
2020-03-16 17:01:21 +03:00
|
|
|
cy.wait(500);
|
|
|
|
|
2018-07-18 13:05:19 +03:00
|
|
|
getSearchInput().type('{downarrow}', { force: true });
|
2018-03-19 17:34:37 +03:00
|
|
|
getResult(0).should('have.class', 'active');
|
|
|
|
|
2018-07-18 13:05:19 +03:00
|
|
|
getSearchInput().type('{downarrow}', { force: true });
|
2018-03-19 17:34:37 +03:00
|
|
|
getResult(1).should('have.class', 'active');
|
|
|
|
getResult(0).should('not.have.class', 'active');
|
|
|
|
|
2018-07-18 13:05:19 +03:00
|
|
|
getSearchInput().type('{uparrow}', { force: true });
|
2018-03-19 17:34:37 +03:00
|
|
|
getResult(1).should('not.have.class', 'active');
|
|
|
|
getResult(0).should('have.class', 'active');
|
|
|
|
|
2018-07-18 13:05:19 +03:00
|
|
|
getSearchInput().type('{uparrow}', { force: true });
|
2018-03-19 17:34:37 +03:00
|
|
|
getResult(0).should('have.class', 'active');
|
|
|
|
|
2018-07-18 13:05:19 +03:00
|
|
|
getSearchInput().type('{enter}', { force: true });
|
2018-03-19 17:34:37 +03:00
|
|
|
|
|
|
|
cy.contains('[role=navigation] [role=menuitem]', 'Introduction').should('have.class', 'active');
|
|
|
|
});
|
|
|
|
|
2018-07-16 18:29:36 +03:00
|
|
|
it('should mark search results', () => {
|
2018-03-19 17:34:37 +03:00
|
|
|
cy.get('[data-markjs]').should('not.exist');
|
2018-07-18 13:05:19 +03:00
|
|
|
getSearchInput().type('int', { force: true });
|
2018-03-19 17:34:37 +03:00
|
|
|
cy.get('[data-markjs]').should('exist');
|
2018-02-17 22:27:15 +03:00
|
|
|
});
|
|
|
|
});
|