mirror of
https://github.com/denoland/deno.git
synced 2024-11-01 09:24:20 -04:00
75dab82adb
Original: b792fe8c72
288 lines
5.9 KiB
TypeScript
288 lines
5.9 KiB
TypeScript
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
|
|
|
import { test, assert, assertEqual, equal } from "./mod.ts";
|
|
|
|
test(function testingEqual() {
|
|
assert(equal("world", "world"));
|
|
assert(!equal("hello", "world"));
|
|
assert(equal(5, 5));
|
|
assert(!equal(5, 6));
|
|
assert(equal(NaN, NaN));
|
|
assert(equal({ hello: "world" }, { hello: "world" }));
|
|
assert(!equal({ world: "hello" }, { hello: "world" }));
|
|
assert(
|
|
equal(
|
|
{ hello: "world", hi: { there: "everyone" } },
|
|
{ hello: "world", hi: { there: "everyone" } }
|
|
)
|
|
);
|
|
assert(
|
|
!equal(
|
|
{ hello: "world", hi: { there: "everyone" } },
|
|
{ hello: "world", hi: { there: "everyone else" } }
|
|
)
|
|
);
|
|
});
|
|
|
|
test(function testingAssertEqual() {
|
|
const a = Object.create(null);
|
|
a.b = "foo";
|
|
assert.equal(a, a);
|
|
assert(assertEqual === assert.equal);
|
|
});
|
|
|
|
test(function testingAssertFail() {
|
|
let didThrow = false;
|
|
|
|
assert.throws(assert.fail, Error, "Failed assertion.");
|
|
assert.throws(
|
|
() => {
|
|
assert.fail("foo");
|
|
},
|
|
Error,
|
|
"Failed assertion: foo"
|
|
);
|
|
});
|
|
|
|
test(function testingAssertEqualActualUncoercable() {
|
|
let didThrow = false;
|
|
const a = Object.create(null);
|
|
try {
|
|
assert.equal(a, "bar");
|
|
} catch (e) {
|
|
didThrow = true;
|
|
console.log(e.message);
|
|
assert(e.message === "actual: [Cannot display] expected: bar");
|
|
}
|
|
assert(didThrow);
|
|
});
|
|
|
|
test(function testingAssertEqualExpectedUncoercable() {
|
|
let didThrow = false;
|
|
const a = Object.create(null);
|
|
try {
|
|
assert.equal("bar", a);
|
|
} catch (e) {
|
|
didThrow = true;
|
|
console.log(e.message);
|
|
assert(e.message === "actual: bar expected: [Cannot display]");
|
|
}
|
|
assert(didThrow);
|
|
});
|
|
|
|
test(function testingAssertStrictEqual() {
|
|
const a = {};
|
|
const b = a;
|
|
assert.strictEqual(a, b);
|
|
});
|
|
|
|
test(function testingAssertNotStrictEqual() {
|
|
let didThrow = false;
|
|
const a = {};
|
|
const b = {};
|
|
try {
|
|
assert.strictEqual(a, b);
|
|
} catch (e) {
|
|
assert(e.message === "actual: [object Object] expected: [object Object]");
|
|
didThrow = true;
|
|
}
|
|
assert(didThrow);
|
|
});
|
|
|
|
test(function testingDoesThrow() {
|
|
let count = 0;
|
|
assert.throws(() => {
|
|
count++;
|
|
throw new Error();
|
|
});
|
|
assert(count === 1);
|
|
});
|
|
|
|
test(function testingDoesNotThrow() {
|
|
let count = 0;
|
|
let didThrow = false;
|
|
try {
|
|
assert.throws(() => {
|
|
count++;
|
|
console.log("Hello world");
|
|
});
|
|
} catch (e) {
|
|
assert(e.message === "Expected function to throw.");
|
|
didThrow = true;
|
|
}
|
|
assert(count === 1);
|
|
assert(didThrow);
|
|
});
|
|
|
|
test(function testingThrowsErrorType() {
|
|
let count = 0;
|
|
assert.throws(() => {
|
|
count++;
|
|
throw new TypeError();
|
|
}, TypeError);
|
|
assert(count === 1);
|
|
});
|
|
|
|
test(function testingThrowsNotErrorType() {
|
|
let count = 0;
|
|
let didThrow = false;
|
|
try {
|
|
assert.throws(() => {
|
|
count++;
|
|
throw new TypeError();
|
|
}, RangeError);
|
|
} catch (e) {
|
|
assert(e.message === `Expected error to be instance of "RangeError".`);
|
|
didThrow = true;
|
|
}
|
|
assert(count === 1);
|
|
assert(didThrow);
|
|
});
|
|
|
|
test(function testingThrowsMsgIncludes() {
|
|
let count = 0;
|
|
assert.throws(
|
|
() => {
|
|
count++;
|
|
throw new TypeError("Hello world!");
|
|
},
|
|
TypeError,
|
|
"world"
|
|
);
|
|
assert(count === 1);
|
|
});
|
|
|
|
test(function testingThrowsMsgNotIncludes() {
|
|
let count = 0;
|
|
let didThrow = false;
|
|
try {
|
|
assert.throws(
|
|
() => {
|
|
count++;
|
|
throw new TypeError("Hello world!");
|
|
},
|
|
TypeError,
|
|
"foobar"
|
|
);
|
|
} catch (e) {
|
|
assert(
|
|
e.message ===
|
|
`Expected error message to include "foobar", but got "Hello world!".`
|
|
);
|
|
didThrow = true;
|
|
}
|
|
assert(count === 1);
|
|
assert(didThrow);
|
|
});
|
|
|
|
test(async function testingDoesThrowAsync() {
|
|
let count = 0;
|
|
await assert.throwsAsync(async () => {
|
|
count++;
|
|
throw new Error();
|
|
});
|
|
assert(count === 1);
|
|
});
|
|
|
|
test(async function testingDoesReject() {
|
|
let count = 0;
|
|
await assert.throwsAsync(() => {
|
|
count++;
|
|
return Promise.reject(new Error());
|
|
});
|
|
assert(count === 1);
|
|
});
|
|
|
|
test(async function testingDoesNotThrowAsync() {
|
|
let count = 0;
|
|
let didThrow = false;
|
|
try {
|
|
await assert.throwsAsync(async () => {
|
|
count++;
|
|
console.log("Hello world");
|
|
});
|
|
} catch (e) {
|
|
assert(e.message === "Expected function to throw.");
|
|
didThrow = true;
|
|
}
|
|
assert(count === 1);
|
|
assert(didThrow);
|
|
});
|
|
|
|
test(async function testingDoesNotRejectAsync() {
|
|
let count = 0;
|
|
let didThrow = false;
|
|
try {
|
|
await assert.throwsAsync(() => {
|
|
count++;
|
|
console.log("Hello world");
|
|
return Promise.resolve();
|
|
});
|
|
} catch (e) {
|
|
assert(e.message === "Expected function to throw.");
|
|
didThrow = true;
|
|
}
|
|
assert(count === 1);
|
|
assert(didThrow);
|
|
});
|
|
|
|
test(async function testingThrowsAsyncErrorType() {
|
|
let count = 0;
|
|
await assert.throwsAsync(async () => {
|
|
count++;
|
|
throw new TypeError();
|
|
}, TypeError);
|
|
assert(count === 1);
|
|
});
|
|
|
|
test(async function testingThrowsAsyncNotErrorType() {
|
|
let count = 0;
|
|
let didThrow = false;
|
|
try {
|
|
await assert.throwsAsync(async () => {
|
|
count++;
|
|
throw new TypeError();
|
|
}, RangeError);
|
|
} catch (e) {
|
|
assert(e.message === `Expected error to be instance of "RangeError".`);
|
|
didThrow = true;
|
|
}
|
|
assert(count === 1);
|
|
assert(didThrow);
|
|
});
|
|
|
|
test(async function testingThrowsAsyncMsgIncludes() {
|
|
let count = 0;
|
|
await assert.throwsAsync(
|
|
async () => {
|
|
count++;
|
|
throw new TypeError("Hello world!");
|
|
},
|
|
TypeError,
|
|
"world"
|
|
);
|
|
assert(count === 1);
|
|
});
|
|
|
|
test(async function testingThrowsMsgNotIncludes() {
|
|
let count = 0;
|
|
let didThrow = false;
|
|
try {
|
|
await assert.throwsAsync(
|
|
async () => {
|
|
count++;
|
|
throw new TypeError("Hello world!");
|
|
},
|
|
TypeError,
|
|
"foobar"
|
|
);
|
|
} catch (e) {
|
|
assert(
|
|
e.message ===
|
|
`Expected error message to include "foobar", but got "Hello world!".`
|
|
);
|
|
didThrow = true;
|
|
}
|
|
assert(count === 1);
|
|
assert(didThrow);
|
|
});
|