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: 3e8fcde5758898f46f8e8aa50cbc98c66a401b1e (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


/*
 * @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')

		// Upload test files
		cy.uploadFile('test.md', 'text/markdown')
		cy.uploadFile('test.md', 'text/markdown', 'test2.md')
		cy.visit('/apps/files')
		cy.get('#fileList tr[data-file="test.md"]', {timeout: 10000})
			.should('contain', 'test.md')

		// 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
		})
	})
	after(function () {
		cy.visit('/apps/files')
		cy.logout()
	})

	it('Shares the file as a public read only link', function () {
		cy.visit('/apps/files')
		cy.get('#fileList tr[data-file="test.md"] a.action-share', {timeout: 10000}).trigger('click')
		cy.get('#app-sidebar')
			.should('be.visible')
		cy.get('#app-sidebar a#sharing').trigger('click')
		cy.get('#app-sidebar button.new-share-link').trigger('click')
		cy.get('#app-sidebar 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}).trigger('click')
		cy.get('#app-sidebar')
			.should('be.visible')
		cy.get('#app-sidebar a#sharing').trigger('click')
		cy.get('#app-sidebar button.new-share-link').trigger('click')
		cy.get('#app-sidebar .sharing-link-list .action-item__menutoggle').trigger('click')
		cy.get('#app-sidebar .sharing-link-list .action-item__menu input[type=checkbox]').first().check({ force: true })
		cy.get('#app-sidebar .sharing-link-list .action-item__menu input[type=checkbox]', { timeout: 4000 }).first().should('be.checked')
		cy.get('#app-sidebar 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: 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}).trigger('click')
		cy.get('#app-sidebar')
			.should('be.visible')
		cy.get('#app-sidebar a#sharing').trigger('click')
		cy.get('#app-sidebar 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')
				})
			})
	})


})