67 lines
1.8 KiB
JavaScript
67 lines
1.8 KiB
JavaScript
import { _CollapsibleSection as CollapsibleSection } from "content-src/components/CollapsibleSection/CollapsibleSection";
|
|
import { ErrorBoundary } from "content-src/components/ErrorBoundary/ErrorBoundary";
|
|
import { mount } from "enzyme";
|
|
import React from "react";
|
|
|
|
const DEFAULT_PROPS = {
|
|
id: "cool",
|
|
className: "cool-section",
|
|
title: "Cool Section",
|
|
prefName: "collapseSection",
|
|
collapsed: false,
|
|
eventSource: "foo",
|
|
document: {
|
|
addEventListener: () => {},
|
|
removeEventListener: () => {},
|
|
visibilityState: "visible",
|
|
},
|
|
dispatch: () => {},
|
|
Prefs: { values: { featureConfig: {} } },
|
|
};
|
|
|
|
describe("CollapsibleSection", () => {
|
|
let wrapper;
|
|
|
|
function testSetup(props = {}) {
|
|
const customProps = Object.assign({}, DEFAULT_PROPS, props);
|
|
wrapper = mount(
|
|
<CollapsibleSection {...customProps}>foo</CollapsibleSection>
|
|
);
|
|
}
|
|
|
|
beforeEach(() => testSetup());
|
|
|
|
it("should render the component", () => {
|
|
assert.ok(wrapper.exists());
|
|
});
|
|
|
|
it("should render an ErrorBoundary with class section-body-fallback", () => {
|
|
assert.equal(
|
|
wrapper.find(ErrorBoundary).first().prop("className"),
|
|
"section-body-fallback"
|
|
);
|
|
});
|
|
|
|
describe("without collapsible pref", () => {
|
|
let dispatch;
|
|
beforeEach(() => {
|
|
dispatch = sinon.stub();
|
|
testSetup({ collapsed: undefined, dispatch });
|
|
});
|
|
it("should render the section uncollapsed", () => {
|
|
assert.isFalse(
|
|
wrapper.find(".collapsible-section").first().hasClass("collapsed")
|
|
);
|
|
});
|
|
|
|
it("should not render the arrow if no collapsible pref exists for the section", () => {
|
|
assert.lengthOf(wrapper.find(".click-target .collapsible-arrow"), 0);
|
|
});
|
|
});
|
|
|
|
describe("icon", () => {
|
|
it("no icon should be shown", () => {
|
|
assert.lengthOf(wrapper.find(".icon"), 0);
|
|
});
|
|
});
|
|
});
|