2023-01-31 22:08:37 +01:00
|
|
|
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";
|
2022-10-25 10:49:57 +02:00
|
|
|
|
2023-03-23 11:43:27 +01:00
|
|
|
import { ChromeCsvImporter } from "../src/importers";
|
|
|
|
|
2022-11-11 16:20:03 +01:00
|
|
|
import { data as androidData } from "./test-data/chrome-csv/android-data.csv";
|
|
|
|
import { data as simplePasswordData } from "./test-data/chrome-csv/simple-password-data.csv";
|
2022-10-25 10:49:57 +02:00
|
|
|
|
|
|
|
const CipherData = [
|
|
|
|
{
|
|
|
|
title: "should parse app name",
|
|
|
|
csv: androidData,
|
|
|
|
expected: Object.assign(new CipherView(), {
|
|
|
|
id: null,
|
|
|
|
organizationId: null,
|
|
|
|
folderId: null,
|
|
|
|
name: "com.xyz.example.app.android",
|
|
|
|
login: Object.assign(new LoginView(), {
|
|
|
|
username: "username@example.com",
|
|
|
|
password: "Qh6W4Wz55YGFNU",
|
|
|
|
uris: [
|
|
|
|
Object.assign(new LoginUriView(), {
|
|
|
|
uri: "android://N2H9MndUUUt3JuQSWAKexOU9oJLJeHR4nyUGac5E1TXKppkY7xtdRl6l8vKo1hQWCqAEy4gsNLUBIbVxpdmhOP==@com.xyz.example.app.android/",
|
|
|
|
}),
|
|
|
|
],
|
|
|
|
}),
|
|
|
|
notes: null,
|
|
|
|
type: 1,
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
title: "should parse password",
|
|
|
|
csv: simplePasswordData,
|
|
|
|
expected: Object.assign(new CipherView(), {
|
|
|
|
id: null,
|
|
|
|
organizationId: null,
|
|
|
|
folderId: null,
|
|
|
|
name: "www.example.com",
|
|
|
|
login: Object.assign(new LoginView(), {
|
|
|
|
username: "username@example.com",
|
|
|
|
password: "wpC9qFvsbWQK5Z",
|
|
|
|
uris: [
|
|
|
|
Object.assign(new LoginUriView(), {
|
|
|
|
uri: "https://www.example.com/",
|
|
|
|
}),
|
|
|
|
],
|
|
|
|
}),
|
|
|
|
notes: null,
|
|
|
|
type: 1,
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
];
|
|
|
|
|
|
|
|
describe("Chrome CSV Importer", () => {
|
|
|
|
CipherData.forEach((data) => {
|
|
|
|
it(data.title, async () => {
|
2023-03-23 11:43:27 +01:00
|
|
|
const importer = new ChromeCsvImporter();
|
2022-10-25 10:49:57 +02:00
|
|
|
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) {
|
|
|
|
if (Object.prototype.hasOwnProperty.call(data.expected, property)) {
|
|
|
|
expect(Object.prototype.hasOwnProperty.call(cipher, property)).toBe(true);
|
|
|
|
expect(cipher[property]).toEqual(data.expected[property]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|