| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- /*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing,
- * software distributed under the License is distributed on an
- * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- * KIND, either express or implied. See the License for the
- * specific language governing permissions and limitations
- * under the License.
- */
- import { defineSharedModule, defineSharedModules, reset } from '../../src';
- describe('shared modules', () => {
- afterEach(() => {
- reset();
- });
- it('assigns to window', async () => {
- const fakeModule = { foo: 'bar' };
- const fetchModule = jest.fn().mockResolvedValue(fakeModule);
- await defineSharedModule('test-module', fetchModule);
- expect((window as any)['__superset__/test-module']).toStrictEqual(
- fakeModule,
- );
- });
- it('resolves to the same reference every time', async () => {
- const fakeModule = { foo: 'bar' };
- const fetchModule = jest.fn().mockResolvedValue(fakeModule);
- const result1 = await defineSharedModule('test-module', fetchModule);
- const result2 = await defineSharedModule('test-module', fetchModule);
- expect(result1).toStrictEqual(fakeModule);
- expect(result2).toStrictEqual(fakeModule);
- });
- it('does not redefine unnecessarily', async () => {
- const fakeModule = { foo: 'bar' };
- const fetchModule = jest.fn().mockResolvedValue(fakeModule);
- const duplicateFetchModule = jest.fn().mockResolvedValue(fakeModule);
- const result1 = await defineSharedModule('test-module', fetchModule);
- const result2 = await defineSharedModule(
- 'test-module',
- duplicateFetchModule,
- );
- expect(result1).toStrictEqual(fakeModule);
- expect(result2).toStrictEqual(fakeModule);
- expect(duplicateFetchModule).not.toHaveBeenCalled();
- });
- it('deduplicates in-progress definitions', async () => {
- const fakeModule = { foo: 'bar' };
- // get a promise that actually takes a moment;
- const fetchModule = jest
- .fn()
- .mockImplementation(() =>
- Promise.resolve(setImmediate).then(() => fakeModule),
- );
- const promise1 = defineSharedModule('test-module', fetchModule);
- const promise2 = defineSharedModule('test-module', fetchModule);
- const [result1, result2] = await Promise.all([promise1, promise2]);
- expect(fetchModule).toHaveBeenCalledTimes(1);
- expect(result1).toStrictEqual(result2);
- });
- it('shares a map of modules', async () => {
- const foo = { foo: 'bar' };
- const fizz = { fizz: 'buzz' };
- await defineSharedModules({
- 'module-foo': async () => foo,
- 'module-fizz': async () => fizz,
- });
- expect((window as any)['__superset__/module-foo']).toEqual(foo);
- expect((window as any)['__superset__/module-fizz']).toEqual(fizz);
- });
- });
|