diff --git a/libs/importer/spec/test-data/zohovault/sample-zohovault-data.csv.ts b/libs/importer/spec/test-data/zohovault/sample-zohovault-data.csv.ts new file mode 100644 index 00000000000..a95178ffba3 --- /dev/null +++ b/libs/importer/spec/test-data/zohovault/sample-zohovault-data.csv.ts @@ -0,0 +1,5 @@ +export const data = `"Password Name","Description","Password URL","SecretData","Notes","CustomData","Tags","Classification","Favorite","login_totp","Folder Name" +XYZ Test,,https://abc.xyz.de:5001/#/login,"SecretType:Web Account +User Name:email@domain.de +Password:PcY_IQEXIjKGj8YW +",,"",,E,0,otpauth://totp?secret=PI2XO5TW0DF0SHTYOVZXOOBVHFEWM6JU&algorithm=SHA1&period=30&digits=6,folderName`; diff --git a/libs/importer/spec/zohovault-csv-importer.spec.ts b/libs/importer/spec/zohovault-csv-importer.spec.ts new file mode 100644 index 00000000000..28318945291 --- /dev/null +++ b/libs/importer/spec/zohovault-csv-importer.spec.ts @@ -0,0 +1,88 @@ +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 { ZohoVaultCsvImporter } from "../src/importers"; + +import { data as samplezohovaultcsvdata } from "./test-data/zohovault/sample-zohovault-data.csv"; + +const CipherData = [ + { + title: "should parse Zoho Vault CSV format", + csv: samplezohovaultcsvdata, + expected: Object.assign(new CipherView(), { + id: null, + organizationId: null, + folderId: null, + name: "XYZ Test", + login: Object.assign(new LoginView(), { + username: "email@domain.de", + password: "PcY_IQEXIjKGj8YW", + uris: [ + Object.assign(new LoginUriView(), { + uri: "https://abc.xyz.de:5001/#/login", + }), + ], + totp: "otpauth://totp?secret=PI2XO5TW0DF0SHTYOVZXOOBVHFEWM6JU&algorithm=SHA1&period=30&digits=6", + }), + type: 1, + favorite: false, + }), + }, +]; + +describe("Zoho Vault CSV Importer", () => { + it("should not succeed given no data", async () => { + const importer = new ZohoVaultCsvImporter(); + const result = await importer.parse(""); + expect(result != null).toBe(true); + expect(result.success).toBe(false); + }); + + CipherData.forEach((data) => { + it(data.title, async () => { + const importer = new ZohoVaultCsvImporter(); + 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]); + } + } + }); + }); + + it("should create folder and assign ciphers", async () => { + const importer = new ZohoVaultCsvImporter(); + const result = await importer.parse(samplezohovaultcsvdata); + expect(result != null).toBe(true); + expect(result.success).toBe(true); + expect(result.ciphers.length).toBeGreaterThan(0); + + const folder = result.folders.shift(); + expect(folder.name).toBe("folderName"); + + expect(result.folderRelationships[0]).toEqual([0, 0]); + }); + + it("should create collection and assign ciphers when importing into an organization", async () => { + const importer = new ZohoVaultCsvImporter(); + importer.organizationId = "someOrgId"; + const result = await importer.parse(samplezohovaultcsvdata); + expect(result != null).toBe(true); + expect(result.success).toBe(true); + expect(result.ciphers.length).toBeGreaterThan(0); + + const collection = result.collections.shift(); + expect(collection.name).toBe("folderName"); + + expect(result.collectionRelationships[0]).toEqual([0, 0]); + }); +}); diff --git a/libs/importer/src/importers/zohovault-csv-importer.ts b/libs/importer/src/importers/zohovault-csv-importer.ts index 6ae4b6a88a3..6a34179e868 100644 --- a/libs/importer/src/importers/zohovault-csv-importer.ts +++ b/libs/importer/src/importers/zohovault-csv-importer.ts @@ -13,7 +13,6 @@ export class ZohoVaultCsvImporter extends BaseImporter implements Importer { result.success = false; return Promise.resolve(result); } - results.forEach((value) => { if ( this.isNullOrWhitespace(value["Password Name"]) && @@ -21,7 +20,7 @@ export class ZohoVaultCsvImporter extends BaseImporter implements Importer { ) { return; } - this.processFolder(result, this.getValueOrDefault(value.ChamberName)); + this.processFolder(result, this.getValueOrDefault(value["Folder Name"])); const cipher = this.initLoginCipher(); cipher.favorite = this.getValueOrDefault(value.Favorite, "0") === "1"; cipher.notes = this.getValueOrDefault(value.Notes); @@ -32,6 +31,7 @@ export class ZohoVaultCsvImporter extends BaseImporter implements Importer { cipher.login.uris = this.makeUriArray( this.getValueOrDefault(value["Password URL"], this.getValueOrDefault(value["Secret URL"])), ); + cipher.login.totp = this.getValueOrDefault(value["login_totp"]); this.parseData(cipher, value.SecretData); this.parseData(cipher, value.CustomData); this.convertToNoteIfNeeded(cipher);