mirror of
https://github.com/bitwarden/browser.git
synced 2024-10-31 08:20:37 +01:00
87 lines
2.0 KiB
TypeScript
87 lines
2.0 KiB
TypeScript
import { FieldType } from "@bitwarden/common/enums/fieldType";
|
|
import { FieldData } from "@bitwarden/common/models/data/fieldData";
|
|
import { EncString } from "@bitwarden/common/models/domain/encString";
|
|
import { Field } from "@bitwarden/common/models/domain/field";
|
|
|
|
import { mockEnc, mockFromJson } from "../../utils";
|
|
|
|
describe("Field", () => {
|
|
let data: FieldData;
|
|
|
|
beforeEach(() => {
|
|
data = {
|
|
type: FieldType.Text,
|
|
name: "encName",
|
|
value: "encValue",
|
|
linkedId: null,
|
|
};
|
|
});
|
|
|
|
it("Convert from empty", () => {
|
|
const data = new FieldData();
|
|
const field = new Field(data);
|
|
|
|
expect(field).toEqual({
|
|
type: undefined,
|
|
name: null,
|
|
value: null,
|
|
linkedId: undefined,
|
|
});
|
|
});
|
|
|
|
it("Convert", () => {
|
|
const field = new Field(data);
|
|
|
|
expect(field).toEqual({
|
|
type: FieldType.Text,
|
|
name: { encryptedString: "encName", encryptionType: 0 },
|
|
value: { encryptedString: "encValue", encryptionType: 0 },
|
|
linkedId: null,
|
|
});
|
|
});
|
|
|
|
it("toFieldData", () => {
|
|
const field = new Field(data);
|
|
expect(field.toFieldData()).toEqual(data);
|
|
});
|
|
|
|
it("Decrypt", async () => {
|
|
const field = new Field();
|
|
field.type = FieldType.Text;
|
|
field.name = mockEnc("encName");
|
|
field.value = mockEnc("encValue");
|
|
|
|
const view = await field.decrypt(null);
|
|
|
|
expect(view).toEqual({
|
|
type: 0,
|
|
name: "encName",
|
|
value: "encValue",
|
|
newField: false,
|
|
showCount: false,
|
|
showValue: false,
|
|
});
|
|
});
|
|
|
|
describe("fromJSON", () => {
|
|
it("initializes nested objects", () => {
|
|
jest.spyOn(EncString, "fromJSON").mockImplementation(mockFromJson);
|
|
|
|
const actual = Field.fromJSON({
|
|
name: "myName",
|
|
value: "myValue",
|
|
});
|
|
|
|
expect(actual).toEqual({
|
|
name: "myName_fromJSON",
|
|
value: "myValue_fromJSON",
|
|
});
|
|
expect(actual).toBeInstanceOf(Field);
|
|
});
|
|
|
|
it("returns null if object is null", () => {
|
|
expect(Field.fromJSON(null)).toBeNull();
|
|
});
|
|
});
|
|
});
|