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
|
/**
* SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
* SPDX-License-Identifier: AGPL-3.0-or-later
*/
import { expect } from '@jest/globals'
import { File, Folder, Permission } from '@nextcloud/files'
import { isNodeExternalStorage } from './externalStorageUtils'
describe('Is node an external storage', () => {
test('A Folder with a backend and a valid scope is an external storage', () => {
const folder = new Folder({
id: 1,
source: 'https://cloud.domain.com/remote.php/dav/files/admin/Foo/',
owner: 'admin',
permissions: Permission.ALL,
attributes: {
scope: 'personal',
backend: 'SFTP',
},
})
expect(isNodeExternalStorage(folder)).toBe(true)
})
test('a File is not a valid storage', () => {
const file = new File({
id: 1,
source: 'https://cloud.domain.com/remote.php/dav/files/admin/foobar.txt',
owner: 'admin',
mime: 'text/plain',
permissions: Permission.ALL,
})
expect(isNodeExternalStorage(file)).toBe(false)
})
test('A Folder without a backend is not a storage', () => {
const folder = new Folder({
id: 1,
source: 'https://cloud.domain.com/remote.php/dav/files/admin/Foo/',
owner: 'admin',
permissions: Permission.ALL,
attributes: {
scope: 'personal',
},
})
expect(isNodeExternalStorage(folder)).toBe(false)
})
test('A Folder without a scope is not a storage', () => {
const folder = new Folder({
id: 1,
source: 'https://cloud.domain.com/remote.php/dav/files/admin/Foo/',
owner: 'admin',
permissions: Permission.ALL,
attributes: {
backend: 'SFTP',
},
})
expect(isNodeExternalStorage(folder)).toBe(false)
})
test('A Folder with an invalid scope is not a storage', () => {
const folder = new Folder({
id: 1,
source: 'https://cloud.domain.com/remote.php/dav/files/admin/Foo/',
owner: 'admin',
permissions: Permission.ALL,
attributes: {
scope: 'null',
backend: 'SFTP',
},
})
expect(isNodeExternalStorage(folder)).toBe(false)
})
})
|