mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
Add basic tests for <DeploymentScaleDialog /> to ensure it initialises/renders without errors
Signed-off-by: Hung-Han (Henry) Chen <chenhungh@gmail.com> Signed-off-by: Hung-Han (Henry) Chen <1474479+chenhunghan@users.noreply.github.com>
This commit is contained in:
parent
9fa858948e
commit
6112c2c68e
@ -0,0 +1,124 @@
|
|||||||
|
import React from 'react';
|
||||||
|
import { render, waitFor } from '@testing-library/react';
|
||||||
|
import '@testing-library/jest-dom/extend-expect'
|
||||||
|
|
||||||
|
import { DeploymentScaleDialog } from "./deployment-scale-dialog";
|
||||||
|
jest.mock("../../api/endpoints");
|
||||||
|
import { deploymentApi } from "../../api/endpoints";
|
||||||
|
|
||||||
|
const dummyDeployment = {
|
||||||
|
apiVersion: 'v1',
|
||||||
|
kind: 'dummy',
|
||||||
|
metadata: {
|
||||||
|
uid: 'dummy',
|
||||||
|
name: 'dummy',
|
||||||
|
creationTimestamp: 'dummy',
|
||||||
|
resourceVersion: 'dummy',
|
||||||
|
selfLink: 'link',
|
||||||
|
},
|
||||||
|
selfLink: 'link',
|
||||||
|
spec: {
|
||||||
|
replicas: 1,
|
||||||
|
selector: { matchLabels: { dummy: 'label' } },
|
||||||
|
template: {
|
||||||
|
metadata: {
|
||||||
|
labels: { dummy: 'label' },
|
||||||
|
},
|
||||||
|
spec: {
|
||||||
|
containers: [{
|
||||||
|
name: 'dummy',
|
||||||
|
image: 'dummy',
|
||||||
|
resources: {
|
||||||
|
requests: {
|
||||||
|
cpu: '1',
|
||||||
|
memory: '10Mi',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
terminationMessagePath: 'dummy',
|
||||||
|
terminationMessagePolicy: 'dummy',
|
||||||
|
imagePullPolicy: 'dummy',
|
||||||
|
}],
|
||||||
|
restartPolicy: 'dummy',
|
||||||
|
terminationGracePeriodSeconds: 10,
|
||||||
|
dnsPolicy: 'dummy',
|
||||||
|
serviceAccountName: 'dummy',
|
||||||
|
serviceAccount: 'dummy',
|
||||||
|
securityContext: {},
|
||||||
|
schedulerName: 'dummy',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
strategy: {
|
||||||
|
type: 'dummy',
|
||||||
|
rollingUpdate: {
|
||||||
|
maxUnavailable: 1,
|
||||||
|
maxSurge: 10,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
status: {
|
||||||
|
observedGeneration: 1,
|
||||||
|
replicas: 1,
|
||||||
|
updatedReplicas: 1,
|
||||||
|
readyReplicas: 1,
|
||||||
|
conditions: [{
|
||||||
|
type: 'dummy',
|
||||||
|
status: 'dummy',
|
||||||
|
lastUpdateTime: 'dummy',
|
||||||
|
lastTransitionTime: 'dummy',
|
||||||
|
reason: 'dummy',
|
||||||
|
message: 'dummy',
|
||||||
|
}],
|
||||||
|
},
|
||||||
|
getConditions: jest.fn(),
|
||||||
|
getConditionsText: jest.fn(),
|
||||||
|
getReplicas: jest.fn(),
|
||||||
|
getSelectors: jest.fn(),
|
||||||
|
getTemplateLabels: jest.fn(),
|
||||||
|
getAffinity: jest.fn(),
|
||||||
|
getTolerations: jest.fn(),
|
||||||
|
getNodeSelectors: jest.fn(),
|
||||||
|
getAffinityNumber: jest.fn(),
|
||||||
|
getId: jest.fn(),
|
||||||
|
getResourceVersion: jest.fn(),
|
||||||
|
getName: jest.fn(),
|
||||||
|
getNs: jest.fn(),
|
||||||
|
getAge: jest.fn(),
|
||||||
|
getFinalizers: jest.fn(),
|
||||||
|
getLabels: jest.fn(),
|
||||||
|
getAnnotations: jest.fn(),
|
||||||
|
getOwnerRefs: jest.fn(),
|
||||||
|
getSearchFields: jest.fn(),
|
||||||
|
toPlainObject: jest.fn(),
|
||||||
|
update: jest.fn(),
|
||||||
|
delete: jest.fn(),
|
||||||
|
}
|
||||||
|
|
||||||
|
describe('<DeploymentScaleDialog />', () => {
|
||||||
|
|
||||||
|
it('renders w/o errors', () => {
|
||||||
|
const { container } = render(<DeploymentScaleDialog />);
|
||||||
|
expect(container).toBeInstanceOf(HTMLElement);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('inits with a dummy deployment with mocked current/desired scale', async () => {
|
||||||
|
// mock deploymentApi.getReplicas() which will be called
|
||||||
|
// when <DeploymentScaleDialog /> rendered.
|
||||||
|
const initReplicas = 3
|
||||||
|
deploymentApi.getReplicas = jest.fn().mockImplementationOnce(async () => initReplicas);
|
||||||
|
const { getByTestId } = render(<DeploymentScaleDialog />);
|
||||||
|
DeploymentScaleDialog.open(dummyDeployment);
|
||||||
|
let currentScale, desiredScale
|
||||||
|
// we need to wait for the DeploymentScaleDialog to show up
|
||||||
|
// because there is an <Animate /> in <Dialog /> which renders null at start.
|
||||||
|
await waitFor(async () =>
|
||||||
|
[currentScale, desiredScale] = await Promise.all([
|
||||||
|
getByTestId('current-scale'),
|
||||||
|
getByTestId('desired-scale'),
|
||||||
|
])
|
||||||
|
);
|
||||||
|
expect(currentScale).toHaveTextContent(`${initReplicas}`);
|
||||||
|
expect(desiredScale).toHaveTextContent(`${initReplicas}`);
|
||||||
|
});
|
||||||
|
|
||||||
|
});
|
||||||
|
|
||||||
@ -88,11 +88,11 @@ export class DeploymentScaleDialog extends Component<Props> {
|
|||||||
const warning = currentReplicas < 10 && desiredReplicas > 90;
|
const warning = currentReplicas < 10 && desiredReplicas > 90;
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<div className="current-scale">
|
<div className="current-scale" data-testid="current-scale">
|
||||||
<Trans>Current replica scale: {currentReplicas}</Trans>
|
<Trans>Current replica scale: {currentReplicas}</Trans>
|
||||||
</div>
|
</div>
|
||||||
<div className="flex gaps align-center">
|
<div className="flex gaps align-center">
|
||||||
<div className="desired-scale">
|
<div className="desired-scale" data-testid="desired-scale">
|
||||||
<Trans>Desired number of replicas</Trans>: {desiredReplicas}
|
<Trans>Desired number of replicas</Trans>: {desiredReplicas}
|
||||||
</div>
|
</div>
|
||||||
<div className="slider-container">
|
<div className="slider-container">
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user