mirror of
https://github.com/coderaiser/cloudcmd.git
synced 2026-01-23 02:35:49 +00:00
94 lines
2.1 KiB
JavaScript
94 lines
2.1 KiB
JavaScript
import fs from 'node:fs';
|
|
import test from 'supertape';
|
|
import {Volume} from 'memfs';
|
|
import {ufs} from 'unionfs';
|
|
import serveOnce from 'serve-once';
|
|
import cloudcmd from '../../server/cloudcmd.mjs';
|
|
|
|
test('cloudcmd: rest: rename', async (t) => {
|
|
const volume = {
|
|
'/fixture/mv.txt': 'hello',
|
|
'/fixture/tmp/a.txt': 'a',
|
|
};
|
|
|
|
const vol = Volume.fromJSON(volume, '/');
|
|
|
|
const unionFS = ufs
|
|
.use(vol)
|
|
.use(fs);
|
|
|
|
const {createConfigManager} = cloudcmd;
|
|
const configManager = createConfigManager();
|
|
|
|
configManager('auth', false);
|
|
configManager('root', '/');
|
|
|
|
cloudcmd.depStore('fs', unionFS);
|
|
const {request} = serveOnce(cloudcmd, {
|
|
configManager,
|
|
});
|
|
|
|
const files = {
|
|
from: '/fixture/mv.txt',
|
|
to: '/fixture/tmp/mv.txt',
|
|
};
|
|
|
|
const {body} = await request.put(`/api/v1/rename`, {
|
|
body: files,
|
|
});
|
|
|
|
cloudcmd.depStore();
|
|
|
|
const expected = 'rename: ok("{"from":"/fixture/mv.txt","to":"/fixture/tmp/mv.txt"}")';
|
|
|
|
t.equal(body, expected, 'should move');
|
|
t.end();
|
|
});
|
|
|
|
test('cloudcmd: rest: rename: no from', async (t) => {
|
|
const {createConfigManager} = cloudcmd;
|
|
|
|
const configManager = createConfigManager();
|
|
configManager('auth', false);
|
|
configManager('root', '/');
|
|
|
|
const {request} = serveOnce(cloudcmd, {
|
|
configManager,
|
|
});
|
|
|
|
const files = {};
|
|
|
|
const {body} = await request.put(`/api/v1/rename`, {
|
|
body: files,
|
|
});
|
|
|
|
const expected = '"from" should be filled';
|
|
|
|
t.equal(body, expected);
|
|
t.end();
|
|
});
|
|
|
|
test('cloudcmd: rest: rename: no to', async (t) => {
|
|
const {createConfigManager} = cloudcmd;
|
|
|
|
const configManager = createConfigManager();
|
|
configManager('auth', false);
|
|
configManager('root', '/');
|
|
|
|
const {request} = serveOnce(cloudcmd, {
|
|
configManager,
|
|
});
|
|
|
|
const files = {
|
|
from: '/',
|
|
};
|
|
|
|
const {body} = await request.put(`/api/v1/rename`, {
|
|
body: files,
|
|
});
|
|
|
|
const expected = '"to" should be filled';
|
|
|
|
t.equal(body, expected);
|
|
t.end();
|
|
});
|