-
Notifications
You must be signed in to change notification settings - Fork 109
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Convert tests away from CoffeeScript
Also make them stop relying on global setup.
- Loading branch information
Showing
22 changed files
with
1,473 additions
and
1,115 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,139 @@ | ||
"use strict"; | ||
require("./support/setup.js"); | ||
const shouldPass = require("./support/common.js").shouldPass; | ||
const shouldFail = require("./support/common.js").shouldFail; | ||
const assert = require("chai").assert; | ||
const expect = require("chai").expect; | ||
|
||
describe("Assert interface with eventually extender:", () => { | ||
let promise = null; | ||
|
||
describe("Direct tests of fulfilled promises", () => { | ||
it(".eventually.isNull(promise)", done => { | ||
assert.eventually.isNull(Promise.resolve(null)).notify(done); | ||
}); | ||
it(".eventually.isFunction(promise)", done => { | ||
assert.eventually.isFunction(Promise.resolve(() => { /* Forever pending */ })).notify(done); | ||
}); | ||
it(".eventually.typeOf(promise, 'string')", done => { | ||
assert.eventually.typeOf(Promise.resolve("hello"), "string").notify(done); | ||
}); | ||
it(".eventually.include(promiseForString, 'substring')", done => { | ||
assert.eventually.include(Promise.resolve("hello"), "hell").notify(done); | ||
}); | ||
it(".eventually.include(promiseForArray, arrayMember)", done => { | ||
assert.eventually.include(Promise.resolve([1, 2, 3]), 1).notify(done); | ||
}); | ||
}); | ||
|
||
describe("On a promise fulfilled with the number 42", () => { | ||
beforeEach(() => { | ||
promise = Promise.resolve(42); | ||
}); | ||
|
||
describe(".eventually.isNull(promise)", () => { | ||
shouldFail({ | ||
op: () => assert.eventually.isNull(promise), | ||
message: "to equal null" | ||
}); | ||
}); | ||
describe(".eventually.isDefined(promise)", () => { | ||
shouldPass(() => assert.eventually.isDefined(promise)); | ||
}); | ||
describe(".eventually.ok(promise)", () => { | ||
shouldPass(() => assert.eventually.ok(promise)); | ||
}); | ||
describe(".eventually.equal(promise, 42)", () => { | ||
shouldPass(() => assert.eventually.equal(promise, 42)); | ||
}); | ||
describe(".eventually.equal(promise, 52)", () => { | ||
shouldFail({ | ||
op: () => assert.eventually.equal(promise, 52), | ||
message: "to equal 52" | ||
}); | ||
|
||
function shouldFailWithCorrectActual(promiseProducer) { | ||
it("should return a promise rejected with an assertion error that has actual/expected properties " + | ||
"correct", done => { | ||
expect(promiseProducer().then( | ||
() => { | ||
throw new Error("promise fulfilled"); | ||
}, | ||
e => { | ||
e.actual.should.equal(42); | ||
e.expected.should.equal(52); | ||
} | ||
)).to.be.fulfilled.notify(done); | ||
}); | ||
} | ||
|
||
describe("assert", () => { | ||
shouldFailWithCorrectActual(() => assert.eventually.equal(promise, 52)); | ||
}); | ||
describe("expect", () => { | ||
shouldFailWithCorrectActual(() => expect(promise).to.eventually.equal(52)); | ||
}); | ||
describe("should", () => { | ||
shouldFailWithCorrectActual(() => promise.should.eventually.equal(52)); | ||
}); | ||
}); | ||
|
||
describe(".eventually.notEqual(promise, 42)", () => { | ||
shouldFail({ | ||
op: () => assert.eventually.notEqual(promise, 42), | ||
message: "to not equal 42" | ||
}); | ||
}); | ||
describe(".eventually.notEqual(promise, 52)", () => { | ||
shouldPass(() => assert.eventually.notEqual(promise, 52)); | ||
}); | ||
}); | ||
|
||
describe("On a promise fulfilled with { foo: 'bar' }", () => { | ||
beforeEach(() => { | ||
promise = Promise.resolve({ foo: "bar" }); | ||
}); | ||
|
||
describe(".eventually.equal(promise, { foo: 'bar' })", () => { | ||
shouldFail({ | ||
op: () => assert.eventually.equal(promise, { foo: "bar" }), | ||
message: "to equal { foo: 'bar' }" | ||
}); | ||
}); | ||
describe(".eventually.deepEqual(promise, { foo: 'bar' })", () => { | ||
shouldPass(() => assert.eventually.deepEqual(promise, { foo: "bar" })); | ||
}); | ||
}); | ||
|
||
describe("Assertion messages", () => { | ||
const message = "He told me enough! He told me you killed him!"; | ||
|
||
describe("should pass through for .eventually.isNull(promise, message) for fulfilled", () => { | ||
shouldFail({ | ||
op: () => assert.eventually.isNull(Promise.resolve(42), message), | ||
message | ||
}); | ||
}); | ||
|
||
describe("should pass through for .eventually.isNull(promise, message) for rejected", () => { | ||
shouldFail({ | ||
op: () => assert.eventually.isNull(Promise.reject(), message), | ||
message | ||
}); | ||
}); | ||
|
||
describe("should pass through for .eventually.equal(promise, 52, message) for fulfilled", () => { | ||
shouldFail({ | ||
op: () => assert.eventually.equal(Promise.resolve(42), 52, message), | ||
message | ||
}); | ||
}); | ||
|
||
describe("should pass through for .eventually.equal(promise, 52, message) for rejected", () => { | ||
shouldFail({ | ||
op: () => assert.eventually.equal(Promise.reject(), 52, message), | ||
message | ||
}); | ||
}); | ||
}); | ||
}); |
Oops, something went wrong.