mirror of https://github.com/masayuki0812/c3.git
Quite good looking graph derived from d3.js
http://c3js.org
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
119 lines
4.0 KiB
119 lines
4.0 KiB
8 years ago
|
var expect = require('chai').expect;
|
||
|
|
||
|
describe('c3 chart interaction', function () {
|
||
|
|
||
|
|
||
|
var chart, args;
|
||
|
|
||
|
beforeEach(function (done) {
|
||
|
chart = window.initChart(chart, args, done);
|
||
|
});
|
||
|
|
||
|
describe('generate event rects', function () {
|
||
|
|
||
|
describe('custom x', function () {
|
||
|
|
||
|
it('should generate bar chart', function () {
|
||
|
args = {
|
||
|
data: {
|
||
|
x: 'x',
|
||
|
columns: [
|
||
|
['x', 0, 1000, 3000, 10000],
|
||
|
['data', 10, 10, 10, 10]
|
||
|
],
|
||
|
type: 'bar'
|
||
|
}
|
||
|
};
|
||
|
expect(true).to.be.ok;
|
||
|
});
|
||
|
|
||
|
it('should have 4 event rects properly', function () {
|
||
|
var lefts = [78, 138, 205.5, 407.5],
|
||
|
widths = [60, 67.5, 202, 194];
|
||
|
d3.selectAll('.c3-event-rect').each(function (d, i) {
|
||
|
var box = d3.select(this).node().getBoundingClientRect();
|
||
|
expect(box.left).to.be.closeTo(lefts[i], -2);
|
||
|
expect(box.width).to.be.closeTo(widths[i], -2);
|
||
|
});
|
||
|
});
|
||
|
|
||
|
it('should generate bar chart with only one data', function () {
|
||
|
args = {
|
||
|
data: {
|
||
|
x: 'x',
|
||
|
columns: [
|
||
|
['x', 0],
|
||
|
['data', 10]
|
||
|
],
|
||
|
type: 'bar'
|
||
|
}
|
||
|
};
|
||
|
expect(true).to.be.ok;
|
||
|
});
|
||
|
|
||
|
it('should have 1 event rects properly', function () {
|
||
|
var eventRects = d3.selectAll('.c3-event-rect');
|
||
|
expect(eventRects.size()).to.equal(1);
|
||
|
eventRects.each(function () {
|
||
|
var box = d3.select(this).node().getBoundingClientRect();
|
||
|
expect(box.left).to.be.closeTo(40.5, -2);
|
||
|
expect(box.width).to.be.closeTo(598, -2);
|
||
|
});
|
||
|
});
|
||
|
});
|
||
|
|
||
|
describe('timeseries', function () {
|
||
|
|
||
|
it('should generate line chart with timeseries', function () {
|
||
|
args = {
|
||
|
data: {
|
||
|
x: 'x',
|
||
|
columns: [
|
||
|
['x', '20140101', '20140201', '20140210', '20140301'],
|
||
|
['data', 10, 10, 10, 10]
|
||
|
]
|
||
|
}
|
||
|
};
|
||
|
expect(true).to.be.ok;
|
||
|
});
|
||
|
|
||
|
it('should have 4 event rects properly', function () {
|
||
|
var lefts = [43.5, 193, 353, 500],
|
||
|
widths = [149.5, 160, 147, 136];
|
||
|
d3.selectAll('.c3-event-rect').each(function (d, i) {
|
||
|
var box = d3.select(this).node().getBoundingClientRect();
|
||
|
expect(box.left).to.be.closeTo(lefts[i], -2);
|
||
|
expect(box.width).to.be.closeTo(widths[i], -2);
|
||
|
});
|
||
|
|
||
|
});
|
||
|
|
||
|
it('should generate line chart with only 1 data timeseries', function () {
|
||
|
args = {
|
||
|
data: {
|
||
|
x: 'x',
|
||
|
columns: [
|
||
|
['x', '20140101'],
|
||
|
['data', 10]
|
||
|
]
|
||
|
}
|
||
|
};
|
||
|
expect(true).to.be.ok;
|
||
|
});
|
||
|
|
||
|
it('should have 1 event rects properly', function () {
|
||
|
var eventRects = d3.selectAll('.c3-event-rect');
|
||
|
expect(eventRects.size()).to.equal(1);
|
||
|
eventRects.each(function () {
|
||
|
var box = d3.select(this).node().getBoundingClientRect();
|
||
|
expect(box.left).to.be.closeTo(40.5, -2);
|
||
|
expect(box.width).to.be.closeTo(598, -2);
|
||
|
});
|
||
|
});
|
||
|
|
||
|
});
|
||
|
|
||
|
});
|
||
|
|
||
|
});
|