@thoughtspot/visual-embed-sdk
Version:
ThoughtSpot Embed SDK
187 lines • 8.48 kB
JavaScript
import { PinboardEmbed } from './liveboard';
import { init } from '../index';
import { Action, AuthType, EmbedEvent, RuntimeFilterOp, } from '../types';
import { executeAfterWait, getDocumentBody, getIFrameSrc, getRootEl, defaultParams, defaultParamsWithoutHiddenActions, expectUrlMatchesWithParams, } from '../test/test-utils';
import * as auth from '../auth';
const defaultViewConfig = {
frameParams: {
width: 1280,
height: 720,
},
};
const pinboardId = 'eca215d4-0d2c-4a55-90e3-d81ef6848ae0';
const vizId = '6e73f724-660e-11eb-ae93-0242ac130002';
const thoughtSpotHost = 'tshost';
const prefixParams = '&isLiveboardEmbed=true';
const prefixParamsVizEmbed = '&isLiveboardEmbed=true&isVizEmbed=true';
beforeAll(() => {
init({
thoughtSpotHost,
authType: AuthType.None,
});
jest.spyOn(auth, 'postLoginService').mockImplementation(() => Promise.resolve(undefined));
});
describe('Pinboard/viz embed tests', () => {
beforeEach(() => {
document.body.innerHTML = getDocumentBody();
});
test('should render pinboard', async () => {
const pinboardEmbed = new PinboardEmbed(getRootEl(), {
...defaultViewConfig,
pinboardId,
});
pinboardEmbed.render();
await executeAfterWait(() => {
expectUrlMatchesWithParams(getIFrameSrc(), `http://${thoughtSpotHost}/?embedApp=true${defaultParams}${prefixParams}#/embed/viz/${pinboardId}`);
});
});
test('should set disabled actions', async () => {
const pinboardEmbed = new PinboardEmbed(getRootEl(), {
disabledActions: [Action.DownloadAsCsv, Action.DownloadAsPdf, Action.DownloadAsXlsx],
disabledActionReason: 'Action denied',
...defaultViewConfig,
pinboardId,
});
pinboardEmbed.render();
await executeAfterWait(() => {
expectUrlMatchesWithParams(getIFrameSrc(), `http://${thoughtSpotHost}/?embedApp=true&${defaultParamsWithoutHiddenActions}&disableAction=[%22${Action.DownloadAsCsv}%22,%22${Action.DownloadAsPdf}%22,%22${Action.DownloadAsXlsx}%22]&disableHint=Action%20denied&hideAction=[%22${Action.ReportError}%22]${prefixParams}#/embed/viz/${pinboardId}`);
});
});
test('should set hidden actions', async () => {
const pinboardEmbed = new PinboardEmbed(getRootEl(), {
hiddenActions: [Action.DownloadAsCsv, Action.DownloadAsPdf, Action.DownloadAsXlsx],
...defaultViewConfig,
pinboardId,
});
pinboardEmbed.render();
await executeAfterWait(() => {
expectUrlMatchesWithParams(getIFrameSrc(), `http://${thoughtSpotHost}/?embedApp=true&${defaultParamsWithoutHiddenActions}&hideAction=[%22${Action.ReportError}%22,%22${Action.DownloadAsCsv}%22,%22${Action.DownloadAsPdf}%22,%22${Action.DownloadAsXlsx}%22]${prefixParams}#/embed/viz/${pinboardId}`);
});
});
test('should set visible actions', async () => {
const pinboardEmbed = new PinboardEmbed(getRootEl(), {
visibleActions: [Action.DownloadAsCsv, Action.DownloadAsPdf, Action.DownloadAsXlsx],
...defaultViewConfig,
pinboardId,
});
pinboardEmbed.render();
await executeAfterWait(() => {
expectUrlMatchesWithParams(getIFrameSrc(), `http://${thoughtSpotHost}/?embedApp=true${defaultParams}&visibleAction=[%22${Action.DownloadAsCsv}%22,%22${Action.DownloadAsPdf}%22,%22${Action.DownloadAsXlsx}%22]${prefixParams}#/embed/viz/${pinboardId}`);
});
});
test('should set visible actions as empty array', async () => {
const pinboardEmbed = new PinboardEmbed(getRootEl(), {
visibleActions: [],
...defaultViewConfig,
pinboardId,
});
pinboardEmbed.render();
await executeAfterWait(() => {
expectUrlMatchesWithParams(getIFrameSrc(), `http://${thoughtSpotHost}/?embedApp=true${defaultParams}&visibleAction=[]${prefixParams}#/embed/viz/${pinboardId}`);
});
});
test('should enable viz transformations true', async () => {
const pinboardEmbed = new PinboardEmbed(getRootEl(), {
enableVizTransformations: true,
...defaultViewConfig,
pinboardId,
});
pinboardEmbed.render();
await executeAfterWait(() => {
expectUrlMatchesWithParams(getIFrameSrc(), `http://${thoughtSpotHost}/?embedApp=true${defaultParams}&enableVizTransform=true${prefixParams}#/embed/viz/${pinboardId}`);
});
});
test('should disable viz transformations when enableVizTransformations false', async () => {
const pinboardEmbed = new PinboardEmbed(getRootEl(), {
enableVizTransformations: false,
...defaultViewConfig,
pinboardId,
});
pinboardEmbed.render();
await executeAfterWait(() => {
expectUrlMatchesWithParams(getIFrameSrc(), `http://${thoughtSpotHost}/?embedApp=true${defaultParams}&enableVizTransform=false${prefixParams}#/embed/viz/${pinboardId}`);
});
});
test('should render viz', async () => {
const pinboardEmbed = new PinboardEmbed(getRootEl(), {
...defaultViewConfig,
pinboardId,
vizId,
});
pinboardEmbed.render();
await executeAfterWait(() => {
expectUrlMatchesWithParams(getIFrameSrc(), `http://${thoughtSpotHost}/?embedApp=true${defaultParams}${prefixParamsVizEmbed}#/embed/viz/${pinboardId}/${vizId}`);
});
});
test('should apply runtime filters', async () => {
const pinboardEmbed = new PinboardEmbed(getRootEl(), {
...defaultViewConfig,
pinboardId,
vizId,
runtimeFilters: [
{
columnName: 'sales',
operator: RuntimeFilterOp.EQ,
values: [1000],
},
],
excludeRuntimeFiltersfromURL: false,
});
pinboardEmbed.render();
await executeAfterWait(() => {
expectUrlMatchesWithParams(getIFrameSrc(), `http://${thoughtSpotHost}/?embedApp=true&col1=sales&op1=EQ&val1=1000${defaultParams}${prefixParamsVizEmbed}#/embed/viz/${pinboardId}/${vizId}`);
});
});
test('should not append runtime filters in URL if excludeRuntimeFiltersfromURL is true', async () => {
const pinboardEmbed = new PinboardEmbed(getRootEl(), {
...defaultViewConfig,
pinboardId,
vizId,
runtimeFilters: [
{
columnName: 'sales',
operator: RuntimeFilterOp.EQ,
values: [1000],
},
],
excludeRuntimeFiltersfromURL: true,
});
pinboardEmbed.render();
await executeAfterWait(() => {
expectUrlMatchesWithParams(getIFrameSrc(), `http://${thoughtSpotHost}/?embedApp=true${defaultParams}${prefixParamsVizEmbed}#/embed/viz/${pinboardId}/${vizId}`);
});
});
test('should append runtime filters in URL if excludeRuntimeFiltersfromURL is undefined', async () => {
const liveboardEmbed = new PinboardEmbed(getRootEl(), {
...defaultViewConfig,
pinboardId,
vizId,
runtimeFilters: [
{
columnName: 'sales',
operator: RuntimeFilterOp.EQ,
values: [1000],
},
],
});
liveboardEmbed.render();
const runtimeFilter = 'col1=sales&op1=EQ&val1=1000';
await executeAfterWait(() => {
expectUrlMatchesWithParams(getIFrameSrc(), `http://${thoughtSpotHost}/?embedApp=true${defaultParams}${prefixParamsVizEmbed}&${runtimeFilter}#/embed/viz/${pinboardId}/${vizId}`);
});
});
test('should register event handler to adjust iframe height', async () => {
const pinboardEmbed = new PinboardEmbed(getRootEl(), {
...defaultViewConfig,
fullHeight: true,
pinboardId,
vizId,
});
const onSpy = jest.spyOn(pinboardEmbed, 'on');
pinboardEmbed.render();
executeAfterWait(() => {
expect(onSpy).toHaveBeenCalledWith(EmbedEvent.EmbedHeight, expect.anything());
});
});
});
//# sourceMappingURL=pinboard.spec.js.map