chore: Moves spec files to the src folder - iteration 5 (#16927)

This commit is contained in:
Michael S. Molina 2021-10-01 11:24:41 -03:00 committed by GitHub
parent 87baac7650
commit 90f711f45c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
11 changed files with 22 additions and 58 deletions

View File

@ -1,42 +0,0 @@
/**
* 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 React from 'react';
import { render, screen } from 'spec/helpers/testing-library';
import CachedLabel, { CacheLabelProps } from 'src/components/CachedLabel';
const defaultProps = {
onClick: () => {},
cachedTimestamp: '2017-01-01',
};
const setup = (props: CacheLabelProps) => <CachedLabel {...props} />;
describe('CachedLabel', () => {
it('is valid', () => {
expect(React.isValidElement(<CachedLabel {...defaultProps} />)).toBe(true);
});
it('renders', () => {
render(setup(defaultProps));
const label = screen.getByText(/cached/i);
expect(label).toBeVisible();
});
});

View File

@ -19,21 +19,24 @@
import React from 'react';
import { render, screen } from 'spec/helpers/testing-library';
import moment from 'moment';
import { TooltipContent } from './TooltipContent';
import CachedLabel, { CacheLabelProps } from '.';
test('Rendering TooltipContent correctly - no timestamp', () => {
render(<TooltipContent />);
expect(screen.getByTestId('tooltip-content')?.textContent).toBe(
'Loaded from cache. Click to force-refresh',
);
});
const defaultProps = {
onClick: () => {},
cachedTimestamp: '2017-01-01',
};
test('Rendering TooltipContent correctly - with timestamp', () => {
render(<TooltipContent cachedTimestamp="01-01-2000" />);
expect(screen.getByTestId('tooltip-content')?.textContent).toBe(
`Loaded data cached ${moment
.utc('01-01-2000')
.fromNow()}. Click to force-refresh`,
);
const setup = (props: CacheLabelProps) => <CachedLabel {...props} />;
describe('CachedLabel', () => {
it('is valid', () => {
expect(React.isValidElement(<CachedLabel {...defaultProps} />)).toBe(true);
});
it('renders', () => {
render(setup(defaultProps));
const label = screen.getByText(/cached/i);
expect(label).toBeVisible();
});
});

View File

@ -24,7 +24,10 @@ import userEvent from '@testing-library/user-event';
import DatasourcePanel, {
Props as DatasourcePanelProps,
} from 'src/explore/components/DatasourcePanel';
import { columns, metrics } from 'spec/javascripts/datasource/fixtures';
import {
columns,
metrics,
} from 'src/explore/components/DatasourcePanel/fixtures';
import { DatasourceType } from '@superset-ui/core/lib/query/types/Datasource';
import DatasourceControl from 'src/explore/components/controls/DatasourceControl';