mirror of
https://github.com/bitwarden/browser.git
synced 2024-10-31 08:20:37 +01:00
47 lines
1.0 KiB
TypeScript
47 lines
1.0 KiB
TypeScript
import { SecureNoteType } from "@bitwarden/common/enums/secureNoteType";
|
|
import { SecureNoteData } from "@bitwarden/common/models/data/secureNoteData";
|
|
import { SecureNote } from "@bitwarden/common/models/domain/secureNote";
|
|
|
|
describe("SecureNote", () => {
|
|
let data: SecureNoteData;
|
|
|
|
beforeEach(() => {
|
|
data = {
|
|
type: SecureNoteType.Generic,
|
|
};
|
|
});
|
|
|
|
it("Convert from empty", () => {
|
|
const data = new SecureNoteData();
|
|
const secureNote = new SecureNote(data);
|
|
|
|
expect(secureNote).toEqual({
|
|
type: undefined,
|
|
});
|
|
});
|
|
|
|
it("Convert", () => {
|
|
const secureNote = new SecureNote(data);
|
|
|
|
expect(secureNote).toEqual({
|
|
type: 0,
|
|
});
|
|
});
|
|
|
|
it("toSecureNoteData", () => {
|
|
const secureNote = new SecureNote(data);
|
|
expect(secureNote.toSecureNoteData()).toEqual(data);
|
|
});
|
|
|
|
it("Decrypt", async () => {
|
|
const secureNote = new SecureNote();
|
|
secureNote.type = SecureNoteType.Generic;
|
|
|
|
const view = await secureNote.decrypt(null);
|
|
|
|
expect(view).toEqual({
|
|
type: 0,
|
|
});
|
|
});
|
|
});
|