2015-05-13 23:42:35 +00:00
|
|
|
/*****************************************************************************
|
2018-05-14 22:46:17 +00:00
|
|
|
* Open MCT, Copyright (c) 2014-2018, United States Government
|
2015-05-13 23:42:35 +00:00
|
|
|
* as represented by the Administrator of the National Aeronautics and Space
|
|
|
|
* Administration. All rights reserved.
|
|
|
|
*
|
2016-07-12 23:21:58 +00:00
|
|
|
* Open MCT is licensed under the Apache License, Version 2.0 (the
|
2015-05-13 23:42:35 +00:00
|
|
|
* "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.
|
|
|
|
*
|
2016-07-12 23:21:58 +00:00
|
|
|
* Open MCT includes source code licensed under additional open source
|
2015-05-13 23:42:35 +00:00
|
|
|
* 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.
|
|
|
|
*****************************************************************************/
|
2014-12-03 22:04:44 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* MCTRepresentationSpec. Created by vwoeltje on 11/6/14.
|
|
|
|
*/
|
|
|
|
define(
|
|
|
|
["../../src/creation/LocatorController"],
|
|
|
|
function (LocatorController) {
|
|
|
|
|
|
|
|
describe("The locator controller", function () {
|
2014-12-04 01:59:37 +00:00
|
|
|
var mockScope,
|
2015-09-10 01:17:07 +00:00
|
|
|
mockTimeout,
|
2014-12-04 01:59:37 +00:00
|
|
|
mockDomainObject,
|
|
|
|
mockRootObject,
|
|
|
|
mockContext,
|
2016-01-21 23:59:50 +00:00
|
|
|
mockObjectService,
|
|
|
|
getObjectsPromise,
|
2014-12-04 01:59:37 +00:00
|
|
|
controller;
|
|
|
|
|
|
|
|
beforeEach(function () {
|
|
|
|
mockScope = jasmine.createSpyObj(
|
|
|
|
"$scope",
|
2016-05-19 18:29:13 +00:00
|
|
|
["$watch"]
|
2014-12-04 01:59:37 +00:00
|
|
|
);
|
2015-09-10 01:17:07 +00:00
|
|
|
mockTimeout = jasmine.createSpy("$timeout");
|
2014-12-04 01:59:37 +00:00
|
|
|
mockDomainObject = jasmine.createSpyObj(
|
|
|
|
"domainObject",
|
2016-05-19 18:29:13 +00:00
|
|
|
["getCapability"]
|
2014-12-04 01:59:37 +00:00
|
|
|
);
|
|
|
|
mockRootObject = jasmine.createSpyObj(
|
|
|
|
"rootObject",
|
2016-05-19 18:29:13 +00:00
|
|
|
["getCapability"]
|
2014-12-04 01:59:37 +00:00
|
|
|
);
|
|
|
|
mockContext = jasmine.createSpyObj(
|
|
|
|
"context",
|
2016-05-19 18:29:13 +00:00
|
|
|
["getRoot"]
|
2014-12-04 01:59:37 +00:00
|
|
|
);
|
2016-01-21 23:59:50 +00:00
|
|
|
mockObjectService = jasmine.createSpyObj(
|
|
|
|
"objectService",
|
|
|
|
["getObjects"]
|
|
|
|
);
|
|
|
|
getObjectsPromise = jasmine.createSpyObj(
|
|
|
|
"promise",
|
|
|
|
["then"]
|
|
|
|
);
|
2014-12-04 01:59:37 +00:00
|
|
|
|
2018-06-30 00:32:59 +00:00
|
|
|
mockDomainObject.getCapability.and.returnValue(mockContext);
|
|
|
|
mockContext.getRoot.and.returnValue(mockRootObject);
|
|
|
|
mockObjectService.getObjects.and.returnValue(getObjectsPromise);
|
2014-12-04 01:59:37 +00:00
|
|
|
|
|
|
|
mockScope.ngModel = {};
|
|
|
|
mockScope.field = "someField";
|
|
|
|
|
2016-01-21 23:59:50 +00:00
|
|
|
controller = new LocatorController(mockScope, mockTimeout, mockObjectService);
|
2014-12-04 01:59:37 +00:00
|
|
|
});
|
2016-05-19 18:29:13 +00:00
|
|
|
describe("when context is available", function () {
|
2016-01-21 23:59:50 +00:00
|
|
|
|
2016-05-19 18:29:13 +00:00
|
|
|
beforeEach(function () {
|
2018-08-07 21:47:50 +00:00
|
|
|
mockContext.getRoot.and.returnValue(mockRootObject);
|
|
|
|
controller = new LocatorController(mockScope, mockTimeout, mockObjectService);
|
|
|
|
});
|
2016-01-21 23:59:50 +00:00
|
|
|
|
2016-05-19 18:29:13 +00:00
|
|
|
it("adds a treeModel to scope", function () {
|
2018-08-07 21:47:50 +00:00
|
|
|
expect(mockScope.treeModel).toBeDefined();
|
|
|
|
});
|
2016-01-21 23:59:50 +00:00
|
|
|
|
2016-05-19 18:29:13 +00:00
|
|
|
it("watches for changes to treeModel", function () {
|
2018-08-07 21:47:50 +00:00
|
|
|
// This is what the embedded tree representation
|
|
|
|
// will be modifying.
|
|
|
|
expect(mockScope.$watch).toHaveBeenCalledWith(
|
|
|
|
"treeModel.selectedObject",
|
|
|
|
jasmine.any(Function)
|
|
|
|
);
|
|
|
|
});
|
2016-01-21 23:59:50 +00:00
|
|
|
|
2016-05-19 18:29:13 +00:00
|
|
|
it("changes its own model on embedded model updates", function () {
|
2018-08-07 21:47:50 +00:00
|
|
|
// Need to pass on selection changes as updates to
|
|
|
|
// the control's value
|
|
|
|
mockScope.$watch.calls.mostRecent().args[1](mockDomainObject);
|
|
|
|
mockTimeout.calls.mostRecent().args[0]();
|
|
|
|
expect(mockScope.ngModel.someField).toEqual(mockDomainObject);
|
|
|
|
expect(mockScope.rootObject).toEqual(mockRootObject);
|
|
|
|
|
|
|
|
// Verify that the capability we expect to have been used
|
|
|
|
// was used.
|
|
|
|
expect(mockDomainObject.getCapability)
|
|
|
|
.toHaveBeenCalledWith("context");
|
|
|
|
});
|
2016-01-21 23:59:50 +00:00
|
|
|
|
2016-05-19 18:29:13 +00:00
|
|
|
it("rejects changes which fail validation", function () {
|
2018-08-07 21:47:50 +00:00
|
|
|
mockScope.structure = { validate: jasmine.createSpy('validate') };
|
|
|
|
mockScope.structure.validate.and.returnValue(false);
|
2016-01-21 23:59:50 +00:00
|
|
|
|
2018-08-07 21:47:50 +00:00
|
|
|
// Pass selection change
|
|
|
|
mockScope.$watch.calls.mostRecent().args[1](mockDomainObject);
|
|
|
|
mockTimeout.calls.mostRecent().args[0]();
|
2016-01-21 23:59:50 +00:00
|
|
|
|
2018-08-07 21:47:50 +00:00
|
|
|
expect(mockScope.structure.validate).toHaveBeenCalled();
|
|
|
|
// Change should have been rejected
|
|
|
|
expect(mockScope.ngModel.someField).not.toEqual(mockDomainObject);
|
|
|
|
});
|
2016-01-21 23:59:50 +00:00
|
|
|
|
2016-05-19 18:29:13 +00:00
|
|
|
it("treats a lack of a selection as invalid", function () {
|
2018-08-07 21:47:50 +00:00
|
|
|
mockScope.ngModelController = jasmine.createSpyObj(
|
|
|
|
'ngModelController',
|
|
|
|
['$setValidity']
|
|
|
|
);
|
|
|
|
|
|
|
|
mockScope.$watch.calls.mostRecent().args[1](mockDomainObject);
|
|
|
|
mockTimeout.calls.mostRecent().args[0]();
|
|
|
|
expect(mockScope.ngModelController.$setValidity)
|
|
|
|
.toHaveBeenCalledWith(jasmine.any(String), true);
|
|
|
|
|
|
|
|
mockScope.$watch.calls.mostRecent().args[1](undefined);
|
|
|
|
mockTimeout.calls.mostRecent().args[0]();
|
|
|
|
expect(mockScope.ngModelController.$setValidity)
|
|
|
|
.toHaveBeenCalledWith(jasmine.any(String), false);
|
|
|
|
});
|
2016-05-19 18:29:13 +00:00
|
|
|
});
|
|
|
|
describe("when no context is available", function () {
|
2016-08-19 20:26:11 +00:00
|
|
|
var defaultRoot = "DEFAULT_ROOT";
|
2016-01-21 23:59:50 +00:00
|
|
|
|
2016-08-19 20:26:11 +00:00
|
|
|
beforeEach(function () {
|
2018-06-30 00:32:59 +00:00
|
|
|
mockContext.getRoot.and.returnValue(undefined);
|
|
|
|
getObjectsPromise.then.and.callFake(function (callback) {
|
2016-08-19 20:26:11 +00:00
|
|
|
callback({'ROOT': defaultRoot});
|
2016-01-21 23:59:50 +00:00
|
|
|
});
|
2016-08-19 20:26:11 +00:00
|
|
|
controller = new LocatorController(mockScope, mockTimeout, mockObjectService);
|
|
|
|
});
|
2016-01-21 23:59:50 +00:00
|
|
|
|
2016-08-19 20:26:11 +00:00
|
|
|
it("provides a default context where none is available", function () {
|
2018-06-30 00:32:59 +00:00
|
|
|
mockScope.$watch.calls.mostRecent().args[1](mockDomainObject);
|
|
|
|
mockTimeout.calls.mostRecent().args[0]();
|
2016-08-19 20:26:11 +00:00
|
|
|
expect(mockScope.rootObject).toBe(defaultRoot);
|
|
|
|
});
|
2016-01-21 23:59:50 +00:00
|
|
|
|
2016-08-19 20:26:11 +00:00
|
|
|
it("does not issue redundant requests for the root object", function () {
|
2018-06-30 00:32:59 +00:00
|
|
|
mockScope.$watch.calls.mostRecent().args[1](mockDomainObject);
|
|
|
|
mockTimeout.calls.mostRecent().args[0]();
|
|
|
|
mockScope.$watch.calls.mostRecent().args[1](undefined);
|
|
|
|
mockTimeout.calls.mostRecent().args[0]();
|
|
|
|
mockScope.$watch.calls.mostRecent().args[1](mockDomainObject);
|
|
|
|
mockTimeout.calls.mostRecent().args[0]();
|
|
|
|
expect(mockObjectService.getObjects.calls.count())
|
2016-08-19 20:26:11 +00:00
|
|
|
.toEqual(1);
|
2016-01-21 23:59:50 +00:00
|
|
|
});
|
2016-08-19 20:26:11 +00:00
|
|
|
|
|
|
|
});
|
2014-12-03 22:04:44 +00:00
|
|
|
});
|
|
|
|
}
|
2015-09-10 01:17:07 +00:00
|
|
|
);
|