2015-11-05 20:45:51 +00:00
|
|
|
/*****************************************************************************
|
|
|
|
* Open MCT Web, Copyright (c) 2009-2015, United States Government
|
|
|
|
* as represented by the Administrator of the National Aeronautics and Space
|
|
|
|
* Administration. All rights reserved.
|
|
|
|
*
|
|
|
|
* Open MCT Web is licensed under the Apache License, Version 2.0 (the
|
|
|
|
* "License"); you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0.
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
* License for the specific language governing permissions and limitations
|
|
|
|
* under the License.
|
|
|
|
*
|
|
|
|
* Open MCT Web includes source code licensed under additional open source
|
|
|
|
* licenses. See the Open Source Licenses file (LICENSES.md) included with
|
|
|
|
* this source code distribution or the Licensing information page available
|
|
|
|
* at runtime from the About dialog for additional information.
|
|
|
|
*****************************************************************************/
|
2015-09-14 23:45:38 +00:00
|
|
|
|
|
|
|
define(
|
2015-10-23 21:06:55 +00:00
|
|
|
['../../src/directives/MCTSwimlaneDrop'],
|
|
|
|
function (MCTSwimlaneDrop) {
|
2015-09-14 23:45:38 +00:00
|
|
|
|
|
|
|
var TEST_HEIGHT = 100,
|
|
|
|
TEST_TOP = 600;
|
|
|
|
|
2015-10-23 21:06:55 +00:00
|
|
|
describe("The mct-swimlane-drop directive", function () {
|
2015-09-14 23:45:38 +00:00
|
|
|
var mockDndService,
|
|
|
|
mockScope,
|
|
|
|
mockElement,
|
|
|
|
testAttrs,
|
|
|
|
mockSwimlane,
|
|
|
|
testEvent,
|
|
|
|
handlers,
|
|
|
|
directive;
|
|
|
|
|
|
|
|
function getterSetter(value) {
|
|
|
|
return function (newValue) {
|
|
|
|
return (value = (arguments.length > 0) ? newValue : value);
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
beforeEach(function () {
|
|
|
|
var scopeExprs = {};
|
|
|
|
|
|
|
|
handlers = {};
|
|
|
|
|
|
|
|
mockDndService = jasmine.createSpyObj(
|
|
|
|
'dndService',
|
|
|
|
['setData', 'getData', 'removeData']
|
|
|
|
);
|
2016-03-22 00:28:42 +00:00
|
|
|
mockScope = jasmine.createSpyObj('$scope', ['$eval', '$apply']);
|
2015-09-14 23:45:38 +00:00
|
|
|
mockElement = jasmine.createSpyObj('element', ['on']);
|
2015-10-23 21:06:55 +00:00
|
|
|
testAttrs = { mctSwimlaneDrop: "mockSwimlane" };
|
2015-09-14 23:45:38 +00:00
|
|
|
mockSwimlane = jasmine.createSpyObj(
|
|
|
|
"swimlane",
|
2016-05-19 18:29:13 +00:00
|
|
|
["allowDropIn", "allowDropAfter", "drop", "highlight", "highlightBottom"]
|
2015-09-14 23:45:38 +00:00
|
|
|
);
|
|
|
|
mockElement[0] = jasmine.createSpyObj(
|
|
|
|
"realElement",
|
2016-05-19 18:29:13 +00:00
|
|
|
["getBoundingClientRect"]
|
2015-09-14 23:45:38 +00:00
|
|
|
);
|
|
|
|
mockElement[0].offsetHeight = TEST_HEIGHT;
|
|
|
|
mockElement[0].getBoundingClientRect.andReturn({ top: TEST_TOP });
|
|
|
|
|
|
|
|
// Simulate evaluation of expressions in scope
|
|
|
|
scopeExprs.mockSwimlane = mockSwimlane;
|
|
|
|
mockScope.$eval.andCallFake(function (expr) {
|
|
|
|
return scopeExprs[expr];
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
mockSwimlane.allowDropIn.andReturn(true);
|
|
|
|
mockSwimlane.allowDropAfter.andReturn(true);
|
|
|
|
// Simulate getter-setter behavior
|
|
|
|
mockSwimlane.highlight.andCallFake(getterSetter(false));
|
|
|
|
mockSwimlane.highlightBottom.andCallFake(getterSetter(false));
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
testEvent = {
|
|
|
|
pageY: TEST_TOP + TEST_HEIGHT / 10,
|
|
|
|
dataTransfer: { getData: jasmine.createSpy() },
|
2016-02-11 00:34:00 +00:00
|
|
|
preventDefault: jasmine.createSpy(),
|
|
|
|
stopPropagation: jasmine.createSpy()
|
2015-09-14 23:45:38 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
testEvent.dataTransfer.getData.andReturn('abc');
|
|
|
|
mockDndService.getData.andReturn({ domainObject: 'someDomainObject' });
|
|
|
|
|
2015-10-23 21:06:55 +00:00
|
|
|
directive = new MCTSwimlaneDrop(mockDndService);
|
2015-09-14 23:45:38 +00:00
|
|
|
|
|
|
|
// Run the link function, then capture the event handlers
|
|
|
|
// for testing.
|
|
|
|
directive.link(mockScope, mockElement, testAttrs);
|
|
|
|
|
|
|
|
mockElement.on.calls.forEach(function (call) {
|
|
|
|
handlers[call.args[0]] = call.args[1];
|
|
|
|
});
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
it("is available as an attribute", function () {
|
|
|
|
expect(directive.restrict).toEqual("A");
|
|
|
|
});
|
|
|
|
|
|
|
|
it("updates highlights on drag over", function () {
|
|
|
|
// Near the top
|
|
|
|
testEvent.pageY = TEST_TOP + TEST_HEIGHT / 10;
|
|
|
|
|
|
|
|
handlers.dragover(testEvent);
|
|
|
|
|
|
|
|
expect(mockSwimlane.highlight).toHaveBeenCalledWith(true);
|
|
|
|
expect(mockSwimlane.highlightBottom).toHaveBeenCalledWith(false);
|
2016-03-22 00:28:42 +00:00
|
|
|
expect(mockScope.$apply).toHaveBeenCalled();
|
2015-09-14 23:45:38 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
it("updates bottom highlights on drag over", function () {
|
|
|
|
// Near the bottom
|
|
|
|
testEvent.pageY = TEST_TOP + TEST_HEIGHT - TEST_HEIGHT / 10;
|
|
|
|
|
|
|
|
handlers.dragover(testEvent);
|
|
|
|
|
|
|
|
expect(mockSwimlane.highlight).toHaveBeenCalledWith(false);
|
|
|
|
expect(mockSwimlane.highlightBottom).toHaveBeenCalledWith(true);
|
2016-03-22 00:28:42 +00:00
|
|
|
expect(mockScope.$apply).toHaveBeenCalled();
|
2015-09-14 23:45:38 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
it("respects swimlane's allowDropIn response", function () {
|
|
|
|
// Near the top
|
|
|
|
testEvent.pageY = TEST_TOP + TEST_HEIGHT / 10;
|
|
|
|
|
|
|
|
mockSwimlane.allowDropIn.andReturn(false);
|
|
|
|
|
|
|
|
handlers.dragover(testEvent);
|
|
|
|
|
|
|
|
expect(mockSwimlane.highlight).toHaveBeenCalledWith(false);
|
|
|
|
expect(mockSwimlane.highlightBottom).toHaveBeenCalledWith(false);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("respects swimlane's allowDropAfter response", function () {
|
|
|
|
// Near the top
|
|
|
|
testEvent.pageY = TEST_TOP + TEST_HEIGHT - TEST_HEIGHT / 10;
|
|
|
|
|
|
|
|
mockSwimlane.allowDropAfter.andReturn(false);
|
|
|
|
|
|
|
|
handlers.dragover(testEvent);
|
|
|
|
|
|
|
|
expect(mockSwimlane.highlight).toHaveBeenCalledWith(false);
|
|
|
|
expect(mockSwimlane.highlightBottom).toHaveBeenCalledWith(false);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("notifies swimlane on drop", function () {
|
|
|
|
handlers.drop(testEvent);
|
|
|
|
expect(mockSwimlane.drop).toHaveBeenCalledWith('abc', 'someDomainObject');
|
2016-03-22 00:28:42 +00:00
|
|
|
expect(mockScope.$apply).toHaveBeenCalled();
|
2015-09-14 23:45:38 +00:00
|
|
|
});
|
|
|
|
|
2016-03-31 17:34:24 +00:00
|
|
|
it("invokes preventDefault on drop", function () {
|
|
|
|
handlers.drop(testEvent);
|
|
|
|
expect(testEvent.preventDefault).toHaveBeenCalled();
|
2015-09-14 23:45:38 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
it("clears highlights when drag leaves", function () {
|
2016-03-22 00:28:42 +00:00
|
|
|
mockSwimlane.highlight.andReturn(true);
|
2015-09-14 23:45:38 +00:00
|
|
|
handlers.dragleave();
|
|
|
|
expect(mockSwimlane.highlight).toHaveBeenCalledWith(false);
|
|
|
|
expect(mockSwimlane.highlightBottom).toHaveBeenCalledWith(false);
|
2016-03-22 00:28:42 +00:00
|
|
|
expect(mockScope.$apply).toHaveBeenCalled();
|
2015-09-14 23:45:38 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
2015-10-23 21:06:55 +00:00
|
|
|
);
|