mirror of
https://github.com/nasa/openmct.git
synced 2024-12-22 06:27:48 +00:00
db57444738
Update existing specs for code coverage after changes for WTD-962, composition policy.
100 lines
3.7 KiB
JavaScript
100 lines
3.7 KiB
JavaScript
/*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 () {
|
|
var mockScope,
|
|
mockDomainObject,
|
|
mockRootObject,
|
|
mockContext,
|
|
controller;
|
|
|
|
beforeEach(function () {
|
|
mockScope = jasmine.createSpyObj(
|
|
"$scope",
|
|
[ "$watch" ]
|
|
);
|
|
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";
|
|
|
|
controller = new LocatorController(mockScope);
|
|
});
|
|
|
|
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);
|
|
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");
|
|
});
|
|
|
|
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);
|
|
|
|
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);
|
|
expect(mockScope.ngModelController.$setValidity)
|
|
.toHaveBeenCalledWith(jasmine.any(String), true);
|
|
|
|
mockScope.$watch.mostRecentCall.args[1](undefined);
|
|
expect(mockScope.ngModelController.$setValidity)
|
|
.toHaveBeenCalledWith(jasmine.any(String), false);
|
|
});
|
|
|
|
});
|
|
}
|
|
); |