-
Notifications
You must be signed in to change notification settings - Fork 353
/
Copy pathnotificationdrawerbasic.spec.ts
91 lines (81 loc) · 4.5 KB
/
notificationdrawerbasic.spec.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
describe('Notification Drawer Basic Demo Test', () => {
it('Navigate to the notification drawer basic demo', () => {
cy.visit('http://localhost:3000/notification-drawer-basic-demo-nav-link');
});
it('Verify svg width and height', () => {
cy.get('.pf-v6-c-button svg').should('exist');
});
it('Verify 0 groups exist', () => {
cy.get('.pf-v6-c-notification-drawer__group').should('not.exist');
});
it('Verify text in header title', () => {
cy.get('.pf-v6-c-notification-drawer__header-title').contains('Notifications');
});
it('Verify text in header status', () => {
cy.get('.pf-v6-c-notification-drawer__header-status').contains('2 unread');
});
it('Verify list items are hoverable', () => {
cy.get('.pf-v6-c-notification-drawer__list-item').first().should('have.class', 'pf-m-hoverable');
cy.get('.pf-v6-c-notification-drawer__list-item').eq(1).should('have.class', 'pf-m-hoverable');
cy.get('.pf-v6-c-notification-drawer__list-item').eq(2).should('have.class', 'pf-m-hoverable');
cy.get('.pf-v6-c-notification-drawer__list-item').eq(3).should('have.class', 'pf-m-hoverable');
cy.get('.pf-v6-c-notification-drawer__list-item').last().should('have.class', 'pf-m-hoverable');
});
it('Verify list items severities', () => {
cy.get('.pf-v6-c-notification-drawer__list-item').first().should('have.class', 'pf-m-info');
cy.get('.pf-v6-c-notification-drawer__list-item').eq(1).should('have.class', 'pf-m-danger');
cy.get('.pf-v6-c-notification-drawer__list-item').eq(2).should('have.class', 'pf-m-warning');
cy.get('.pf-v6-c-notification-drawer__list-item').eq(3).should('have.class', 'pf-m-success');
cy.get('.pf-v6-c-notification-drawer__list-item').last().should('have.class', 'pf-m-custom');
});
it('Verify timestamp in list items', () => {
cy.get('.pf-v6-c-notification-drawer__list-item-timestamp').first().contains('5 minutes ago');
cy.get('.pf-v6-c-notification-drawer__list-item-timestamp').eq(1).contains('10 minutes ago');
cy.get('.pf-v6-c-notification-drawer__list-item-timestamp').eq(2).contains('20 minutes ago');
cy.get('.pf-v6-c-notification-drawer__list-item-timestamp').eq(3).contains('30 minutes ago');
cy.get('.pf-v6-c-notification-drawer__list-item-timestamp').last().contains('35 minutes ago');
});
// Accessibility test
it('Verify keyboard events happen correctly', () => {
// Verify the list header toggle button keyboard interactivity opens/closes dropdown menu
// press Enter on toggle button, check whether the dropdown menu exsit and whether it focuses on the first item
// then press Tab on toggle button, check whether the dropdown menu is closed
cy.get('#toggle-id-0').then((toggleButton: JQuery<HTMLButtonElement>) => {
cy.clock();
cy.wrap(toggleButton).type(' ', { waitForAnimations: true });
cy.tick(200);
cy.get('.notification-0.pf-v6-c-menu').should('exist');
cy.wrap(toggleButton).type('{esc}', { waitForAnimations: true });
cy.tick(200);
cy.get('.notification-0.pf-v6-c-menu').should('not.exist');
});
// Verify the list item header toggle button keyboard interactivity opens/closes dropdown menu
// the method is the same as above
cy.get('#toggle-id-1').then((toggleButton: JQuery<HTMLButtonElement>) => {
cy.clock();
cy.wrap(toggleButton).type(' ', { waitForAnimations: true });
cy.tick(200);
cy.get('.notification-1.pf-v6-c-menu').should('exist');
cy.wrap(toggleButton).type('{esc}', { waitForAnimations: true });
cy.tick(200);
cy.get('.notification-1.pf-v6-c-menu').should('not.exist');
});
});
it('Verify truncateTitle in drawer header list item header and no tooltip on short text', () => {
cy.get('#info-alert-item .pf-v6-c-notification-drawer__list-item-header-title')
.should('have.class', 'pf-m-truncate')
.then((noTooltipLink: JQuery<HTMLDivElement>) => {
cy.wrap(noTooltipLink).trigger('mouseenter').get('.pf-v6-c-tooltip').should('not.exist');
cy.wrap(noTooltipLink).trigger('mouseleave');
});
});
it('Verify truncateTitle in drawer group title and tooltip', () => {
cy.get('#long-title-item .pf-v6-c-notification-drawer__list-item-header-title')
.should('have.class', 'pf-m-truncate')
.then((tooltipLink: JQuery<HTMLDivElement>) => {
cy.get('.pf-v6-c-tooltip').should('not.exist');
cy.wrap(tooltipLink).trigger('mouseenter').get('.pf-v6-c-tooltip').should('exist');
cy.wrap(tooltipLink).trigger('mouseleave');
});
});
});