[Layout] Fill in non-layout specs

Complete specs for scripts introduced in support of
Layout objects/views. WTD-535.
This commit is contained in:
Victor Woeltjen
2014-12-05 16:27:32 -08:00
parent d3f0505385
commit ecb4283df0
4 changed files with 261 additions and 34 deletions

View File

@@ -5,17 +5,15 @@ define(
function () {
"use strict";
function EditRepresenter($q, scope, element, attrs) {
function EditRepresenter($q, scope) {
var watches = [],
domainObject,
key;
function doPersist(model) {
return $q.when(function () {
return domainObject.useCapability("mutation", function () {
return model;
});
}).then(function (result) {
return $q.when(domainObject.useCapability("mutation", function () {
return model;
})).then(function (result) {
return result &&
domainObject.getCapability("persistence").persist();
});
@@ -23,12 +21,13 @@ define(
function update() {
var model = scope.model,
configuration = scope.configuration,
key = scope.key;
configuration = scope.configuration;
if (domainObject && domainObject.hasCapability("persistence")) {
model.configuration = model.configuration || {};
model.configuration[key] = configuration;
if (key && configuration) {
model.configuration = model.configuration || {};
model.configuration[key] = configuration;
}
doPersist(model);
}
}

View File

@@ -6,6 +6,91 @@ define(
"use strict";
describe("The Edit mode representer", function () {
var mockQ,
mockScope,
testRepresentation,
mockDomainObject,
mockPersistence,
representer;
function mockPromise(value) {
return {
then: function (callback) {
return mockPromise(callback(value));
}
};
}
beforeEach(function () {
mockQ = { when: mockPromise };
mockScope = jasmine.createSpyObj("$scope", ["$watch"]);
testRepresentation = { key: "test" };
mockDomainObject = jasmine.createSpyObj("domainObject", [
"getId",
"getModel",
"getCapability",
"useCapability",
"hasCapability"
]);
mockPersistence =
jasmine.createSpyObj("persistence", ["persist"]);
mockDomainObject.hasCapability.andReturn(true);
mockDomainObject.useCapability.andReturn(true);
mockDomainObject.getCapability.andReturn(mockPersistence);
representer = new EditRepresenter(mockQ, mockScope);
representer.represent(testRepresentation, mockDomainObject);
});
it("watches for changes in view configuration", function () {
// Should watch the configuration field,
// provided by mct-representation
expect(mockScope.$watch).toHaveBeenCalledWith(
"configuration",
jasmine.any(Function),
true // should be a deep watch
);
});
it("watches for changes in domain object model", function () {
// Should watch the model field,
// provided by mct-representation
expect(mockScope.$watch).toHaveBeenCalledWith(
"model",
jasmine.any(Function),
true // should be a deep watch
);
});
it("mutates and persists upon observed changes", function () {
mockScope.model = { someKey: "some value" };
mockScope.configuration = { someConfiguration: "something" };
mockScope.$watch.mostRecentCall.args[1].call();
// Should have mutated the object...
expect(mockDomainObject.useCapability).toHaveBeenCalledWith(
"mutation",
jasmine.any(Function)
);
// ... and should have persisted the mutation
expect(mockPersistence.persist).toHaveBeenCalled();
// Finally, check that the provided mutation function
// includes both model and configuratioon
expect(
mockDomainObject.useCapability.mostRecentCall.args[1]()
).toEqual({
someKey: "some value",
configuration: {
test: { someConfiguration: "something" }
}
});
});
});
}
);