2022-06-14 17:10:53 +02:00
|
|
|
import { CipherType } from "@bitwarden/common/enums/cipherType";
|
|
|
|
import { OnePasswordMacCsvImporter as Importer } from "@bitwarden/common/importers/onepasswordImporters/onepasswordMacCsvImporter";
|
|
|
|
import { CipherView } from "@bitwarden/common/models/view/cipherView";
|
2020-12-08 18:29:57 +01:00
|
|
|
|
|
|
|
import { data as creditCardData } from "./testData/onePasswordCsv/creditCard.mac.csv";
|
|
|
|
import { data as identityData } from "./testData/onePasswordCsv/identity.mac.csv";
|
|
|
|
import { data as multiTypeData } from "./testData/onePasswordCsv/multipleItems.mac.csv";
|
|
|
|
|
|
|
|
function expectIdentity(cipher: CipherView) {
|
|
|
|
expect(cipher.type).toBe(CipherType.Identity);
|
|
|
|
|
|
|
|
expect(cipher.identity).toEqual(
|
2022-03-28 16:00:42 +02:00
|
|
|
expect.objectContaining({
|
2020-12-08 18:29:57 +01:00
|
|
|
firstName: "first name",
|
|
|
|
middleName: "mi",
|
|
|
|
lastName: "last name",
|
|
|
|
username: "userNam3",
|
|
|
|
company: "bitwarden",
|
|
|
|
phone: "8005555555",
|
2021-02-08 21:11:44 +01:00
|
|
|
email: "email@bitwarden.com",
|
2020-12-08 18:29:57 +01:00
|
|
|
})
|
|
|
|
);
|
|
|
|
|
|
|
|
expect(cipher.notes).toContain("address\ncity state zip\nUnited States");
|
|
|
|
}
|
|
|
|
|
|
|
|
function expectCreditCard(cipher: CipherView) {
|
|
|
|
expect(cipher.type).toBe(CipherType.Card);
|
|
|
|
|
|
|
|
expect(cipher.card).toEqual(
|
2022-03-28 16:00:42 +02:00
|
|
|
expect.objectContaining({
|
2020-12-08 18:29:57 +01:00
|
|
|
number: "4111111111111111",
|
|
|
|
code: "111",
|
|
|
|
cardholderName: "test",
|
|
|
|
expMonth: "1",
|
|
|
|
expYear: "2030",
|
|
|
|
})
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
describe("1Password mac CSV Importer", () => {
|
|
|
|
it("should parse identity records", async () => {
|
|
|
|
const importer = new Importer();
|
|
|
|
const result = await importer.parse(identityData);
|
|
|
|
|
|
|
|
expect(result).not.toBeNull();
|
|
|
|
expect(result.success).toBe(true);
|
|
|
|
expect(result.ciphers.length).toBe(1);
|
|
|
|
const cipher = result.ciphers[0];
|
|
|
|
expectIdentity(cipher);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("should parse credit card records", async () => {
|
|
|
|
const importer = new Importer();
|
|
|
|
const result = await importer.parse(creditCardData);
|
|
|
|
|
|
|
|
expect(result).not.toBeNull();
|
|
|
|
expect(result.success).toBe(true);
|
|
|
|
expect(result.ciphers.length).toBe(1);
|
|
|
|
const cipher = result.ciphers[0];
|
|
|
|
expectCreditCard(cipher);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("should parse csv's with multiple record type", async () => {
|
|
|
|
const importer = new Importer();
|
|
|
|
const result = await importer.parse(multiTypeData);
|
|
|
|
|
|
|
|
expect(result).not.toBeNull();
|
|
|
|
expect(result.success).toBe(true);
|
|
|
|
expect(result.ciphers.length).toBe(4);
|
|
|
|
expectIdentity(result.ciphers[1]);
|
|
|
|
expectCreditCard(result.ciphers[2]);
|
|
|
|
});
|
|
|
|
});
|