mirror of
https://github.com/nasa/openmct.git
synced 2024-12-29 17:38:53 +00:00
d7e962e4b1
Update tests for Edit mode bundle to include the general-purpose selection API, WTD-929.
124 lines
4.8 KiB
JavaScript
124 lines
4.8 KiB
JavaScript
/*global define,describe,it,expect,beforeEach,jasmine*/
|
|
|
|
define(
|
|
["../../src/representers/EditToolbarRepresenter"],
|
|
function (EditToolbarRepresenter) {
|
|
"use strict";
|
|
|
|
describe("The Edit mode toolbar representer", function () {
|
|
var mockScope,
|
|
mockElement,
|
|
testAttrs,
|
|
mockUnwatch,
|
|
representer;
|
|
|
|
beforeEach(function () {
|
|
mockScope = jasmine.createSpyObj(
|
|
'$scope',
|
|
[ '$on', '$watch', '$watchCollection', "commit" ]
|
|
);
|
|
mockElement = {};
|
|
testAttrs = { toolbar: 'testToolbar' };
|
|
mockScope.$parent = jasmine.createSpyObj(
|
|
'$parent',
|
|
[ '$watch', '$watchCollection' ]
|
|
);
|
|
mockUnwatch = jasmine.createSpy('unwatch');
|
|
|
|
mockScope.$parent.$watchCollection.andReturn(mockUnwatch);
|
|
|
|
representer = new EditToolbarRepresenter(
|
|
mockScope,
|
|
mockElement,
|
|
testAttrs
|
|
);
|
|
});
|
|
|
|
it("exposes toolbar state under a attr-defined name", function () {
|
|
// A structure/state object should have been added to the
|
|
// parent scope under the name provided in the "toolbar"
|
|
// attribute
|
|
expect(mockScope.$parent.testToolbar).toBeDefined();
|
|
});
|
|
|
|
it("is robust against lack of a toolbar definition", function () {
|
|
expect(function () {
|
|
representer.represent({});
|
|
}).not.toThrow();
|
|
});
|
|
|
|
it("watches for toolbar state changes", function () {
|
|
representer.represent({});
|
|
expect(mockScope.$watchCollection).toHaveBeenCalledWith(
|
|
jasmine.any(Function),
|
|
jasmine.any(Function)
|
|
);
|
|
expect(mockScope.$watchCollection.calls[0].args[0]())
|
|
.toBe(mockScope.$parent.testToolbar.state);
|
|
});
|
|
|
|
it("removes state from parent scope on destroy", function () {
|
|
// Verify precondition
|
|
expect(mockScope.$parent.testToolbar).toBeDefined();
|
|
// Destroy the represeter
|
|
representer.destroy();
|
|
// Should have removed toolbar state from view
|
|
expect(mockScope.$parent.testToolbar).toBeUndefined();
|
|
});
|
|
|
|
// Verify a simple interaction between selection state and toolbar
|
|
// state; more complicated interactions are tested in EditToolbar.
|
|
it("conveys state changes", function () {
|
|
var testObject = { k: 123 };
|
|
|
|
// Provide a view which has a toolbar
|
|
representer.represent({
|
|
toolbar: { sections: [ { items: [ { property: 'k' } ] } ] }
|
|
});
|
|
|
|
// Update the selection
|
|
mockScope.selection.select(testObject);
|
|
expect(mockScope.$watchCollection.mostRecentCall.args[0])
|
|
.toEqual('selection.all()'); // Make sure we're using right watch
|
|
mockScope.$watchCollection.mostRecentCall.args[1]([testObject]);
|
|
|
|
// Update the state
|
|
mockScope.$parent.testToolbar.state[0] = 456;
|
|
// Invoke the first watch (assumed to be for toolbar state)
|
|
mockScope.$watchCollection.calls[0].args[1](
|
|
mockScope.$parent.testToolbar.state
|
|
);
|
|
|
|
// Should have updated the original object
|
|
expect(testObject.k).toEqual(456);
|
|
|
|
// Should have committed the change
|
|
expect(mockScope.commit).toHaveBeenCalled();
|
|
});
|
|
|
|
it("does not commit if nothing changed", function () {
|
|
var testObject = { k: 123 };
|
|
|
|
// Provide a view which has a toolbar
|
|
representer.represent({
|
|
toolbar: { sections: [ { items: [ { property: 'k' } ] } ] }
|
|
});
|
|
|
|
// Update the selection
|
|
mockScope.selection.select(testObject);
|
|
expect(mockScope.$watchCollection.mostRecentCall.args[0])
|
|
.toEqual('selection.all()'); // Make sure we're using right watch
|
|
mockScope.$watchCollection.mostRecentCall.args[1]([testObject]);
|
|
|
|
// Invoke the first watch (assumed to be for toolbar state)
|
|
mockScope.$watchCollection.calls[0].args[1](
|
|
mockScope.$parent.testToolbar.state
|
|
);
|
|
|
|
// Should have committed the change
|
|
expect(mockScope.commit).not.toHaveBeenCalled();
|
|
});
|
|
|
|
});
|
|
}
|
|
); |