Welcome to mirror list, hosted at ThFree Co, Russian Federation.

share.spec.js « integration « cypress - github.com/nextcloud/text.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0b48896e2a5c09b4a2ac85ac1ec753a15618c5ef (plain)
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


/*
 * @copyright Copyright (c) 2020 Julius Härtl <jus@bitgrid.net>
 *
 * @author Julius Härtl <jus@bitgrid.net>
 *
 * @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 test.md in viewer', function() {
	before(function () {
		// Init user
		cy.nextcloudCreateUser(randUser, 'password')
		cy.login(randUser, 'password')

		// FIXME: files app is thowing the following error for some reason
		// Uncaught TypeError: Cannot read property 'protocol' of undefined
		// Same for appswebroots setting in tests
		cy.on('uncaught:exception', (err, runnable) => {
			return false
		})

		cy.get('#fileList tr[data-file="welcome.txt"]', {timeout: 10000})
			.should('contain', 'welcome.txt')

		// Upload test files
		cy.createFolder('folder')
		cy.uploadFile('test.md', 'text/markdown', 'folder/test.md')
		cy.uploadFile('test.md', 'text/markdown', 'test2.md')
		cy.uploadFile('test.md', 'text/markdown')
		cy.wait(1000)
		cy.visit('/apps/files')
		cy.get('#fileList tr[data-file="test.md"]', {timeout: 10000})
			.should('contain', 'test.md')
	})
	beforeEach(function() {
		cy.login(randUser, 'password')
	})

	it('Shares the file as a public read only link', function () {
		cy.visit('/apps/files', { timeout: 10000 })
		cy.get('#fileList tr[data-file="test.md"] a.action-share', { timeout: 10000 })
			.click({force: true})
		cy.get('#app-sidebar-vue')
			.should('be.visible')
		cy.get('#app-sidebar-vue a#sharing').trigger('click')
		cy.get('#app-sidebar-vue button.new-share-link').trigger('click')
		cy.get('#app-sidebar-vue a.sharing-entry__copy')
			.should('have.attr', 'href').and('include', '/s/')
			.then((href) => {
				cy.visit(href)
				cy.window().then(win => {
					win.OC.appswebroots['files_texteditor'] = true
					cy.wait(1000)
					cy.get('#editor', { timeout: 4000 }).should('be.visible')
					cy.get('#editor .ProseMirror').should('contain', 'Hello world')
					cy.get('#editor .ProseMirror h2').should('contain', 'Hello world')
				})
			})
	})

	it('Shares the file as a public link with write permissions', function () {
		cy.visit('/apps/files')
		cy.get('#fileList tr[data-file="test2.md"] a.action-share', {timeout: 10000})
			.click({force: true})
		cy.get('#app-sidebar-vue')
			.should('be.visible')
		cy.get('#app-sidebar-vue a#sharing').trigger('click')
		cy.get('#app-sidebar-vue button.new-share-link').trigger('click')
		cy.get('#app-sidebar-vue .sharing-link-list .action-item__menutoggle').trigger('click')
		const checkboxAllowEditing = '.popover.open input[type=checkbox]'
		cy.get(checkboxAllowEditing).first().check({ force: true })
		cy.get(checkboxAllowEditing, { timeout: 4000 }).first().should('be.checked')
		cy.get('#app-sidebar-vue a.sharing-entry__copy')
			.should('have.attr', 'href').and('include', '/s/')
			.then((href) => {
				cy.visit(href)
				cy.window().then(win => {
					win.OC.appswebroots['files_texteditor'] = true
					cy.get('#editor', {timeout: 10000}).should('be.visible')
					cy.get('#editor .ProseMirror').should('contain', 'Hello world')
					cy.get('#editor .ProseMirror h2').should('contain', 'Hello world')
					cy.get('#editor .menubar .menubar-icons .icon-undo').should('be.visible')
					cy.get('#editor .menubar .menubar-icons .icon-redo').should('be.visible')
					cy.get('#editor .menubar .menubar-icons .icon-bold').should('be.visible')
				})
			})
	})

	it('Opens the editor as guest', function () {
		cy.visit('/apps/files')
		cy.get('#fileList tr[data-file="test2.md"] a.action-share', {timeout: 10000})
			.click({force: true})
		cy.get('#app-sidebar-vue')
			.should('be.visible')
		cy.get('#app-sidebar-vue a#sharing').trigger('click')
		cy.get('#app-sidebar-vue a.sharing-entry__copy')
			.should('have.attr', 'href').and('include', '/s/')
			.then((href) => {
				cy.logout()
				cy.visit(href)
				cy.window().then(win => {
					win.OC.appswebroots['files_texteditor'] = true
					cy.wait(1000)
					cy.get('#editor', {timeout: 10000}).should('be.visible')
					cy.get('#editor .ProseMirror').should('contain', 'Hello world')
					cy.get('#editor .ProseMirror h2').should('contain', 'Hello world')
					cy.get('#editor .menubar .menubar-icons .icon-undo').should('be.visible')
					cy.get('#editor .menubar .menubar-icons .icon-redo').should('be.visible')
					cy.get('#editor .menubar .menubar-icons .icon-bold').should('be.visible')
				})
			})
	})

	it('Shares a folder as a public read only link', function () {
		cy.visit('/apps/files', { timeout: 10000 })
		cy.get('#fileList tr[data-file="folder"] a.action-share', {timeout: 10000})
			.click({force: true})
		cy.get('#app-sidebar-vue')
			.should('be.visible')
		cy.get('#app-sidebar-vue a#sharing').trigger('click')
		cy.get('#app-sidebar-vue button.new-share-link').trigger('click')
		cy.get('#app-sidebar-vue a.sharing-entry__copy')
			.should('have.attr', 'href').and('include', '/s/')
			.then((href) => {
				cy.visit(href)
				cy.window().then(win => {
					win.OC.appswebroots['files_texteditor'] = true
					cy.wait(1000)
					cy.openFile('test.md')
					cy.get('#editor-container', { timeout: 4000 }).should('be.visible')
					cy.get('#editor .ProseMirror').should('contain', 'Hello world')
					cy.get('#editor .ProseMirror h2').should('contain', 'Hello world')
				})
			})
	})


})