optimizely-oui
Version:
Optimizely's Component Library.
85 lines (80 loc) • 4.13 kB
JavaScript
;
var _react = _interopRequireDefault(require("react"));
var _index = _interopRequireDefault(require("../index"));
var _enzyme = require("enzyme");
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
describe("components/Popover", function () {
it("should render text passed in as children", function () {
var message = "Hello! This is a short popover.";
var component = (0, _enzyme.shallow)(_react["default"].createElement(_index["default"], null, message));
expect(component.text()).toBe(message);
});
it("should render title when provided", function () {
var title = "123456";
var component = (0, _enzyme.shallow)(_react["default"].createElement(_index["default"], {
title: title
}, "Heyo!"));
expect(component.text()).toContain(title);
});
it("has `oui-pop--over` class applied", function () {
var component = (0, _enzyme.shallow)(_react["default"].createElement(_index["default"], null, "Heyo!"));
expect(component.hasClass("oui-pop--over")).toBe(true);
});
it("should overwrite SCSS to display by default", function () {
var component = (0, _enzyme.render)(_react["default"].createElement(_index["default"], null, "Heyo!"));
expect(component.attr("style")).toContain("display:block");
expect(component.attr("style")).toContain("opacity:1");
expect(component.attr("style")).toContain("position:initial");
});
it("should have a properly set test section", function () {
var component = (0, _enzyme.shallow)(_react["default"].createElement(_index["default"], {
testSection: "foo"
}, "Heyo!"));
expect(component.is('[data-test-section="foo"]')).toBe(true);
});
it('should not modify classes when "default" is provided for padding prop', function () {
var component = (0, _enzyme.shallow)(_react["default"].createElement(_index["default"], {
padding: "default"
}, "Heyo!"));
var popOverContainerClassName = component.find("div.oui-pop--over__content").get(0).props.className;
expect(popOverContainerClassName).toBe("oui-pop--over__content");
});
it("should not modify classes when nothing is provided for padding prop", function () {
var component = (0, _enzyme.shallow)(_react["default"].createElement(_index["default"], null, "Heyo!"));
var popOverContainerClassName = component.find("div.oui-pop--over__content").get(0).props.className;
expect(popOverContainerClassName).toBe("oui-pop--over__content");
});
it("should not modify classes when an invalid class is provided for padding prop", function () {
var component = (0, _enzyme.shallow)(_react["default"].createElement(_index["default"], {
padding: "foobar"
}, "Heyo!"));
var popOverContainerClassName = component.find("div.oui-pop--over__content").get(0).props.className;
expect(popOverContainerClassName).toBe("oui-pop--over__content");
});
it("should modify classes when a valid class is provided for padding prop", function () {
var component = (0, _enzyme.shallow)(_react["default"].createElement(_index["default"], {
padding: "hard"
}, "Heyo!"));
var popOverContainerClassName = component.find("div.oui-pop--over__content").get(0).props.className;
expect(popOverContainerClassName).toContain("hard");
});
describe("when given a className", function () {
it("appends it to the root element", function () {
var component = (0, _enzyme.shallow)(_react["default"].createElement(_index["default"], {
className: "extra-class"
}, "Text"));
expect(component.prop("className").includes("extra-class")).toBe(true);
});
});
describe("when given an unknown prop", function () {
it("passes it to the root element", function () {
// @ts-ignore: `unknownProps` is not part of any typed interface and therefore a good test value.
var component = (0, _enzyme.shallow)(_react["default"].createElement(_index["default"], {
unknownProp: "some value"
}, "Text"));
expect(component).toHaveProp({
unknownProp: "some value"
});
});
});
});