mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-04 09:01:01 +01:00
0e78910582
* Rename all importer related files Renamed all files based on our naming convention which we decided on with https://github.com/bitwarden/adr/blob/master/decisions/0012-angular-filename-convention.md * Removed entries from whitelist-capital-letters.txt * Rename missing safeInCloud test data * Fix broken import * Renamed folders (removed capital letters) * Fix filename of BitwardenCsvImporter * Fix imports of onepassword mac/win importer tests * Remove already renamed folders from whitelist * Rename dashlaneImporters to dashlane Rename the folder Fix all the imports Remove dashlaneImporters from white-list * Rename keeperImporters to keeper Rename the folder Fix all the imports Remove keeperImporters from white-list * Rename onepasswordImporters to onepassword Rename the folder Fix all the imports Remove onepasswordImporters from white-list * Rename safeinCloud test data folder * Fix onepassword importer type imports
75 lines
2.2 KiB
TypeScript
75 lines
2.2 KiB
TypeScript
import { FirefoxCsvImporter as Importer } from "@bitwarden/common/importers/firefox-csv-importer";
|
|
import { CipherView } from "@bitwarden/common/models/view/cipher.view";
|
|
import { LoginUriView } from "@bitwarden/common/models/view/login-uri.view";
|
|
import { LoginView } from "@bitwarden/common/models/view/login.view";
|
|
|
|
import { data as firefoxAccountsData } from "./test-data/firefox-csv/firefox-accounts-data.csv";
|
|
import { data as simplePasswordData } from "./test-data/firefox-csv/simple-password-data.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) {
|
|
// 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]);
|
|
}
|
|
}
|
|
});
|
|
});
|
|
});
|