aboutsummaryrefslogtreecommitdiffstats
path: root/apps/files_external/src/actions/openInFilesAction.spec.ts
diff options
context:
space:
mode:
Diffstat (limited to 'apps/files_external/src/actions/openInFilesAction.spec.ts')
-rw-r--r--apps/files_external/src/actions/openInFilesAction.spec.ts124
1 files changed, 124 insertions, 0 deletions
diff --git a/apps/files_external/src/actions/openInFilesAction.spec.ts b/apps/files_external/src/actions/openInFilesAction.spec.ts
new file mode 100644
index 00000000000..aa9573eca77
--- /dev/null
+++ b/apps/files_external/src/actions/openInFilesAction.spec.ts
@@ -0,0 +1,124 @@
+/**
+ * SPDX-FileCopyrightText: 2023 Nextcloud GmbH and Nextcloud contributors
+ * SPDX-License-Identifier: AGPL-3.0-or-later
+ */
+import { Folder, Permission, View, DefaultType, FileAction } from '@nextcloud/files'
+import { describe, expect, test, vi } from 'vitest'
+
+import type { StorageConfig } from '../services/externalStorage'
+import { action } from './openInFilesAction'
+import { STORAGE_STATUS } from '../utils/credentialsUtils'
+
+const view = {
+ id: 'files',
+ name: 'Files',
+} as View
+
+const externalStorageView = {
+ id: 'extstoragemounts',
+ name: 'External storage',
+} as View
+
+describe('Open in files action conditions tests', () => {
+ test('Default values', () => {
+ const storage = new Folder({
+ id: 1,
+ source: 'https://cloud.domain.com/remote.php/dav/files/admin/Foo/',
+ owner: 'admin',
+ root: '/files/admin',
+ permissions: Permission.ALL,
+ attributes: {
+ config: {
+ status: STORAGE_STATUS.SUCCESS,
+ } as StorageConfig,
+ },
+ })
+
+ expect(action).toBeInstanceOf(FileAction)
+ expect(action.id).toBe('open-in-files-external-storage')
+ expect(action.displayName([storage], externalStorageView)).toBe('Open in Files')
+ expect(action.iconSvgInline([storage], externalStorageView)).toBe('')
+ expect(action.default).toBe(DefaultType.HIDDEN)
+ expect(action.order).toBe(-1000)
+ expect(action.inline).toBeUndefined()
+ })
+
+ test('Default values', () => {
+ const failingStorage = new Folder({
+ id: 1,
+ source: 'https://cloud.domain.com/remote.php/dav/files/admin/Foo/',
+ owner: 'admin',
+ root: '/files/admin',
+ permissions: Permission.ALL,
+ attributes: {
+ config: {
+ status: STORAGE_STATUS.ERROR,
+ } as StorageConfig,
+ },
+ })
+ expect(action.displayName([failingStorage], externalStorageView)).toBe('Examine this faulty external storage configuration')
+ })
+})
+
+describe('Open in files action enabled tests', () => {
+ test('Enabled with on valid view', () => {
+ expect(action.enabled).toBeDefined()
+ expect(action.enabled!([], externalStorageView)).toBe(true)
+ })
+
+ test('Disabled on wrong view', () => {
+ expect(action.enabled).toBeDefined()
+ expect(action.enabled!([], view)).toBe(false)
+ })
+})
+
+describe('Open in files action execute tests', () => {
+ test('Open in files', async () => {
+ const goToRouteMock = vi.fn()
+ // @ts-expect-error We only mock what needed, we do not need Files.Router.goTo or Files.Navigation
+ window.OCP = { Files: { Router: { goToRoute: goToRouteMock } } }
+
+ const storage = new Folder({
+ id: 1,
+ source: 'https://cloud.domain.com/remote.php/dav/files/admin/Foo/Bar',
+ owner: 'admin',
+ root: '/files/admin',
+ permissions: Permission.ALL,
+ attributes: {
+ config: {
+ status: STORAGE_STATUS.SUCCESS,
+ } as StorageConfig,
+ },
+ })
+
+ const exec = await action.exec(storage, externalStorageView, '/')
+ // Silent action
+ expect(exec).toBe(null)
+ expect(goToRouteMock).toBeCalledTimes(1)
+ expect(goToRouteMock).toBeCalledWith(null, { view: 'files' }, { dir: '/Foo/Bar' })
+ })
+
+ test('Open in files broken storage', async () => {
+ const confirmMock = vi.fn()
+ // @ts-expect-error We only mock what is needed
+ window.OC = { dialogs: { confirm: confirmMock } }
+
+ const storage = new Folder({
+ id: 1,
+ source: 'https://cloud.domain.com/remote.php/dav/files/admin/Foo/Bar',
+ owner: 'admin',
+ root: '/files/admin',
+ permissions: Permission.ALL,
+ attributes: {
+ config: {
+ status: STORAGE_STATUS.ERROR,
+ } as StorageConfig,
+ },
+ })
+
+ const exec = await action.exec(storage, externalStorageView, '/')
+ // Silent action
+ expect(exec).toBe(null)
+ expect(confirmMock).toBeCalledTimes(1)
+ })
+})