mirror of
https://github.com/odoo/owl.git
synced 2025-10-06 19:59:41 +07:00
76 lines
2.1 KiB
TypeScript
76 lines
2.1 KiB
TypeScript
import { Env, makeEnv } from "../../src/ts/env";
|
|
import { Notification as INotification, Store } from "../../src/ts/store/store";
|
|
import { Notification } from "../../src/ts/ui/notification";
|
|
import * as helpers from "../helpers";
|
|
|
|
//------------------------------------------------------------------------------
|
|
// Setup and helpers
|
|
//------------------------------------------------------------------------------
|
|
|
|
let fixture: HTMLElement;
|
|
let store: Store;
|
|
let env: Env;
|
|
let templates: string;
|
|
|
|
beforeAll(async () => {
|
|
templates = await helpers.loadTemplates();
|
|
});
|
|
|
|
beforeEach(() => {
|
|
fixture = helpers.makeTestFixture();
|
|
fixture = helpers.makeTestFixture();
|
|
store = helpers.makeTestStore();
|
|
env = makeEnv(store, templates);
|
|
});
|
|
|
|
afterEach(() => {
|
|
fixture.remove();
|
|
});
|
|
|
|
function makeNotification(notif: Partial<INotification> = {}): INotification {
|
|
const defaultNotif = {
|
|
id: 1,
|
|
title: "title",
|
|
message: "message",
|
|
type: "notification",
|
|
sticky: false
|
|
};
|
|
return Object.assign(defaultNotif, notif);
|
|
}
|
|
|
|
//------------------------------------------------------------------------------
|
|
// Tests
|
|
//------------------------------------------------------------------------------
|
|
|
|
test("can be rendered", async () => {
|
|
const notif = makeNotification({ title: "title", message: "message" });
|
|
const navbar = new Notification(env, notif);
|
|
await navbar.mount(fixture);
|
|
expect(fixture.innerHTML).toMatchSnapshot();
|
|
});
|
|
|
|
test("can be rendered (type = warning)", async () => {
|
|
const notif = makeNotification({
|
|
title: "title",
|
|
message: "message",
|
|
type: "warning"
|
|
});
|
|
const navbar = new Notification(env, notif);
|
|
await navbar.mount(fixture);
|
|
expect(fixture.innerHTML).toMatchSnapshot();
|
|
});
|
|
|
|
test("can be closed by clicking on it (if sticky)", async () => {
|
|
env.addNotification({
|
|
title: "title",
|
|
message: "message",
|
|
sticky: true
|
|
});
|
|
|
|
const navbar = new Notification(env, store.state.notifications[0]);
|
|
await navbar.mount(fixture);
|
|
expect(store.state.notifications.length).toBe(1);
|
|
(<any>fixture.getElementsByClassName("o_close")[0]).click();
|
|
expect(store.state.notifications.length).toBe(0);
|
|
});
|