Skip to content
Snippets Groups Projects
Unverified Commit 7ad5df82 authored by Tom Robinson's avatar Tom Robinson Committed by GitHub
Browse files

Merge pull request #9722 from metabase/issue-9636

Add tests for Visualization colors
parents d65919b6 e9e7aa2d
No related branches found
No related tags found
No related merge requests found
......@@ -200,3 +200,15 @@ export function getFormattedTooltips(hover) {
}
return data.map(d => formatValue(d.value, { column: d.col }));
}
export function createFixture() {
document.body.insertAdjacentHTML(
"afterbegin",
'<div id="fixture" style="height: 800px; width: 1200px;">',
);
return document.getElementById("fixture");
}
export function cleanupFixture(element) {
element.parentNode.removeChild(element);
}
......@@ -5,6 +5,8 @@ import {
StringColumn,
dispatchUIEvent,
renderLineAreaBar,
createFixture,
cleanupFixture,
} from "../__support__/visualizations";
const DEFAULT_SETTINGS = {
......@@ -62,15 +64,11 @@ describe("LineAreaBarRenderer-bar", () => {
const qsa = selector => [...element.querySelectorAll(selector)];
beforeEach(function() {
document.body.insertAdjacentHTML(
"afterbegin",
'<div id="fixture" style="height: 800px; width: 1200px;">',
);
element = document.getElementById("fixture");
element = createFixture();
});
afterEach(function() {
document.body.removeChild(document.getElementById("fixture"));
cleanupFixture(element);
});
it(`should render an bar chart with 1 series`, () => {
......
......@@ -5,6 +5,8 @@ import {
dispatchUIEvent,
renderLineAreaBar,
getFormattedTooltips,
createFixture,
cleanupFixture,
} from "../__support__/visualizations";
const DEFAULT_SETTINGS = {
......@@ -24,15 +26,11 @@ describe("LineAreaBarRenderer-scatter", () => {
];
beforeEach(function() {
document.body.insertAdjacentHTML(
"afterbegin",
'<div id="fixture" style="height: 800px; width: 1200px;">',
);
element = document.getElementById("fixture");
element = createFixture();
});
afterEach(function() {
document.body.removeChild(document.getElementById("fixture"));
cleanupFixture(element);
});
it("should render a scatter chart with 2 dimensions", () => {
......
import React from "react";
import ReactDOM from "react-dom";
import {
NumberColumn,
StringColumn,
createFixture,
cleanupFixture,
} from "../__support__/visualizations";
import colors from "metabase/lib/colors";
import Visualization from "metabase/visualizations/components/Visualization";
describe("Visualization", () => {
// eslint-disable-next-line no-unused-vars
let element, viz;
const qs = s => element.querySelector(s);
const qsa = s => [...element.querySelectorAll(s)];
const renderViz = series => {
ReactDOM.render(
<Visualization ref={ref => (viz = ref)} rawSeries={series} />,
element,
);
};
beforeEach(() => {
element = createFixture();
});
afterEach(() => {
ReactDOM.unmountComponentAtNode(element);
cleanupFixture(element);
});
describe("scalar", () => {
it("should render", () => {
renderViz([
{
card: { display: "scalar" },
data: { rows: [[1]], cols: [NumberColumn({ name: "Count" })] },
},
]);
expect(qs("h1").textContent).toEqual("1");
});
});
describe("bar", () => {
const getBarColors = () => qsa(".bar").map(bar => bar.getAttribute("fill"));
describe("single series", () => {
it("should have correct colors", () => {
renderViz([
{
card: { name: "Card", display: "bar" },
data: {
cols: [
StringColumn({ name: "Dimension" }),
NumberColumn({ name: "Count" }),
],
rows: [["foo", 1], ["bar", 2]],
},
},
]);
expect(getBarColors()).toEqual([
colors.brand, // "count"
colors.brand, // "count"
]);
});
});
describe("multiseries: multiple metrics", () => {
it("should have correct colors", () => {
renderViz([
{
card: { name: "Card", display: "bar" },
data: {
cols: [
StringColumn({ name: "Dimension" }),
NumberColumn({ name: "Count" }),
NumberColumn({ name: "Sum" }),
],
rows: [["foo", 1, 3], ["bar", 2, 4]],
},
},
]);
expect(getBarColors()).toEqual([
colors.brand, // "count"
colors.brand, // "count"
colors.accent1, // "sum"
colors.accent1, // "sum"
]);
});
});
describe("multiseries: multiple breakouts", () => {
it("should have correct colors", () => {
renderViz([
{
card: { name: "Card", display: "bar" },
data: {
cols: [
StringColumn({ name: "Dimension1" }),
StringColumn({ name: "Dimension2" }),
NumberColumn({ name: "Count" }),
],
rows: [
["foo", "a", 1],
["bar", "a", 2],
["foo", "b", 1],
["bar", "b", 2],
],
},
},
]);
expect(getBarColors()).toEqual([
colors.accent1, // "a"
colors.accent1, // "a"
colors.accent2, // "b"
colors.accent2, // "b"
]);
});
});
describe("multiseries: dashcard", () => {
it("should have correct colors", () => {
renderViz([
{
card: { name: "Card1", display: "bar" },
data: {
cols: [
StringColumn({ name: "Dimension" }),
NumberColumn({ name: "Count" }),
],
rows: [["foo", 1], ["bar", 2]],
},
},
{
card: { name: "Card2", display: "bar" },
data: {
cols: [
StringColumn({ name: "Dimension" }),
NumberColumn({ name: "Count" }),
],
rows: [["foo", 3], ["bar", 4]],
},
},
]);
expect(getBarColors()).toEqual([
colors.brand, // "count"
colors.brand, // "count"
colors.accent2, // "Card2"
colors.accent2, // "Card2"
]);
});
});
});
});
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment