2014-12-12 17:44:05 +00:00
|
|
|
/*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* MergeModelsSpec. Created by vwoeltje on 11/6/14.
|
|
|
|
*/
|
|
|
|
define(
|
|
|
|
["../src/SubPlot"],
|
|
|
|
function (SubPlot) {
|
|
|
|
"use strict";
|
|
|
|
|
|
|
|
describe("A sub-plot", function () {
|
2014-12-12 21:20:50 +00:00
|
|
|
var mockDomainObject,
|
|
|
|
mockPanZoomStack,
|
2014-12-24 20:13:57 +00:00
|
|
|
mockFormatter,
|
2014-12-12 21:20:50 +00:00
|
|
|
mockElement,
|
|
|
|
testDomainObjects,
|
|
|
|
testOrigin,
|
|
|
|
testDimensions,
|
|
|
|
subplot;
|
2014-12-12 17:49:44 +00:00
|
|
|
|
2014-12-12 21:20:50 +00:00
|
|
|
beforeEach(function () {
|
|
|
|
mockDomainObject = jasmine.createSpyObj(
|
|
|
|
"domainObject",
|
|
|
|
[ "getId", "getModel", "getCapability" ]
|
|
|
|
);
|
|
|
|
mockPanZoomStack = jasmine.createSpyObj(
|
|
|
|
"panZoomStack",
|
|
|
|
[
|
|
|
|
"getDepth",
|
|
|
|
"pushPanZoom",
|
|
|
|
"popPanZoom",
|
|
|
|
"setBasePanZoom",
|
|
|
|
"clearPanZoom",
|
|
|
|
"getPanZoom",
|
|
|
|
"getOrigin",
|
|
|
|
"getDimensions"
|
|
|
|
]
|
|
|
|
);
|
2014-12-24 20:13:57 +00:00
|
|
|
mockFormatter = jasmine.createSpyObj(
|
|
|
|
"formatter",
|
|
|
|
[ "formatDomainValue", "formatRangeValue" ]
|
|
|
|
);
|
2014-12-12 21:20:50 +00:00
|
|
|
mockElement = jasmine.createSpyObj(
|
|
|
|
"element",
|
|
|
|
[ "getBoundingClientRect" ]
|
|
|
|
);
|
2014-12-12 17:49:44 +00:00
|
|
|
|
2014-12-12 21:20:50 +00:00
|
|
|
testOrigin = [ 5, 10 ];
|
|
|
|
testDimensions = [ 3000, 1000 ];
|
|
|
|
testDomainObjects = [ mockDomainObject, mockDomainObject ];
|
|
|
|
|
|
|
|
mockPanZoomStack.getOrigin.andReturn(testOrigin);
|
|
|
|
mockPanZoomStack.getDimensions.andReturn(testDimensions);
|
|
|
|
mockPanZoomStack.getPanZoom.andReturn(
|
|
|
|
{ origin: testOrigin, dimensions: testDimensions }
|
|
|
|
);
|
|
|
|
mockElement.getBoundingClientRect.andReturn(
|
|
|
|
{ left: 10, top: 20, width: 100, height: 100 }
|
|
|
|
);
|
|
|
|
|
|
|
|
subplot = new SubPlot(
|
|
|
|
testDomainObjects,
|
2014-12-24 20:13:57 +00:00
|
|
|
mockPanZoomStack,
|
|
|
|
mockFormatter
|
2014-12-12 21:20:50 +00:00
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
it("provides a getter for its plotted objects", function () {
|
|
|
|
expect(subplot.getTelemetryObjects())
|
|
|
|
.toEqual(testDomainObjects);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("exposes tick marks", function () {
|
|
|
|
// Just test availability; details are tested
|
|
|
|
// in PlotTickFormatter
|
|
|
|
expect(Array.isArray(subplot.getDomainTicks()))
|
|
|
|
.toBeTruthy();
|
|
|
|
expect(Array.isArray(subplot.getRangeTicks()))
|
|
|
|
.toBeTruthy();
|
|
|
|
});
|
|
|
|
|
|
|
|
it("allows hovering state to be tracked", function () {
|
|
|
|
expect(subplot.isHovering()).toBeFalsy();
|
|
|
|
expect(subplot.isHovering(true)).toBeTruthy();
|
|
|
|
expect(subplot.isHovering()).toBeTruthy();
|
|
|
|
expect(subplot.isHovering(false)).toBeFalsy();
|
|
|
|
expect(subplot.isHovering()).toBeFalsy();
|
|
|
|
});
|
|
|
|
|
|
|
|
it("provides hovering coordinates", function () {
|
|
|
|
// Should be empty when not hovering
|
2014-12-12 23:03:47 +00:00
|
|
|
expect(subplot.getHoverCoordinates())
|
|
|
|
.toBeUndefined();
|
2014-12-12 21:20:50 +00:00
|
|
|
|
|
|
|
// Start hovering
|
|
|
|
subplot.hover({ target: mockElement });
|
|
|
|
|
|
|
|
// Should now have coordinates to display
|
2014-12-12 23:03:47 +00:00
|
|
|
expect(subplot.getHoverCoordinates())
|
|
|
|
.toEqual(jasmine.any(String));
|
2014-12-12 17:49:44 +00:00
|
|
|
});
|
|
|
|
|
2014-12-12 21:20:50 +00:00
|
|
|
it("supports marquee zoom", function () {
|
|
|
|
expect(mockPanZoomStack.pushPanZoom).not.toHaveBeenCalled();
|
|
|
|
|
|
|
|
// Simulate a marquee zoom. Note that the mockElement
|
|
|
|
// is 100 by 100 and starts at 10,20
|
|
|
|
subplot.startMarquee({
|
|
|
|
target: mockElement,
|
|
|
|
clientX: 60,
|
|
|
|
clientY: 45
|
|
|
|
});
|
|
|
|
subplot.hover({
|
|
|
|
target: mockElement,
|
|
|
|
clientX: 75,
|
|
|
|
clientY: 85
|
|
|
|
});
|
|
|
|
subplot.endMarquee({
|
|
|
|
target: mockElement,
|
|
|
|
clientX: 80,
|
|
|
|
clientY: 95
|
|
|
|
});
|
|
|
|
// ... so the origin should be 50%,25% into current dimensions,
|
|
|
|
// and new dimensions should be 20%,50% thereof
|
|
|
|
|
|
|
|
expect(mockPanZoomStack.pushPanZoom).toHaveBeenCalledWith(
|
|
|
|
[
|
|
|
|
testOrigin[0] + testDimensions[0] * 0.50,
|
|
|
|
testOrigin[1] + testDimensions[1] * 0.25
|
|
|
|
],
|
|
|
|
[
|
|
|
|
testDimensions[0] * 0.20,
|
|
|
|
testDimensions[1] * 0.50
|
|
|
|
]
|
|
|
|
);
|
|
|
|
});
|
2015-02-02 23:44:24 +00:00
|
|
|
|
2015-03-12 21:50:44 +00:00
|
|
|
it("disallows marquee zoom when start and end Marquee is at the same position", function () {
|
|
|
|
expect(mockPanZoomStack.pushPanZoom).not.toHaveBeenCalled();
|
|
|
|
|
|
|
|
// Simulate a marquee zoom. Note that the mockElement
|
|
|
|
// is 100 by 100 and starts at 10,20
|
|
|
|
subplot.startMarquee({
|
|
|
|
target: mockElement,
|
|
|
|
clientX: 60,
|
|
|
|
clientY: 45
|
|
|
|
});
|
|
|
|
subplot.hover({
|
|
|
|
target: mockElement,
|
|
|
|
clientX: 75,
|
|
|
|
clientY: 85
|
|
|
|
});
|
|
|
|
subplot.endMarquee({
|
|
|
|
target: mockElement,
|
|
|
|
clientX: 60,
|
|
|
|
clientY: 45
|
|
|
|
});
|
|
|
|
|
|
|
|
expect(mockPanZoomStack.pushPanZoom).not.toHaveBeenCalled();
|
|
|
|
});
|
|
|
|
|
2015-02-02 23:44:24 +00:00
|
|
|
it("provides access to a drawable object", function () {
|
|
|
|
expect(typeof subplot.getDrawingObject()).toEqual('object');
|
|
|
|
});
|
|
|
|
|
|
|
|
it("allows a domain offset to be provided", function () {
|
|
|
|
// Domain object is needed to adjust canvas coordinates
|
|
|
|
// to avoid loss-of-precision associated with converting
|
|
|
|
// to 32 bit floats.
|
|
|
|
subplot.setDomainOffset(3);
|
|
|
|
subplot.update();
|
|
|
|
// Should have adjusted the origin accordingly
|
|
|
|
expect(subplot.getDrawingObject().origin[0])
|
|
|
|
.toEqual(2);
|
|
|
|
});
|
|
|
|
|
2014-12-12 17:44:05 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
);
|