mirror of
https://github.com/bitwarden/browser.git
synced 2024-12-01 13:13:36 +01:00
a4fba0e1c5
* Switch to jest * Fix jslib-angular package name * Make angular test project * Split up tests by jslib project * Remove obsolete node test script * Use legacy deps with jest-preset-angular * Move web tests to common * Remove build from pipeline This was only being used because we were not using ts runners. We are now, so build is unnecessary
182 lines
6.2 KiB
TypeScript
182 lines
6.2 KiB
TypeScript
import { CipherType } from "jslib-common/enums/cipherType";
|
|
import { SecureNoteType } from "jslib-common/enums/secureNoteType";
|
|
import { NordPassCsvImporter as Importer } from "jslib-common/importers/nordpassCsvImporter";
|
|
import { CipherView } from "jslib-common/models/view/cipherView";
|
|
import { IdentityView } from "jslib-common/models/view/identityView";
|
|
|
|
import { data as creditCardData } from "./testData/nordpassCsv/nordpass.card.csv";
|
|
import { data as identityData } from "./testData/nordpassCsv/nordpass.identity.csv";
|
|
import { data as loginData } from "./testData/nordpassCsv/nordpass.login.csv";
|
|
import { data as secureNoteData } from "./testData/nordpassCsv/nordpass.secureNote.csv";
|
|
|
|
const namesTestData = [
|
|
{
|
|
title: "Given #fullName should set firstName",
|
|
fullName: "MyFirstName",
|
|
expected: Object.assign(new IdentityView(), {
|
|
firstName: "MyFirstName",
|
|
middleName: null,
|
|
lastName: null,
|
|
}),
|
|
},
|
|
{
|
|
title: "Given #fullName should set first- and lastName",
|
|
fullName: "MyFirstName MyLastName",
|
|
expected: Object.assign(new IdentityView(), {
|
|
firstName: "MyFirstName",
|
|
middleName: null,
|
|
lastName: "MyLastName",
|
|
}),
|
|
},
|
|
{
|
|
title: "Given #fullName should set first-, middle and lastName",
|
|
fullName: "MyFirstName MyMiddleName MyLastName",
|
|
expected: Object.assign(new IdentityView(), {
|
|
firstName: "MyFirstName",
|
|
middleName: "MyMiddleName",
|
|
lastName: "MyLastName",
|
|
}),
|
|
},
|
|
{
|
|
title: "Given #fullName should set first-, middle and lastName with Jr",
|
|
fullName: "MyFirstName MyMiddleName MyLastName Jr",
|
|
expected: Object.assign(new IdentityView(), {
|
|
firstName: "MyFirstName",
|
|
middleName: "MyMiddleName",
|
|
lastName: "MyLastName Jr",
|
|
}),
|
|
},
|
|
{
|
|
title: "Given #fullName should set first-, middle and lastName with Jr and III",
|
|
fullName: "MyFirstName MyMiddleName MyLastName Jr III",
|
|
expected: Object.assign(new IdentityView(), {
|
|
firstName: "MyFirstName",
|
|
middleName: "MyMiddleName",
|
|
lastName: "MyLastName Jr III",
|
|
}),
|
|
},
|
|
];
|
|
|
|
function expectLogin(cipher: CipherView) {
|
|
expect(cipher.type).toBe(CipherType.Login);
|
|
|
|
expect(cipher.name).toBe("SomeVaultItemName");
|
|
expect(cipher.notes).toBe("Some note for the VaultItem");
|
|
expect(cipher.login.uri).toBe("https://example.com");
|
|
expect(cipher.login.username).toBe("hello@bitwarden.com");
|
|
expect(cipher.login.password).toBe("someStrongPassword");
|
|
}
|
|
|
|
function expectCreditCard(cipher: CipherView) {
|
|
expect(cipher.type).toBe(CipherType.Card);
|
|
|
|
expect(cipher.name).toBe("SomeVisa");
|
|
expect(cipher.card.brand).toBe("Visa");
|
|
expect(cipher.card.cardholderName).toBe("SomeHolder");
|
|
expect(cipher.card.number).toBe("4024007103939509");
|
|
expect(cipher.card.code).toBe("123");
|
|
expect(cipher.card.expMonth).toBe("1");
|
|
expect(cipher.card.expYear).toBe("22");
|
|
}
|
|
|
|
function expectIdentity(cipher: CipherView) {
|
|
expect(cipher.type).toBe(CipherType.Identity);
|
|
|
|
expect(cipher.name).toBe("SomeTitle");
|
|
expect(cipher.identity.fullName).toBe("MyFirstName MyMiddleName MyLastName");
|
|
expect(cipher.identity.firstName).toBe("MyFirstName");
|
|
expect(cipher.identity.middleName).toBe("MyMiddleName");
|
|
expect(cipher.identity.lastName).toBe("MyLastName");
|
|
expect(cipher.identity.email).toBe("hello@bitwarden.com");
|
|
expect(cipher.identity.phone).toBe("123456789");
|
|
|
|
expect(cipher.identity.address1).toBe("Test street 123");
|
|
expect(cipher.identity.address2).toBe("additional addressinfo");
|
|
expect(cipher.identity.postalCode).toBe("123456");
|
|
expect(cipher.identity.city).toBe("Cologne");
|
|
expect(cipher.identity.state).toBe("North-Rhine-Westphalia");
|
|
expect(cipher.identity.country).toBe("GERMANY");
|
|
expect(cipher.notes).toBe("SomeNoteToMyIdentity");
|
|
}
|
|
|
|
function expectSecureNote(cipher: CipherView) {
|
|
expect(cipher.type).toBe(CipherType.SecureNote);
|
|
|
|
expect(cipher.name).toBe("MySuperSecureNoteTitle");
|
|
expect(cipher.secureNote.type).toBe(SecureNoteType.Generic);
|
|
expect(cipher.notes).toBe("MySuperSecureNote");
|
|
}
|
|
|
|
describe("NordPass CSV Importer", () => {
|
|
let importer: Importer;
|
|
beforeEach(() => {
|
|
importer = new Importer();
|
|
});
|
|
|
|
it("should parse login records", async () => {
|
|
const result = await importer.parse(loginData);
|
|
|
|
expect(result).not.toBeNull();
|
|
expect(result.success).toBe(true);
|
|
expect(result.ciphers.length).toBe(1);
|
|
const cipher = result.ciphers[0];
|
|
expectLogin(cipher);
|
|
});
|
|
|
|
it("should parse credit card records", async () => {
|
|
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 identity records", async () => {
|
|
const result = await importer.parse(
|
|
identityData.replace("#fullName", "MyFirstName MyMiddleName MyLastName")
|
|
);
|
|
|
|
expect(result).not.toBeNull();
|
|
expect(result.success).toBe(true);
|
|
expect(result.ciphers.length).toBe(1);
|
|
const cipher = result.ciphers[0];
|
|
expectIdentity(cipher);
|
|
});
|
|
|
|
namesTestData.forEach((data) => {
|
|
it(data.title.replace("#fullName", data.fullName), async () => {
|
|
const result = await importer.parse(identityData.replace("#fullName", data.fullName));
|
|
|
|
expect(result).not.toBeNull();
|
|
expect(result.success).toBe(true);
|
|
expect(result.ciphers.length).toBe(1);
|
|
const cipher = result.ciphers[0];
|
|
expect(cipher.identity.firstName).toBe(data.expected.firstName);
|
|
expect(cipher.identity.middleName).toBe(data.expected.middleName);
|
|
expect(cipher.identity.lastName).toBe(data.expected.lastName);
|
|
});
|
|
});
|
|
|
|
it("should parse secureNote records", async () => {
|
|
const result = await importer.parse(secureNoteData);
|
|
|
|
expect(result).not.toBeNull();
|
|
expect(result.success).toBe(true);
|
|
expect(result.ciphers.length).toBe(1);
|
|
const cipher = result.ciphers[0];
|
|
expectSecureNote(cipher);
|
|
});
|
|
|
|
it("should parse an item and create a folder", async () => {
|
|
const result = await importer.parse(secureNoteData);
|
|
|
|
expect(result).not.toBeNull();
|
|
expect(result.success).toBe(true);
|
|
expect(result.folders.length).toBe(1);
|
|
const folder = result.folders[0];
|
|
expect(folder.name).toBe("notesFolder");
|
|
});
|
|
});
|