-
Notifications
You must be signed in to change notification settings - Fork 64
Expand file tree
/
Copy pathimages.spec.js
More file actions
209 lines (182 loc) · 7.85 KB
/
images.spec.js
File metadata and controls
209 lines (182 loc) · 7.85 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
209
/**
* @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('Open images in viewer', function() {
before(function() {
// Init user
cy.nextcloudCreateUser(randUser, 'password')
cy.login(randUser, 'password')
// Upload test files
cy.uploadFile('image1.jpg', 'image/jpeg')
cy.uploadFile('image2.jpg', 'image/jpeg')
cy.uploadFile('image3.jpg', 'image/jpeg')
cy.uploadFile('image4.jpg', 'image/jpeg')
cy.visit('/apps/files')
// wait a bit for things to be settled
cy.wait(1000)
})
after(function() {
cy.logout()
})
it('See images in the list', function() {
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')
})
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('be.visible')
cy.get('#viewer-content .modal-header button.icon-close').should('be.visible')
})
it('Does see next navigation arrows', function() {
// only 2 because we don't know if we're at the end of the slideshow, current img and next one
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('Have the proper height and width values', function() {
// not using should('have.css'), we want the inline styling
cy.get('#viewer-content .modal-container img.active')
.should('have.attr', 'style')
// 70% max width (see cypress config)
.should('match', new RegExp(`width: ${Math.round(Cypress.config('viewportWidth') * 0.7)}px`, 'i'))
// capped by the width, keeping ratio
.should('match', new RegExp(`height: ${Math.round(Cypress.config('viewportWidth') * 0.7 / 3000 * 2000)}px`, 'i'))
})
it('Does not have any visual regression 1', 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('Have the proper height and width values', function() {
// not using should('have.css'), we want the inline styling
cy.get('#viewer-content .modal-container img.active')
.should('have.attr', 'style')
// 70% max width (see cypress config)
.should('match', new RegExp(`width: ${Math.round(Cypress.config('viewportWidth') * 0.7)}px`, 'i'))
// capped by the width, keeping ratio
.should('match', new RegExp(`height: ${Math.round(Cypress.config('viewportWidth') * 0.7 / 3000 * 1688)}px`, 'i'))
})
it('Does not have any visual regression 2', 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('Have the proper height and width values', function() {
// not using should('have.css'), we want the inline styling
cy.get('#viewer-content .modal-container img.active')
.should('have.attr', 'style')
// 70% max width (see cypress config)
.should('match', new RegExp(`width: ${Math.round(Cypress.config('viewportWidth') * 0.7)}px`, 'i'))
// capped by the width, keeping ratio
.should('match', new RegExp(`height: ${Math.round(Cypress.config('viewportWidth') * 0.7 / 3000 * 2002)}px`, 'i'))
})
it('Does not have any visual regression 3', function() {
cy.matchImageSnapshot()
})
it('Show image4 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 img and previous one
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('Have the proper height and width values', function() {
// not using should('have.css'), we want the inline styling
cy.get('#viewer-content .modal-container img.active')
.should('have.attr', 'style')
// 70% max width (see cypress config)
.should('match', new RegExp(`width: ${Math.round(Cypress.config('viewportWidth') * 0.7)}px`, 'i'))
// capped by the width, keeping ratio
.should('match', new RegExp(`height: ${Math.round(Cypress.config('viewportWidth') * 0.7 / 3000 * 2000)}px`, 'i'))
})
it('Does not have any visual regression 4', 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('Have the proper height and width values', function() {
// not using should('have.css'), we want the inline styling
cy.get('#viewer-content .modal-container img.active')
.should('have.attr', 'style')
// 70% max width (see cypress config)
.should('match', new RegExp(`width: ${Math.round(Cypress.config('viewportWidth') * 0.7)}px`, 'i'))
// capped by the width, keeping ratio
.should('match', new RegExp(`height: ${Math.round(Cypress.config('viewportWidth') * 0.7 / 3000 * 2000)}px`, 'i'))
})
it('Does not have any visual regression 5', function() {
cy.matchImageSnapshot()
})
})