mirror of https://github.com/linkerd/linkerd2.git
35 lines
1.2 KiB
JavaScript
35 lines
1.2 KiB
JavaScript
import Adapter from 'enzyme-adapter-react-16';
|
|
import { ApiHelpers } from '../js/components/util/ApiHelpers.jsx';
|
|
import Enzyme from 'enzyme';
|
|
import { expect } from 'chai';
|
|
import GrafanaLink from '../js/components/GrafanaLink.jsx';
|
|
import { mount } from 'enzyme';
|
|
import { routerWrap } from './testHelpers.jsx';
|
|
import sinon from 'sinon';
|
|
import sinonStubPromise from 'sinon-stub-promise';
|
|
|
|
Enzyme.configure({ adapter: new Adapter() });
|
|
sinonStubPromise(sinon);
|
|
|
|
describe('GrafanaLink', () => {
|
|
it('makes a link', () => {
|
|
let api = ApiHelpers('');
|
|
let linkProps = {
|
|
resource: "Replication Controller",
|
|
name: "aldksf-3409823049823",
|
|
namespace: "myns",
|
|
conduitLink: api.ConduitLink
|
|
};
|
|
let component = mount(routerWrap(GrafanaLink, linkProps));
|
|
|
|
let expectedDashboardNameStr = "/conduit-replication-controller";
|
|
let expectedNsStr = "var-namespace=myns";
|
|
let expectedVarNameStr = "var-replication_controller=aldksf-3409823049823";
|
|
|
|
expect(component.find("GrafanaLink")).to.have.length(1);
|
|
expect(component.html()).to.contain(expectedDashboardNameStr);
|
|
expect(component.html()).to.contain(expectedNsStr);
|
|
expect(component.html()).to.contain(expectedVarNameStr);
|
|
});
|
|
});
|