mirror of
https://github.com/apache/superset.git
synced 2026-04-22 17:45:21 +00:00
175 lines
5.1 KiB
TypeScript
175 lines
5.1 KiB
TypeScript
/**
|
|
* 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 { render, userEvent, waitFor } from 'spec/helpers/testing-library';
|
|
import { initialState } from 'src/SqlLab/fixtures';
|
|
import useStoredSidebarWidth from 'src/components/ResizableSidebar/useStoredSidebarWidth';
|
|
import type { contributions, core } from '@apache-superset/core';
|
|
import ExtensionsManager from 'src/extensions/ExtensionsManager';
|
|
import { ViewContribution } from 'src/SqlLab/contributions';
|
|
import AppLayout from './index';
|
|
|
|
jest.mock('src/components/ResizableSidebar/useStoredSidebarWidth');
|
|
jest.mock('src/components/Splitter', () => {
|
|
const Splitter = ({
|
|
onResizeEnd,
|
|
children,
|
|
}: {
|
|
onResizeEnd: (sizes: number[]) => void;
|
|
children: React.ReactNode;
|
|
}) => (
|
|
<div>
|
|
{children}
|
|
<button type="button" onClick={() => onResizeEnd([500])}>
|
|
Resize
|
|
</button>
|
|
<button type="button" onClick={() => onResizeEnd([0])}>
|
|
Resize to zero
|
|
</button>
|
|
</div>
|
|
);
|
|
// eslint-disable-next-line react/display-name
|
|
Splitter.Panel = ({ children }: { children: React.ReactNode }) => (
|
|
<div data-test="mock-panel">{children}</div>
|
|
);
|
|
return { Splitter };
|
|
});
|
|
jest.mock('@superset-ui/core/components/Grid', () => ({
|
|
...jest.requireActual('@superset-ui/core/components/Grid'),
|
|
useBreakpoint: jest.fn().mockReturnValue(true),
|
|
}));
|
|
|
|
const defaultProps = {
|
|
children: <div>Child</div>,
|
|
};
|
|
|
|
function createMockView(
|
|
id: string,
|
|
overrides: Partial<contributions.ViewContribution> = {},
|
|
): contributions.ViewContribution {
|
|
return {
|
|
id,
|
|
name: `${id} View`,
|
|
...overrides,
|
|
};
|
|
}
|
|
|
|
function setupActivatedExtension(
|
|
manager: ExtensionsManager,
|
|
extension: core.Extension,
|
|
) {
|
|
const context = { disposables: [] };
|
|
(manager as any).contextIndex.set(extension.id, context);
|
|
(manager as any).extensionContributions.set(extension.id, {
|
|
commands: extension.contributions.commands,
|
|
menus: extension.contributions.menus,
|
|
views: extension.contributions.views,
|
|
});
|
|
}
|
|
|
|
async function createActivatedExtension(
|
|
manager: ExtensionsManager,
|
|
extensionOptions: Partial<core.Extension> = {},
|
|
): Promise<core.Extension> {
|
|
const mockExtension: core.Extension = {
|
|
id: 'test-extension',
|
|
name: 'Test Extension',
|
|
description: 'A test extension',
|
|
version: '1.0.0',
|
|
dependencies: [],
|
|
remoteEntry: '',
|
|
exposedModules: [],
|
|
extensionDependencies: [],
|
|
contributions: {
|
|
commands: [],
|
|
menus: {},
|
|
views: {},
|
|
},
|
|
activate: jest.fn(),
|
|
deactivate: jest.fn(),
|
|
...extensionOptions,
|
|
};
|
|
|
|
await manager.initializeExtension(mockExtension);
|
|
setupActivatedExtension(manager, mockExtension);
|
|
|
|
return mockExtension;
|
|
}
|
|
|
|
beforeEach(() => {
|
|
jest.clearAllMocks();
|
|
(useStoredSidebarWidth as jest.Mock).mockReturnValue([250, jest.fn()]);
|
|
(ExtensionsManager as any).instance = undefined;
|
|
});
|
|
|
|
test('renders two panels', () => {
|
|
const { getAllByTestId } = render(<AppLayout {...defaultProps} />, {
|
|
useRedux: true,
|
|
initialState,
|
|
});
|
|
expect(getAllByTestId('mock-panel')).toHaveLength(2);
|
|
});
|
|
|
|
test('renders children', () => {
|
|
const { getByText } = render(<AppLayout {...defaultProps} />, {
|
|
useRedux: true,
|
|
initialState,
|
|
});
|
|
expect(getByText('Child')).toBeInTheDocument();
|
|
});
|
|
|
|
test('calls setWidth on sidebar resize when not hidden', async () => {
|
|
const setWidth = jest.fn();
|
|
(useStoredSidebarWidth as jest.Mock).mockReturnValue([250, setWidth]);
|
|
const { getByRole } = render(<AppLayout {...defaultProps} />, {
|
|
useRedux: true,
|
|
initialState,
|
|
});
|
|
|
|
// toggle sidebar to show
|
|
await userEvent.click(getByRole('button', { name: 'Resize' }));
|
|
// set different width
|
|
await userEvent.click(getByRole('button', { name: 'Resize' }));
|
|
await waitFor(() => expect(setWidth).toHaveBeenCalled());
|
|
});
|
|
|
|
test('renders right sidebar when RIGHT_SIDEBAR_VIEW_ID view is contributed', async () => {
|
|
const manager = ExtensionsManager.getInstance();
|
|
const viewId = 'test-right-sidebar-view';
|
|
await createActivatedExtension(manager, {
|
|
contributions: {
|
|
commands: [],
|
|
menus: {},
|
|
views: {
|
|
[ViewContribution.RightSidebar]: [createMockView(viewId)],
|
|
},
|
|
},
|
|
});
|
|
|
|
const { getByText, getAllByTestId } = render(
|
|
<AppLayout {...defaultProps} />,
|
|
{
|
|
useRedux: true,
|
|
initialState,
|
|
},
|
|
);
|
|
|
|
expect(getByText('Child')).toBeInTheDocument();
|
|
expect(getAllByTestId('mock-panel')).toHaveLength(3);
|
|
});
|