-
Notifications
You must be signed in to change notification settings - Fork 64
Expand file tree
/
Copy pathsidebar.cy.ts
More file actions
147 lines (128 loc) · 6.15 KB
/
sidebar.cy.ts
File metadata and controls
147 lines (128 loc) · 6.15 KB
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
/**
* @copyright Copyright (c) 2019 John Molakvoæ <skjnldsv@protonmail.com>
* @copyright Copyright (c) 2020 Gary Kim <gary@garykim.dev>
*
* @author John Molakvoæ <skjnldsv@protonmail.com>
*
* @license AGPL-3.0-or-later
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
describe('Open the sidebar from the viewer and open viewer with sidebar already opened', function() {
before(function() {
// Init user
cy.createRandomUser().then(user => {
// Upload test files
cy.uploadFile(user, 'image1.jpg', 'image/jpeg')
cy.uploadFile(user, 'image2.jpg', 'image/jpeg')
cy.uploadFile(user, 'image3.jpg', 'image/jpeg')
cy.uploadFile(user, 'image4.jpg', 'image/jpeg')
// Visit nextcloud
cy.login(user)
cy.visit('/apps/files')
})
})
after(function() {
cy.logout()
})
it('See images in the list', function() {
cy.getFile('image1.jpg', { timeout: 10000 })
.should('contain', 'image1 .jpg')
cy.getFile('image2.jpg', { timeout: 10000 })
.should('contain', 'image2 .jpg')
cy.getFile('image3.jpg', { timeout: 10000 })
.should('contain', 'image3 .jpg')
cy.getFile('image4.jpg', { timeout: 10000 })
.should('contain', 'image4 .jpg')
})
it('Open the viewer on file click', function() {
cy.openFile('image1.jpg')
cy.get('body > .viewer').should('be.visible')
})
it('Does not see a loading animation', function() {
cy.get('body > .viewer', { timeout: 10000 })
.should('be.visible')
.and('have.class', 'modal-mask')
.and('not.have.class', 'icon-loading')
})
it('See the menu icon and title on the viewer header', function() {
cy.get('body > .viewer .modal-header__name').should('contain', 'image1.jpg')
cy.get('body > .viewer .modal-header button.action-item__menutoggle').should('be.visible')
cy.get('body > .viewer .modal-header button.header-close').should('be.visible')
})
it('Open the sidebar', function() {
// open the menu
cy.get('body > .viewer .modal-header button.action-item__menutoggle').click()
// open the sidebar
cy.get('.action-button__icon.icon-menu-sidebar').click()
cy.get('aside.app-sidebar').should('be.visible')
// we hide the sidebar button if opened
cy.get('.action-button__icon.icon-menu-sidebar').should('not.exist')
// check the sidebar is opened for the correct file
cy.get('aside.app-sidebar .app-sidebar-header .app-sidebar-header__mainname').should('contain', 'image1.jpg')
// check we do not have a preview
cy.get('aside.app-sidebar .app-sidebar-header').should('have.class', 'app-sidebar-header--with-figure')
cy.get('aside.app-sidebar .app-sidebar-header').should('have.class', 'app-sidebar-header--compact')
cy.get('aside.app-sidebar .app-sidebar-header .app-sidebar-header__figure').should('have.attr', 'style').should('contain', 'core/filetypes')
})
it('Sidebar is in compact mode', function() {
// check the sidebar is opened for the correct file
cy.get('aside.app-sidebar .app-sidebar-header .app-sidebar-header__mainname').should('contain', 'image1.jpg')
// check we do not have a preview
cy.get('aside.app-sidebar .app-sidebar-header').should('have.class', 'app-sidebar-header--with-figure')
cy.get('aside.app-sidebar .app-sidebar-header').should('have.class', 'app-sidebar-header--compact')
cy.get('aside.app-sidebar .app-sidebar-header .app-sidebar-header__figure').should('have.attr', 'style').should('contain', 'core/filetypes')
})
it('Change to next image with sidebar open', function() {
cy.get('aside.app-sidebar').should('be.visible')
// check the sidebar is opened for the correct file
cy.get('aside.app-sidebar .app-sidebar-header .app-sidebar-header__mainname').should('contain', 'image1.jpg')
// open the next file (image2.png) using the arrow
cy.get('body > .viewer .button-vue.next').click()
cy.get('aside.app-sidebar .app-sidebar-header .app-sidebar-header__mainname').should('contain', 'image2.jpg')
})
it('Change to previous image with sidebar open', function() {
cy.get('aside.app-sidebar').should('be.visible')
// check the sidebar is opened for the correct file
cy.get('aside.app-sidebar .app-sidebar-header .app-sidebar-header__mainname').should('contain', 'image2.jpg')
// open the previous file (image1.png) using the arrow
cy.get('body > .viewer .button-vue.prev').click()
cy.get('aside.app-sidebar .app-sidebar-header .app-sidebar-header__mainname').should('contain', 'image1.jpg')
})
it('Close the sidebar', function() {
cy.get('aside.app-sidebar .app-sidebar-header .app-sidebar__close').click()
cy.get('aside.app-sidebar').should('not.exist')
cy.get('body > .viewer .modal-header button.action-item__menutoggle').should('be.visible')
cy.get('body > .viewer .modal-header button.action-item__menutoggle').click()
// The button to show the sidebar is shown again
cy.get('.action-button__icon.icon-menu-sidebar').should('be.visible')
})
it('Open the viewer with the sidebar open', function() {
cy.get('body > .viewer .modal-header button.header-close').click()
cy.get('body > .viewer').should('not.exist')
// open the sidebar without viewer open
cy.getFile('image1.jpg').find('[data-cy-files-list-row-mtime]').click()
cy.openFile('image1.jpg')
cy.get('body > .viewer', { timeout: 10000 })
.should('be.visible')
.and('have.class', 'modal-mask')
.and('not.have.class', 'icon-loading')
cy.get('aside.app-sidebar').should('have.class', 'app-sidebar--full')
// close the sidebar again
cy.get('aside.app-sidebar .app-sidebar-header .app-sidebar__close').click()
cy.get('aside.app-sidebar').should('not.exist')
cy.get('body > .viewer .modal-header button.action-item__menutoggle').should('be.visible')
})
})