Chart.js/test/specs/element.rectangle.tests.js

68 lines
1.4 KiB
JavaScript
Raw Normal View History

2015-08-29 14:53:42 +02:00
// Test the rectangle element
describe('Rectangle element tests', function() {
it('Should correctly identify as in range', function() {
2015-08-29 14:53:42 +02:00
var rectangle = new Chart.elements.Rectangle({
base: 0,
width: 4,
x: 10,
y: 15
});
2015-08-29 14:53:42 +02:00
expect(rectangle.inRange(10, 15)).toBe(true);
expect(rectangle.inRange(10, 10)).toBe(true);
expect(rectangle.inRange(10, 16)).toBe(false);
expect(rectangle.inRange(5, 5)).toBe(false);
// Test when the y is below the base (negative bar)
var negativeRectangle = new Chart.elements.Rectangle({
base: 0,
width: 4,
x: 10,
y: -15
});
2015-08-29 14:53:42 +02:00
expect(negativeRectangle.inRange(10, -16)).toBe(false);
expect(negativeRectangle.inRange(10, 1)).toBe(false);
expect(negativeRectangle.inRange(10, -5)).toBe(true);
});
it('should get the correct tooltip position', function() {
2015-08-29 14:53:42 +02:00
var rectangle = new Chart.elements.Rectangle({
base: 0,
width: 4,
x: 10,
y: 15
});
2015-08-29 14:53:42 +02:00
expect(rectangle.tooltipPosition()).toEqual({
x: 10,
2015-12-23 18:00:56 +01:00
y: 15,
2015-08-29 14:53:42 +02:00
});
// Test when the y is below the base (negative bar)
var negativeRectangle = new Chart.elements.Rectangle({
base: -10,
width: 4,
x: 10,
y: -15
});
2015-08-29 14:53:42 +02:00
expect(negativeRectangle.tooltipPosition()).toEqual({
x: 10,
y: -15,
});
});
it('should get the center', function() {
var rectangle = new Chart.elements.Rectangle({
base: 0,
width: 4,
x: 10,
y: 15
});
expect(rectangle.getCenterPoint()).toEqual({x: 10, y: 7.5});
});
});