mirror of https://github.com/Squidex/squidex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
115 lines
2.9 KiB
115 lines
2.9 KiB
/*
|
|
* Squidex Headless CMS
|
|
*
|
|
* @license
|
|
* Copyright (c) Squidex UG (haftungsbeschränkt). All rights reserved.
|
|
*/
|
|
|
|
import {
|
|
DialogRequest,
|
|
DialogService,
|
|
DialogServiceFactory,
|
|
Notification,
|
|
Tooltip
|
|
} from './dialog.service';
|
|
|
|
describe('DialogService', () => {
|
|
it('should instantiate from factory', () => {
|
|
const dialogService = DialogServiceFactory();
|
|
|
|
expect(dialogService).toBeDefined();
|
|
});
|
|
|
|
it('should instantiate', () => {
|
|
const dialogService = new DialogService();
|
|
|
|
expect(dialogService).toBeDefined();
|
|
});
|
|
|
|
it('should create error notification', () => {
|
|
const notification = Notification.error('MyError');
|
|
|
|
expect(notification.displayTime).toBe(10000);
|
|
expect(notification.message).toBe('MyError');
|
|
expect(notification.messageType).toBe('danger');
|
|
});
|
|
|
|
it('should create info notification', () => {
|
|
const notification = Notification.info('MyInfo');
|
|
|
|
expect(notification.displayTime).toBe(10000);
|
|
expect(notification.message).toBe('MyInfo');
|
|
expect(notification.messageType).toBe('info');
|
|
});
|
|
|
|
it('should create dialog request', () => {
|
|
const dialog = new DialogRequest('MyTitle', 'MyText');
|
|
|
|
expect(dialog.title).toBe('MyTitle');
|
|
expect(dialog.text).toBe('MyText');
|
|
});
|
|
|
|
it('should confirm dialog', () => {
|
|
const dialog = new DialogRequest('MyTitle', 'MyText');
|
|
|
|
let isCompleted = false;
|
|
let isNext = false;
|
|
|
|
dialog.closed.subscribe(result => {
|
|
isNext = result;
|
|
}, undefined, () => {
|
|
isCompleted = true;
|
|
});
|
|
|
|
dialog.complete(true);
|
|
|
|
expect(isCompleted).toBeTruthy();
|
|
expect(isNext).toBeTruthy();
|
|
});
|
|
|
|
it('should publish tooltip', () => {
|
|
const dialogService = new DialogService();
|
|
|
|
const tooltip = new Tooltip('target', 'text', 'left');
|
|
|
|
let publishedTooltip: Tooltip;
|
|
|
|
dialogService.tooltips.subscribe(result => {
|
|
publishedTooltip = result;
|
|
});
|
|
|
|
dialogService.tooltip(tooltip);
|
|
|
|
expect(publishedTooltip!).toBe(tooltip);
|
|
});
|
|
|
|
it('should publish notification', () => {
|
|
const dialogService = new DialogService();
|
|
|
|
const notification = Notification.error('Message');
|
|
|
|
let publishedNotification: Notification;
|
|
|
|
dialogService.notifications.subscribe(result => {
|
|
publishedNotification = result;
|
|
});
|
|
|
|
dialogService.notify(notification);
|
|
|
|
expect(publishedNotification!).toBe(notification);
|
|
});
|
|
|
|
it('should publish dialog request', () => {
|
|
const dialogService = new DialogService();
|
|
|
|
let pushedDialog: DialogRequest;
|
|
|
|
dialogService.dialogs.subscribe(result => {
|
|
pushedDialog = result;
|
|
});
|
|
|
|
dialogService.confirm('MyTitle', 'MyText');
|
|
|
|
expect(pushedDialog!).toEqual(new DialogRequest('MyTitle', 'MyText'));
|
|
});
|
|
});
|
|
|