2022-06-14 17:10:53 +02:00
|
|
|
import { FirefoxCsvImporter as Importer } from "@bitwarden/common/importers/firefoxCsvImporter";
|
|
|
|
import { CipherView } from "@bitwarden/common/models/view/cipherView";
|
|
|
|
import { LoginUriView } from "@bitwarden/common/models/view/loginUriView";
|
|
|
|
import { LoginView } from "@bitwarden/common/models/view/loginView";
|
2021-04-12 19:08:56 +02:00
|
|
|
|
|
|
|
import { data as firefoxAccountsData } from "./testData/firefoxCsv/firefoxAccountsData.csv";
|
|
|
|
import { data as simplePasswordData } from "./testData/firefoxCsv/simplePasswordData.csv";
|
|
|
|
|
|
|
|
const CipherData = [
|
|
|
|
{
|
|
|
|
title: "should parse password",
|
|
|
|
csv: simplePasswordData,
|
|
|
|
expected: Object.assign(new CipherView(), {
|
|
|
|
id: null,
|
|
|
|
organizationId: null,
|
|
|
|
folderId: null,
|
|
|
|
name: "example.com",
|
|
|
|
login: Object.assign(new LoginView(), {
|
|
|
|
username: "foo",
|
|
|
|
password: "bar",
|
|
|
|
uris: [
|
|
|
|
Object.assign(new LoginUriView(), {
|
|
|
|
uri: "https://example.com",
|
|
|
|
}),
|
|
|
|
],
|
|
|
|
}),
|
|
|
|
notes: null,
|
|
|
|
type: 1,
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: 'should skip "chrome://FirefoxAccounts"',
|
|
|
|
csv: firefoxAccountsData,
|
|
|
|
expected: Object.assign(new CipherView(), {
|
|
|
|
id: null,
|
|
|
|
organizationId: null,
|
|
|
|
folderId: null,
|
|
|
|
name: "example.com",
|
|
|
|
login: Object.assign(new LoginView(), {
|
|
|
|
username: "foo",
|
|
|
|
password: "bar",
|
|
|
|
uris: [
|
|
|
|
Object.assign(new LoginUriView(), {
|
|
|
|
uri: "https://example.com",
|
|
|
|
}),
|
|
|
|
],
|
|
|
|
}),
|
|
|
|
notes: null,
|
|
|
|
type: 1,
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
];
|
|
|
|
|
|
|
|
describe("Firefox CSV Importer", () => {
|
|
|
|
CipherData.forEach((data) => {
|
|
|
|
it(data.title, async () => {
|
|
|
|
const importer = new Importer();
|
|
|
|
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) {
|
2022-02-22 15:39:11 +01:00
|
|
|
// eslint-disable-next-line
|
2021-04-12 19:08:56 +02:00
|
|
|
if (data.expected.hasOwnProperty(property)) {
|
2022-02-22 15:39:11 +01:00
|
|
|
// eslint-disable-next-line
|
2021-04-12 19:08:56 +02:00
|
|
|
expect(cipher.hasOwnProperty(property)).toBe(true);
|
|
|
|
expect(cipher[property]).toEqual(data.expected[property]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2021-12-16 13:36:21 +01:00
|
|
|
});
|
2021-04-12 19:08:56 +02:00
|
|
|
});
|