mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-04 09:01:01 +01:00
a5a12a6723
* Create and register new libs/importer Create package.json Create tsconfig Create jest.config Extend shared and root tsconfig and jest.configs Register with eslint * Move importer-related files to libs/importer * Move importer-spec-related files to libs/importer Move import.service.spec * Update package-lock.json * Set CODEOWNERS for new libs/importer * Register libs/importer with cli and fix imports * Register libs/importer with web and fix imports * Move importOption into models Rename importOptions to import-options * Fix linting issues after updating prettier * Only expose necessary files from libs/importer Fix tsconfig files - Removes the trailing /index on imports in web/cli As the spec-files no longer can access the internals via @bitwarden/importer they import by path (../src/importers) * Add barrel files to vendors with more than one importer
76 lines
2.3 KiB
TypeScript
76 lines
2.3 KiB
TypeScript
import { CipherView } from "@bitwarden/common/vault/models/view/cipher.view";
|
|
import { LoginUriView } from "@bitwarden/common/vault/models/view/login-uri.view";
|
|
import { LoginView } from "@bitwarden/common/vault/models/view/login.view";
|
|
|
|
import { SafariCsvImporter } from "../src/importers";
|
|
|
|
import { data as oldSimplePasswordData } from "./test-data/safari-csv/old-simple-password-data.csv";
|
|
import { data as simplePasswordData } from "./test-data/safari-csv/simple-password-data.csv";
|
|
|
|
const CipherData = [
|
|
{
|
|
title: "should parse URLs in new CSV format",
|
|
csv: simplePasswordData,
|
|
expected: Object.assign(new CipherView(), {
|
|
id: null,
|
|
organizationId: null,
|
|
folderId: null,
|
|
name: "example.com (example_user)",
|
|
login: Object.assign(new LoginView(), {
|
|
username: "example_user",
|
|
password: "example_p@ssword",
|
|
uris: [
|
|
Object.assign(new LoginUriView(), {
|
|
uri: "https://example.com",
|
|
}),
|
|
],
|
|
totp: "otpauth://totp/test?secret=examplesecret",
|
|
}),
|
|
notes: "Example note\nMore notes on new line",
|
|
type: 1,
|
|
}),
|
|
},
|
|
{
|
|
title: "should parse URLs in old CSV format",
|
|
csv: oldSimplePasswordData,
|
|
expected: Object.assign(new CipherView(), {
|
|
id: null,
|
|
organizationId: null,
|
|
folderId: null,
|
|
name: "example.com (example_user)",
|
|
login: Object.assign(new LoginView(), {
|
|
username: "example_user",
|
|
password: "example_p@ssword",
|
|
uris: [
|
|
Object.assign(new LoginUriView(), {
|
|
uri: "https://example.com",
|
|
}),
|
|
],
|
|
}),
|
|
type: 1,
|
|
}),
|
|
},
|
|
];
|
|
|
|
describe("Safari CSV Importer", () => {
|
|
CipherData.forEach((data) => {
|
|
it(data.title, async () => {
|
|
const importer = new SafariCsvImporter();
|
|
const result = await importer.parse(data.csv);
|
|
expect(result != null).toBe(true);
|
|
expect(result.ciphers.length).toBeGreaterThan(0);
|
|
|
|
const cipher = result.ciphers.shift();
|
|
let property: keyof typeof data.expected;
|
|
for (property in data.expected) {
|
|
// eslint-disable-next-line
|
|
if (data.expected.hasOwnProperty(property)) {
|
|
// eslint-disable-next-line
|
|
expect(cipher.hasOwnProperty(property)).toBe(true);
|
|
expect(cipher[property]).toEqual(data.expected[property]);
|
|
}
|
|
}
|
|
});
|
|
});
|
|
});
|