mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-06 09:20:43 +01:00
28de9439be
* [deps] Autofill: Update prettier to v3 * prettier formatting updates --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Jonathan Prusik <jprusik@classynemesis.com>
75 lines
2.1 KiB
TypeScript
75 lines
2.1 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 { SecureSafeCsvImporter } from "../src/importers";
|
|
|
|
import { data_upperUrl, data_lowerUrl } from "./test-data/securesafe-csv/securesafe-example.csv";
|
|
|
|
const CipherData = [
|
|
{
|
|
title: "should parse upper case url",
|
|
csv: data_upperUrl,
|
|
expected: Object.assign(new CipherView(), {
|
|
id: null,
|
|
organizationId: null,
|
|
folderId: null,
|
|
name: "Gmail",
|
|
login: Object.assign(new LoginView(), {
|
|
username: "test@gmail.com",
|
|
password: "test",
|
|
uris: [
|
|
Object.assign(new LoginUriView(), {
|
|
uri: "https://gmail.com",
|
|
}),
|
|
],
|
|
}),
|
|
notes: null,
|
|
type: 1,
|
|
}),
|
|
},
|
|
{
|
|
title: "should parse lower case url",
|
|
csv: data_lowerUrl,
|
|
expected: Object.assign(new CipherView(), {
|
|
id: null,
|
|
organizationId: null,
|
|
folderId: null,
|
|
name: "Gmail",
|
|
login: Object.assign(new LoginView(), {
|
|
username: "test@gmail.com",
|
|
password: "test",
|
|
uris: [
|
|
Object.assign(new LoginUriView(), {
|
|
uri: "https://gmail.com",
|
|
}),
|
|
],
|
|
}),
|
|
notes: null,
|
|
type: 1,
|
|
}),
|
|
},
|
|
];
|
|
|
|
describe("SecureSafe CSV Importer", () => {
|
|
CipherData.forEach((data) => {
|
|
it(data.title, async () => {
|
|
const importer = new SecureSafeCsvImporter();
|
|
const result = await importer.parse(data.csv);
|
|
expect(result != null).toBe(true);
|
|
expect(result.ciphers.length).toBeGreaterThan(0);
|
|
|
|
const cipher = result.ciphers.shift();
|
|
expect(cipher.name).toEqual(data.expected.name);
|
|
expect(cipher.login).toEqual(
|
|
expect.objectContaining({
|
|
username: data.expected.login.username,
|
|
password: data.expected.login.password,
|
|
}),
|
|
);
|
|
expect(cipher.login.uris.length).toEqual(1);
|
|
expect(cipher.login.uris[0].uri).toEqual(data.expected.login.uris[0].uri);
|
|
});
|
|
});
|
|
});
|