mirror of
https://github.com/bitwarden/browser
synced 2024-12-19 12:54:48 +01:00
fd346ba65a
* Fixing queryselector since the existing is failing * Add the unit test for the keepass fix * Adding additional test for the query.selector fix * Fixing a lint error message
43 lines
1.5 KiB
TypeScript
43 lines
1.5 KiB
TypeScript
import { KeePass2XmlImporter as Importer } from "@bitwarden/common/importers/keepass2-xml-importer";
|
|
import { FolderView } from "@bitwarden/common/models/view/folder.view";
|
|
|
|
import { TestData, TestData1, TestData2 } from "./keepass2-xml-importer-testdata";
|
|
|
|
describe("KeePass2 Xml Importer", () => {
|
|
it("should parse XML data", async () => {
|
|
const importer = new Importer();
|
|
const result = await importer.parse(TestData);
|
|
expect(result != null).toBe(true);
|
|
});
|
|
|
|
it("parse XML should contains folders", async () => {
|
|
const importer = new Importer();
|
|
const folder = new FolderView();
|
|
folder.name = "Folder2";
|
|
const actual = [folder];
|
|
|
|
const result = await importer.parse(TestData);
|
|
expect(result.folders).toEqual(actual);
|
|
});
|
|
|
|
it("parse XML should contains login details", async () => {
|
|
const importer = new Importer();
|
|
const result = await importer.parse(TestData);
|
|
expect(result.ciphers[0].login.uri != null).toBe(true);
|
|
expect(result.ciphers[0].login.username != null).toBe(true);
|
|
expect(result.ciphers[0].login.password != null).toBe(true);
|
|
});
|
|
|
|
it("should return error with missing root tag", async () => {
|
|
const importer = new Importer();
|
|
const result = await importer.parse(TestData1);
|
|
expect(result.errorMessage).toBe("Missing `KeePassFile > Root` node.");
|
|
});
|
|
|
|
it("should return error with missing KeePassFile tag", async () => {
|
|
const importer = new Importer();
|
|
const result = await importer.parse(TestData2);
|
|
expect(result.success).toBe(false);
|
|
});
|
|
});
|