mirror of
https://github.com/remotely-save/remotely-save.git
synced 2024-06-07 21:10:45 +00:00
38 lines
940 B
TypeScript
38 lines
940 B
TypeScript
import * as chai from "chai";
|
|
import chaiAsPromised from "chai-as-promised";
|
|
|
|
import { RemotelySavePluginSettings } from "../src/baseTypes";
|
|
import { messyConfigToNormal, normalConfigToMessy } from "../src/configPersist";
|
|
|
|
chai.use(chaiAsPromised);
|
|
const expect = chai.expect;
|
|
|
|
const DEFAULT_SETTINGS: RemotelySavePluginSettings = {
|
|
s3: {
|
|
s3AccessKeyID: "acc",
|
|
} as any,
|
|
webdav: {
|
|
address: "addr",
|
|
} as any,
|
|
dropbox: {
|
|
username: "测试中文",
|
|
} as any,
|
|
onedrive: {
|
|
username: "test 🍎 emoji",
|
|
} as any,
|
|
password: "password",
|
|
serviceType: "s3",
|
|
currLogLevel: "info",
|
|
ignorePaths: ["somefoldertoignore"],
|
|
enableStatusBarInfo: true,
|
|
};
|
|
|
|
describe("Config Persist tests", () => {
|
|
it("should encrypt go back and forth conrrectly", async () => {
|
|
const k = DEFAULT_SETTINGS;
|
|
const k2 = normalConfigToMessy(k);
|
|
const k3 = messyConfigToNormal(k2);
|
|
expect(k3).to.deep.equal(k);
|
|
});
|
|
});
|