linkerd2/web/app/js/components/ServiceMesh.test.jsx

211 lines
6.2 KiB
JavaScript

import _cloneDeep from 'lodash/cloneDeep';
import _each from 'lodash/each';
import nsFixtures from '../../test/fixtures/namespaces.json';
import podFixtures from '../../test/fixtures/podRollup.json';
import { routerWrap } from '../../test/testHelpers.jsx';
import ServiceMesh from './ServiceMesh.jsx';
import sinon from 'sinon';
import sinonStubPromise from 'sinon-stub-promise';
import Spinner from './util/Spinner.jsx';
import { mount } from 'enzyme';
sinonStubPromise(sinon);
describe('ServiceMesh', () => {
let component, fetchStub;
// https://material-ui.com/style/typography/#migration-to-typography-v2
window.__MUI_USE_NEXT_TYPOGRAPHY_VARIANTS__ = true;
function withPromise(fn) {
return component.find("ServiceMesh").instance().serverPromise.then(fn);
}
beforeEach(() => {
fetchStub = sinon.stub(window, 'fetch');
});
afterEach(() => {
component = null;
window.fetch.restore();
});
it("displays an error if the api call didn't go well", () => {
let errorMsg = "Something went wrong!";
fetchStub.resolves({
ok: false,
json: () => Promise.resolve({
error: errorMsg
}),
statusText: errorMsg
});
component = mount(routerWrap(ServiceMesh));
return withPromise(() => {
expect(component).toIncludeText(errorMsg);
});
});
it("renders the spinner before metrics are loaded", () => {
component = mount(routerWrap(ServiceMesh));
expect(component.find(Spinner)).toHaveLength(1);
expect(component.find("ServiceMesh")).toHaveLength(1);
expect(component.find("CallToAction")).toHaveLength(0);
});
it("renders a call to action if no metrics are received", () => {
fetchStub.resolves({
ok: true,
json: () => Promise.resolve({ metrics: [] })
});
component = mount(routerWrap(ServiceMesh));
return withPromise(() => {
component.update();
expect(component.find("ServiceMesh")).toHaveLength(1);
expect(component.find(Spinner)).toHaveLength(0);
expect(component.find("CallToAction")).toHaveLength(1);
});
});
it("renders controller component summaries", () => {
fetchStub.resolves({
ok: true,
json: () => Promise.resolve(podFixtures)
});
component = mount(routerWrap(ServiceMesh));
return withPromise(() => {
component.update();
expect(component.find("ServiceMesh")).toHaveLength(1);
expect(component.find(Spinner)).toHaveLength(0);
});
});
it("renders service mesh details section", () => {
fetchStub.resolves({
ok: true,
json: () => Promise.resolve({ metrics: [] })
});
component = mount(routerWrap(ServiceMesh));
return withPromise(() => {
component.update();
expect(component.find("ServiceMesh")).toHaveLength(1);
expect(component.find(Spinner)).toHaveLength(0);
expect(component).toIncludeText("Service mesh details");
expect(component).toIncludeText("ShinyProductName version");
});
});
it("renders control plane section", () => {
fetchStub.resolves({
ok: true,
json: () => Promise.resolve({ metrics: [] })
});
component = mount(routerWrap(ServiceMesh));
return withPromise(() => {
component.update();
expect(component.find("ServiceMesh")).toHaveLength(1);
expect(component.find(Spinner)).toHaveLength(0);
expect(component).toIncludeText("Control plane");
});
});
it("renders data plane section", () => {
fetchStub.resolves({
ok: true,
json: () => Promise.resolve({ metrics: [] })
});
component = mount(routerWrap(ServiceMesh));
return withPromise(() => {
component.update();
expect(component.find("ServiceMesh")).toHaveLength(1);
expect(component.find(Spinner)).toHaveLength(0);
expect(component).toIncludeText("Data plane");
});
});
describe("renderAddDeploymentsMessage", () => {
it("displays when no resources are in the mesh", () => {
fetchStub.resolves({
ok: true,
json: () => Promise.resolve({})
});
component = mount(routerWrap(ServiceMesh));
return withPromise(() => {
expect(component).toIncludeText("No namespaces detected");
});
});
it("displays a message if >1 resource has not been added to the mesh", () => {
let nsAllResourcesAdded = _cloneDeep(nsFixtures);
nsAllResourcesAdded.ok.statTables[0].podGroup.rows.push({
"resource": {
"namespace": "",
"type": "namespace",
"name": "test-1"
},
"timeWindow": "1m",
"meshedPodCount": "0",
"runningPodCount": "5",
"stats": null
});
fetchStub.resolves({
ok: true,
json: () => Promise.resolve(nsAllResourcesAdded)
});
component = mount(routerWrap(ServiceMesh));
return withPromise(() => {
expect(component).toIncludeText("4 namespaces have no meshed resources.");
});
});
it("displays a message if 1 resource has not added to servicemesh", () => {
let nsOneResourceNotAdded = _cloneDeep(nsFixtures);
_each(nsOneResourceNotAdded.ok.statTables[0].podGroup.rows, row => {
// set all namespaces to have fully meshed pod counts, except one
if (row.resource.name !== "default") {
row.meshedPodCount = "10";
row.runningPodCount = "10";
}
});
fetchStub.resolves({
ok: true,
json: () => Promise.resolve(nsOneResourceNotAdded)
});
component = mount(routerWrap(ServiceMesh));
return withPromise(() => {
expect(component).toIncludeText("1 namespace has no meshed resources.");
});
});
it("displays a message if all resources have been added to servicemesh", () => {
let nsAllResourcesAdded = _cloneDeep(nsFixtures);
_each(nsAllResourcesAdded.ok.statTables[0].podGroup.rows, row => {
row.meshedPodCount = "10";
row.runningPodCount = "10";
});
fetchStub.resolves({
ok: true,
json: () => Promise.resolve(nsAllResourcesAdded)
});
component = mount(routerWrap(ServiceMesh));
return withPromise(() => {
expect(component).toIncludeText("All namespaces have a ShinyProductName install.");
});
});
});
});