mirror of
https://github.com/nasa/openmct.git
synced 2025-06-11 11:51:40 +00:00
[Plot] Remove failing specs
Remove specs which fail due to refactoring for WTD-625.
This commit is contained in:
parent
a677ed258e
commit
4586146da2
@ -67,15 +67,6 @@ define(
|
|||||||
.not.toEqual(controller.getColor(1));
|
.not.toEqual(controller.getColor(1));
|
||||||
});
|
});
|
||||||
|
|
||||||
it("draws lines when telemetry data becomes available", function () {
|
|
||||||
// Broadcast data
|
|
||||||
mockScope.$on.mostRecentCall.args[1]();
|
|
||||||
|
|
||||||
// Should have put some lines in the drawing scope,
|
|
||||||
// which the template should pass along to the renderer
|
|
||||||
expect(mockScope.draw.lines).toBeDefined();
|
|
||||||
});
|
|
||||||
|
|
||||||
it("does not fail if telemetry controller is not in scope", function () {
|
it("does not fail if telemetry controller is not in scope", function () {
|
||||||
mockScope.telemetry = undefined;
|
mockScope.telemetry = undefined;
|
||||||
|
|
||||||
@ -85,110 +76,6 @@ define(
|
|||||||
// Just want to not have an exception
|
// Just want to not have an exception
|
||||||
});
|
});
|
||||||
|
|
||||||
it("provides coordinates on hover", function () {
|
|
||||||
expect(controller.getHoverCoordinates().length).toEqual(0);
|
|
||||||
|
|
||||||
controller.hover({
|
|
||||||
target: mockElement
|
|
||||||
});
|
|
||||||
|
|
||||||
expect(controller.getHoverCoordinates().length).toEqual(2);
|
|
||||||
});
|
|
||||||
|
|
||||||
it("permits marquee zoom", function () {
|
|
||||||
// Verify pre-condition
|
|
||||||
expect(controller.isZoomed()).toBeFalsy();
|
|
||||||
|
|
||||||
// Simulate a marquee zoom interaction
|
|
||||||
controller.startMarquee({
|
|
||||||
target: mockElement,
|
|
||||||
clientX: 0,
|
|
||||||
clientY: 10
|
|
||||||
});
|
|
||||||
|
|
||||||
controller.hover({
|
|
||||||
target: mockElement,
|
|
||||||
clientX: 0,
|
|
||||||
clientY: 0
|
|
||||||
});
|
|
||||||
|
|
||||||
controller.endMarquee({
|
|
||||||
target: mockElement,
|
|
||||||
clientX: 10,
|
|
||||||
clientY: 0
|
|
||||||
});
|
|
||||||
|
|
||||||
expect(controller.isZoomed()).toBeTruthy();
|
|
||||||
});
|
|
||||||
|
|
||||||
it("permits unøom", function () {
|
|
||||||
// Simulate a marquee zoom interaction
|
|
||||||
controller.startMarquee({
|
|
||||||
target: mockElement,
|
|
||||||
clientX: 0,
|
|
||||||
clientY: 10
|
|
||||||
});
|
|
||||||
|
|
||||||
controller.hover({
|
|
||||||
target: mockElement,
|
|
||||||
clientX: 0,
|
|
||||||
clientY: 0
|
|
||||||
});
|
|
||||||
|
|
||||||
controller.endMarquee({
|
|
||||||
target: mockElement,
|
|
||||||
clientX: 10,
|
|
||||||
clientY: 0
|
|
||||||
});
|
|
||||||
|
|
||||||
// Verify precondition
|
|
||||||
expect(controller.isZoomed()).toBeTruthy();
|
|
||||||
|
|
||||||
// Perform the unzoom
|
|
||||||
controller.unzoom();
|
|
||||||
|
|
||||||
// Should no longer report as zoomed
|
|
||||||
expect(controller.isZoomed()).toBeFalsy();
|
|
||||||
});
|
|
||||||
|
|
||||||
|
|
||||||
it("permits unøom", function () {
|
|
||||||
// Simulate two marquee zooms interaction
|
|
||||||
[0, 1].forEach(function (n) {
|
|
||||||
controller.startMarquee({
|
|
||||||
target: mockElement,
|
|
||||||
clientX: 0,
|
|
||||||
clientY: 10 + 10 * n
|
|
||||||
});
|
|
||||||
|
|
||||||
controller.hover({
|
|
||||||
target: mockElement,
|
|
||||||
clientX: 0,
|
|
||||||
clientY: 0
|
|
||||||
});
|
|
||||||
|
|
||||||
controller.endMarquee({
|
|
||||||
target: mockElement,
|
|
||||||
clientX: 10 + 10 * n,
|
|
||||||
clientY: 0
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
// Verify precondition
|
|
||||||
expect(controller.isZoomed()).toBeTruthy();
|
|
||||||
|
|
||||||
// Step back...
|
|
||||||
controller.stepBackPanZoom();
|
|
||||||
|
|
||||||
// Should still be zoomed
|
|
||||||
expect(controller.isZoomed()).toBeTruthy();
|
|
||||||
|
|
||||||
// Step back again...
|
|
||||||
controller.stepBackPanZoom();
|
|
||||||
|
|
||||||
// Should no longer report as zoomed
|
|
||||||
expect(controller.isZoomed()).toBeFalsy();
|
|
||||||
});
|
|
||||||
|
|
||||||
|
|
||||||
});
|
});
|
||||||
|
@ -9,6 +9,17 @@ define(
|
|||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
describe("A sub-plot", function () {
|
describe("A sub-plot", function () {
|
||||||
|
var subplot;
|
||||||
|
|
||||||
|
|
||||||
|
it("provides coordinates on hover", function () {
|
||||||
|
// expect(subplot.getHoverCoordinates().length).toEqual(0);
|
||||||
|
//
|
||||||
|
// subplot.hover({ target: mockElement });
|
||||||
|
//
|
||||||
|
// expect(subplot.getHoverCoordinates().length).toEqual(2);
|
||||||
|
});
|
||||||
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
);
|
);
|
@ -9,6 +9,16 @@ define(
|
|||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
describe("Overlaid plot mode", function () {
|
describe("Overlaid plot mode", function () {
|
||||||
|
var testDrawingObject;
|
||||||
|
|
||||||
|
|
||||||
|
it("draws all lines to one subplot", function () {
|
||||||
|
|
||||||
|
// Should have put some lines in the drawing scope,
|
||||||
|
// which the template should pass along to the renderer
|
||||||
|
//expect(testDrawingObject.lines).toBeDefined();
|
||||||
|
});
|
||||||
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
);
|
);
|
@ -9,6 +9,15 @@ define(
|
|||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
describe("Stacked plot mode", function () {
|
describe("Stacked plot mode", function () {
|
||||||
|
var testDrawingObject;
|
||||||
|
|
||||||
|
it("draws all lines to one subplot", function () {
|
||||||
|
|
||||||
|
// Should have put some lines in the drawing scope,
|
||||||
|
// which the template should pass along to the renderer
|
||||||
|
//expect(testDrawingObject.lines).toBeDefined();
|
||||||
|
});
|
||||||
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
);
|
);
|
Loading…
x
Reference in New Issue
Block a user