-
Notifications
You must be signed in to change notification settings - Fork 64
Expand file tree
/
Copy pathfiles-shares.spec.js
More file actions
208 lines (178 loc) · 6.84 KB
/
files-shares.spec.js
File metadata and controls
208 lines (178 loc) · 6.84 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
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
/**
* @copyright Copyright (c) 2019 John Molakvoæ <skjnldsv@protonmail.com>
*
* @author John Molakvoæ <skjnldsv@protonmail.com>
*
* @license GNU AGPL version 3 or any later version
*
* 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/>.
*
*/
import { randHash } from '../utils/'
const randUser = randHash()
describe('Files default view', function() {
before(function() {
// Init user
cy.nextcloudCreateUser(randUser, 'password')
cy.login(randUser, 'password')
// Upload test files
cy.createFolder('Photos')
cy.uploadFile('image1.jpg', 'image/jpeg', '/Photos')
cy.uploadFile('image2.jpg', 'image/jpeg', '/Photos')
cy.uploadFile('image3.jpg', 'image/jpeg', '/Photos')
cy.uploadFile('image4.jpg', 'image/jpeg', '/Photos')
cy.uploadFile('video1.mp4', 'video/mp4', '/Photos')
cy.visit('/apps/files')
// wait a bit for things to be settled
cy.wait(1000)
})
after(function() {
// already logged out after visiting share link
// cy.logout()
})
it('See the default files list', function() {
cy.get('#fileList tr').should('contain', 'welcome.txt')
cy.get('#fileList tr').should('contain', 'Photos')
})
it('Does not have any visual regression 1', function() {
cy.matchImageSnapshot()
})
it('See shared files in the list', function() {
cy.openFile('Photos')
cy.get('#fileList tr[data-file="image1.jpg"]', { timeout: 10000 })
.should('contain', 'image1.jpg')
cy.get('#fileList tr[data-file="image2.jpg"]', { timeout: 10000 })
.should('contain', 'image2.jpg')
cy.get('#fileList tr[data-file="image3.jpg"]', { timeout: 10000 })
.should('contain', 'image3.jpg')
cy.get('#fileList tr[data-file="image4.jpg"]', { timeout: 10000 })
.should('contain', 'image4.jpg')
cy.get('#fileList tr[data-file="video1.mp4"]', { timeout: 10000 })
.should('contain', 'video1.mp4')
})
it('Does not have any visual regression 2', function() {
cy.matchImageSnapshot()
})
it('Share the Photos folder with a share link and access the share link', function() {
cy.createLinkShare('/Photos').then(token => {
cy.logout()
cy.visit(`/s/${token}`)
})
})
it('Does not have any visual regression 3', function() {
cy.matchImageSnapshot()
})
it('Open the viewer on file click', function() {
cy.openFile('image1.jpg')
cy.get('#viewer-content').should('be.visible')
})
it('Does not see a loading animation', function() {
cy.get('#viewer-content', { timeout: 4000 })
.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('#viewer-content .modal-title').should('contain', 'image1.jpg')
cy.get('#viewer-content .modal-header button.icon-menu-sidebar-white-forced').should('not.be.visible')
cy.get('#viewer-content .modal-header button.icon-close').should('be.visible')
})
it('Does see next navigation arrows', function() {
cy.get('#viewer-content .modal-container img').should('have.length', 2)
cy.get('#viewer-content .modal-container img').should('have.attr', 'src')
cy.get('#viewer-content a.next').should('be.visible')
cy.get('#viewer-content a.next').should('be.visible')
})
it('Does not have any visual regression 4', function() {
cy.matchImageSnapshot()
})
it('Show image2 on next', function() {
cy.get('#viewer-content a.next').click()
cy.get('#viewer-content .modal-container img').should('have.length', 3)
cy.get('#viewer-content a.prev').should('be.visible')
cy.get('#viewer-content a.next').should('be.visible')
})
it('Does not see a loading animation', function() {
cy.get('#viewer-content', { timeout: 4000 })
.should('be.visible')
.and('have.class', 'modal-mask')
.and('not.have.class', 'icon-loading')
})
it('Does not have any visual regression 5', function() {
cy.matchImageSnapshot()
})
it('Show image3 on next', function() {
cy.get('#viewer-content a.next').click()
cy.get('#viewer-content .modal-container img').should('have.length', 3)
cy.get('#viewer-content a.prev').should('be.visible')
cy.get('#viewer-content a.next').should('be.visible')
})
it('Does not see a loading animation', function() {
cy.get('#viewer-content', { timeout: 4000 })
.should('be.visible')
.and('have.class', 'modal-mask')
.and('not.have.class', 'icon-loading')
})
it('Does not have any visual regression 6', function() {
cy.matchImageSnapshot()
})
it('Show image4 on next', function() {
cy.get('#viewer-content a.next').click()
cy.get('#viewer-content .modal-container img').should('have.length', 2)
cy.get('#viewer-content a.prev').should('be.visible')
cy.get('#viewer-content a.next').should('be.visible')
})
it('Does not see a loading animation', function() {
cy.get('#viewer-content', { timeout: 4000 })
.should('be.visible')
.and('have.class', 'modal-mask')
.and('not.have.class', 'icon-loading')
})
it('Does not have any visual regression 7', function() {
cy.matchImageSnapshot()
})
it('Show video1 on next', function() {
cy.get('#viewer-content a.next').click()
// only 2 because we don't know if we're at the end of the slideshow, current vid and prev img
cy.get('#viewer-content .modal-container img').should('have.length', 1)
cy.get('#viewer-content .modal-container video').should('have.length', 1)
cy.get('#viewer-content a.prev').should('be.visible')
cy.get('#viewer-content a.next').should('be.visible')
cy.get('#viewer-content .modal-title').should('contain', 'video1.mp4')
})
it('Does not see a loading animation', function() {
cy.get('#viewer-content', { timeout: 4000 })
.should('be.visible')
.and('have.class', 'modal-mask')
.and('not.have.class', 'icon-loading')
})
it('Does not have any visual regression 8', function() {
cy.matchImageSnapshot()
})
it('Show image1 again on next', function() {
cy.get('#viewer-content a.next').click()
cy.get('#viewer-content .modal-container img').should('have.length', 2)
cy.get('#viewer-content a.prev').should('be.visible')
cy.get('#viewer-content a.next').should('be.visible')
})
it('Does not see a loading animation', function() {
cy.get('#viewer-content', { timeout: 4000 })
.should('be.visible')
.and('have.class', 'modal-mask')
.and('not.have.class', 'icon-loading')
})
it('Does not have any visual regression 9', function() {
cy.matchImageSnapshot()
})
})