2014-12-03 01:26:16 +00:00
|
|
|
/*global define,Promise,describe,it,expect,beforeEach,waitsFor,jasmine*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* DomainObjectProviderSpec. Created by vwoeltje on 11/6/14.
|
|
|
|
*/
|
|
|
|
define(
|
|
|
|
["../src/CouchDocument"],
|
|
|
|
function (CouchDocument) {
|
|
|
|
"use strict";
|
|
|
|
|
2014-12-03 16:59:40 +00:00
|
|
|
// JSLint doesn't like dangling _'s, but CouchDB uses these, so
|
|
|
|
// hide this behind variables.
|
|
|
|
var REV = "_rev",
|
|
|
|
ID = "_id",
|
|
|
|
DELETED = "_deleted";
|
|
|
|
|
2014-12-03 01:26:16 +00:00
|
|
|
describe("A couch document", function () {
|
2014-12-03 01:31:30 +00:00
|
|
|
it("includes an id", function () {
|
2014-12-03 16:59:40 +00:00
|
|
|
expect(new CouchDocument("testId", {})[ID])
|
2014-12-03 01:31:30 +00:00
|
|
|
.toEqual("testId");
|
|
|
|
});
|
2014-12-03 01:26:16 +00:00
|
|
|
|
2014-12-03 01:31:30 +00:00
|
|
|
it("includes a rev only when one is provided", function () {
|
2014-12-03 16:59:40 +00:00
|
|
|
expect(new CouchDocument("testId", {})[REV])
|
2014-12-03 01:31:30 +00:00
|
|
|
.not.toBeDefined();
|
2014-12-03 16:59:40 +00:00
|
|
|
expect(new CouchDocument("testId", {}, "testRev")[REV])
|
2014-12-03 01:31:30 +00:00
|
|
|
.toEqual("testRev");
|
|
|
|
});
|
|
|
|
|
|
|
|
it("includes the provided model", function () {
|
|
|
|
var model = { someKey: "some value" };
|
|
|
|
expect(new CouchDocument("testId", model).model)
|
|
|
|
.toEqual(model);
|
|
|
|
});
|
|
|
|
|
|
|
|
it("marks documents as deleted only on request", function () {
|
2014-12-03 16:59:40 +00:00
|
|
|
expect(new CouchDocument("testId", {}, "testRev")[DELETED])
|
2014-12-03 01:31:30 +00:00
|
|
|
.not.toBeDefined();
|
2014-12-03 16:59:40 +00:00
|
|
|
expect(new CouchDocument("testId", {}, "testRev", true)[DELETED])
|
2014-12-03 01:31:30 +00:00
|
|
|
.toBe(true);
|
|
|
|
});
|
2014-12-03 01:26:16 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
);
|