2015-05-13 23:42:35 +00:00
|
|
|
/*****************************************************************************
|
|
|
|
* Open MCT Web, Copyright (c) 2014-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.
|
|
|
|
*****************************************************************************/
|
2014-12-03 22:04:44 +00:00
|
|
|
/*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* MCTRepresentationSpec. Created by vwoeltje on 11/6/14.
|
|
|
|
*/
|
|
|
|
define(
|
|
|
|
["../../src/creation/LocatorController"],
|
|
|
|
function (LocatorController) {
|
|
|
|
"use strict";
|
|
|
|
|
|
|
|
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,
|
|
|
|
controller;
|
|
|
|
|
|
|
|
beforeEach(function () {
|
|
|
|
mockScope = jasmine.createSpyObj(
|
|
|
|
"$scope",
|
|
|
|
[ "$watch" ]
|
|
|
|
);
|
2015-09-10 01:17:07 +00:00
|
|
|
mockTimeout = jasmine.createSpy("$timeout");
|
2014-12-04 01:59:37 +00:00
|
|
|
mockDomainObject = jasmine.createSpyObj(
|
|
|
|
"domainObject",
|
|
|
|
[ "getCapability" ]
|
|
|
|
);
|
|
|
|
mockRootObject = jasmine.createSpyObj(
|
|
|
|
"rootObject",
|
|
|
|
[ "getCapability" ]
|
|
|
|
);
|
|
|
|
mockContext = jasmine.createSpyObj(
|
|
|
|
"context",
|
|
|
|
[ "getRoot" ]
|
|
|
|
);
|
|
|
|
|
|
|
|
mockDomainObject.getCapability.andReturn(mockContext);
|
|
|
|
mockContext.getRoot.andReturn(mockRootObject);
|
|
|
|
|
|
|
|
mockScope.ngModel = {};
|
|
|
|
mockScope.field = "someField";
|
|
|
|
|
2015-09-10 01:17:07 +00:00
|
|
|
controller = new LocatorController(mockScope, mockTimeout);
|
2014-12-04 01:59:37 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
it("adds a treeModel to scope", function () {
|
|
|
|
expect(mockScope.treeModel).toBeDefined();
|
|
|
|
});
|
|
|
|
|
|
|
|
it("watches for changes to treeModel", function () {
|
|
|
|
// This is what the embedded tree representation
|
|
|
|
// will be modifying.
|
|
|
|
expect(mockScope.$watch).toHaveBeenCalledWith(
|
|
|
|
"treeModel.selectedObject",
|
|
|
|
jasmine.any(Function)
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("changes its own model on embedded model updates", function () {
|
|
|
|
// Need to pass on selection changes as updates to
|
|
|
|
// the control's value
|
|
|
|
mockScope.$watch.mostRecentCall.args[1](mockDomainObject);
|
2015-09-10 01:17:07 +00:00
|
|
|
mockTimeout.mostRecentCall.args[0]();
|
2014-12-04 01:59:37 +00:00
|
|
|
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");
|
|
|
|
});
|
2014-12-03 22:04:44 +00:00
|
|
|
|
2015-04-11 01:00:13 +00:00
|
|
|
it("rejects changes which fail validation", function () {
|
|
|
|
mockScope.structure = { validate: jasmine.createSpy('validate') };
|
|
|
|
mockScope.structure.validate.andReturn(false);
|
|
|
|
|
|
|
|
// Pass selection change
|
|
|
|
mockScope.$watch.mostRecentCall.args[1](mockDomainObject);
|
2015-09-10 01:17:07 +00:00
|
|
|
mockTimeout.mostRecentCall.args[0]();
|
2015-04-11 01:00:13 +00:00
|
|
|
|
|
|
|
expect(mockScope.structure.validate).toHaveBeenCalled();
|
|
|
|
// Change should have been rejected
|
|
|
|
expect(mockScope.ngModel.someField).not.toEqual(mockDomainObject);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("treats a lack of a selection as invalid", function () {
|
|
|
|
mockScope.ngModelController = jasmine.createSpyObj(
|
|
|
|
'ngModelController',
|
|
|
|
[ '$setValidity' ]
|
|
|
|
);
|
|
|
|
|
|
|
|
mockScope.$watch.mostRecentCall.args[1](mockDomainObject);
|
2015-09-10 01:17:07 +00:00
|
|
|
mockTimeout.mostRecentCall.args[0]();
|
2015-04-11 01:00:13 +00:00
|
|
|
expect(mockScope.ngModelController.$setValidity)
|
|
|
|
.toHaveBeenCalledWith(jasmine.any(String), true);
|
|
|
|
|
|
|
|
mockScope.$watch.mostRecentCall.args[1](undefined);
|
2015-09-10 01:17:07 +00:00
|
|
|
mockTimeout.mostRecentCall.args[0]();
|
2015-04-11 01:00:13 +00:00
|
|
|
expect(mockScope.ngModelController.$setValidity)
|
|
|
|
.toHaveBeenCalledWith(jasmine.any(String), false);
|
|
|
|
});
|
|
|
|
|
2014-12-03 22:04:44 +00:00
|
|
|
});
|
|
|
|
}
|
2015-09-10 01:17:07 +00:00
|
|
|
);
|