moved chai-assert into main chai definition

renamed chai-fuzzy-assert to chai-fuzzy
This commit is contained in:
Bart van der Schoor 2014-07-19 05:11:42 +02:00
parent 298b893f08
commit dfab9f569d
7 changed files with 741 additions and 791 deletions

View File

@ -1,8 +1,8 @@
/// <reference path="../chai/chai.d.ts" />
/// <reference path="../chai/chai-assert.d.ts" />
/// <reference path="chai-datetime.d.ts" />
var expect = chai.expect;
var assert = chai.assert;
function test_equalTime(){
var date: Date = new Date(2014, 1, 1);
@ -44,4 +44,4 @@ function test_afterDate(){
expect(date).to.afterDate(date);
date.should.afterDate(date);
assert.afterDate(date, date);
}
}

View File

@ -3,7 +3,7 @@
// Definitions by: Bart van der Schoor <https://github.com/Bartvds>
// Definitions: https://github.com/borisyankov/DefinitelyTyped
///<reference path="../chai/chai-assert.d.ts" />
///<reference path="../chai/chai.d.ts" />
declare module chai {
interface Assert {
@ -14,4 +14,4 @@ declare module chai {
jsonOf(act:any, exp:any, msg?:string);
notJsonOf(act:any, exp:any, msg?:string);
}
}
}

View File

@ -1,655 +0,0 @@
/*
---------
test extracted from original test suite
chai original licence follows
---------
## License
(The MIT License)
Copyright (c) 2011-2013 Jake Luer <jake@alogicalparadox.com>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
*/
///<reference path="chai-assert.d.ts" />
//stubs
//tdd
declare function suite(description: string, action: Function):void;
declare function test(description: string, action: Function):void;
declare function err(action: any, msg?: string):void;
interface FieldObj {
field: any;
}
class Foo {
constructor() {
}
}
class CrashyObject {
inspect (): void {
throw new Error("Arg's inspect() called even though the test passed");
}
}
suite('assert', function () {
test('assert', function () {
var foo = 'bar';
assert(foo == 'bar', "expected foo to equal `bar`");
err(function () {
assert(foo == 'baz', "expected foo to equal `bar`");
}, "expected foo to equal `bar`");
});
test('isTrue', function () {
assert.isTrue(true);
err(function () {
assert.isTrue(false);
}, "expected false to be true");
err(function () {
assert.isTrue(1);
}, "expected 1 to be true");
err(function () {
assert.isTrue('test');
}, "expected 'test' to be true");
});
test('ok', function () {
assert.ok(true);
assert.ok(1);
assert.ok('test');
err(function () {
assert.ok(false);
}, "expected false to be truthy");
err(function () {
assert.ok(0);
}, "expected 0 to be truthy");
err(function () {
assert.ok('');
}, "expected '' to be truthy");
});
test('isFalse', function () {
assert.isFalse(false);
err(function () {
assert.isFalse(true);
}, "expected true to be false");
err(function () {
assert.isFalse(0);
}, "expected 0 to be false");
});
test('equal', function () {
var foo: any;
assert.equal(foo, undefined);
});
test('typeof / notTypeOf', function () {
assert.typeOf('test', 'string');
assert.typeOf(true, 'boolean');
assert.typeOf(5, 'number');
err(function () {
assert.typeOf(5, 'string');
}, "expected 5 to be a string");
});
test('notTypeOf', function () {
assert.notTypeOf('test', 'number');
err(function () {
assert.notTypeOf(5, 'number');
}, "expected 5 not to be a number");
});
test('instanceOf', function () {
assert.instanceOf(new Foo(), Foo);
err(function () {
assert.instanceOf(5, Foo);
}, "expected 5 to be an instance of Foo");
assert.instanceOf(new CrashyObject(), CrashyObject);
});
test('notInstanceOf', function () {
assert.notInstanceOf(new Foo(), String);
err(function () {
assert.notInstanceOf(new Foo(), Foo);
}, "expected {} to not be an instance of Foo");
});
test('isObject', function () {
assert.isObject({});
assert.isObject(new Foo());
err(function () {
assert.isObject(true);
}, "expected true to be an object");
err(function () {
assert.isObject(Foo);
}, "expected [Function: Foo] to be an object");
err(function () {
assert.isObject('foo');
}, "expected 'foo' to be an object");
});
test('isNotObject', function () {
assert.isNotObject(5);
err(function () {
assert.isNotObject({});
}, "expected {} not to be an object");
});
test('notEqual', function () {
assert.notEqual(3, 4);
err(function () {
assert.notEqual(5, 5);
}, "expected 5 to not equal 5");
});
test('strictEqual', function () {
assert.strictEqual('foo', 'foo');
err(function () {
assert.strictEqual('5', 5);
}, "expected \'5\' to equal 5");
});
test('notStrictEqual', function () {
assert.notStrictEqual(5, '5');
err(function () {
assert.notStrictEqual(5, 5);
}, "expected 5 to not equal 5");
});
test('deepEqual', function () {
assert.deepEqual({tea: 'chai'}, {tea: 'chai'});
err(function () {
assert.deepEqual({tea: 'chai'}, {tea: 'black'});
}, "expected { tea: \'chai\' } to deeply equal { tea: \'black\' }");
var obja = Object.create({ tea: 'chai' })
, objb = Object.create({ tea: 'chai' });
assert.deepEqual(obja, objb);
var obj1 = Object.create({tea: 'chai'})
, obj2 = Object.create({tea: 'black'});
err(function () {
assert.deepEqual(obj1, obj2);
}, "expected { tea: \'chai\' } to deeply equal { tea: \'black\' }");
});
test('deepEqual (ordering)', function () {
var a = { a: 'b', c: 'd' }
, b = { c: 'd', a: 'b' };
assert.deepEqual(a, b);
});
test('deepEqual (circular)', function () {
var circularObject:any = {}
, secondCircularObject:any = {};
circularObject.field = circularObject;
secondCircularObject.field = secondCircularObject;
assert.deepEqual(circularObject, secondCircularObject);
err(function () {
secondCircularObject.field2 = secondCircularObject;
assert.deepEqual(circularObject, secondCircularObject);
}, "expected { field: [Circular] } to deeply equal { Object (field, field2) }");
});
test('notDeepEqual', function () {
assert.notDeepEqual({tea: 'jasmine'}, {tea: 'chai'});
err(function () {
assert.notDeepEqual({tea: 'chai'}, {tea: 'chai'});
}, "expected { tea: \'chai\' } to not deeply equal { tea: \'chai\' }");
});
test('notDeepEqual (circular)', function () {
var circularObject:any = {}
, secondCircularObject:any = { tea: 'jasmine' };
circularObject.field = circularObject;
secondCircularObject.field = secondCircularObject;
assert.notDeepEqual(circularObject, secondCircularObject);
err(function () {
delete secondCircularObject.tea;
assert.notDeepEqual(circularObject, secondCircularObject);
}, "expected { field: [Circular] } to not deeply equal { field: [Circular] }");
});
test('isNull', function () {
assert.isNull(null);
err(function () {
assert.isNull(undefined);
}, "expected undefined to equal null");
});
test('isNotNull', function () {
assert.isNotNull(undefined);
err(function () {
assert.isNotNull(null);
}, "expected null to not equal null");
});
test('isUndefined', function () {
assert.isUndefined(undefined);
err(function () {
assert.isUndefined(null);
}, "expected null to equal undefined");
});
test('isDefined', function () {
assert.isDefined(null);
err(function () {
assert.isDefined(undefined);
}, "expected undefined to not equal undefined");
});
test('isFunction', function () {
var func = function () {
};
assert.isFunction(func);
err(function () {
assert.isFunction({});
}, "expected {} to be a function");
});
test('isNotFunction', function () {
assert.isNotFunction(5);
err(function () {
assert.isNotFunction(function () {
});
}, "expected [Function] not to be a function");
});
test('isArray', function () {
assert.isArray([]);
assert.isArray(new Array<any>());
err(function () {
assert.isArray({});
}, "expected {} to be an array");
});
test('isNotArray', function () {
assert.isNotArray(3);
err(function () {
assert.isNotArray([]);
}, "expected [] not to be an array");
err(function () {
assert.isNotArray(new Array<any>());
}, "expected [] not to be an array");
});
test('isString', function () {
assert.isString('Foo');
assert.isString(new String('foo'));
err(function () {
assert.isString(1);
}, "expected 1 to be a string");
});
test('isNotString', function () {
assert.isNotString(3);
assert.isNotString([ 'hello' ]);
err(function () {
assert.isNotString('hello');
}, "expected 'hello' not to be a string");
});
test('isNumber', function () {
assert.isNumber(1);
assert.isNumber(Number('3'));
err(function () {
assert.isNumber('1');
}, "expected \'1\' to be a number");
});
test('isNotNumber', function () {
assert.isNotNumber('hello');
assert.isNotNumber([ 5 ]);
err(function () {
assert.isNotNumber(4);
}, "expected 4 not to be a number");
});
test('isBoolean', function () {
assert.isBoolean(true);
assert.isBoolean(false);
err(function () {
assert.isBoolean('1');
}, "expected \'1\' to be a boolean");
});
test('isNotBoolean', function () {
assert.isNotBoolean('true');
err(function () {
assert.isNotBoolean(true);
}, "expected true not to be a boolean");
err(function () {
assert.isNotBoolean(false);
}, "expected false not to be a boolean");
});
test('include', function () {
assert.include('foobar', 'bar');
assert.include([ 1, 2, 3], 3);
err(function () {
assert.include('foobar', 'baz');
}, "expected \'foobar\' to contain \'baz\'");
err(function () {
assert.include(undefined, 'bar');
}, "expected an array or string");
});
test('notInclude', function () {
assert.notInclude('foobar', 'baz');
assert.notInclude([ 1, 2, 3 ], 4);
err(function () {
assert.notInclude('foobar', 'bar');
}, "expected \'foobar\' to not contain \'bar\'");
err(function () {
assert.notInclude(undefined, 'bar');
}, "expected an array or string");
});
test('lengthOf', function () {
assert.lengthOf([1, 2, 3], 3);
assert.lengthOf('foobar', 6);
err(function () {
assert.lengthOf('foobar', 5);
}, "expected 'foobar' to have a length of 5 but got 6");
err(function () {
assert.lengthOf(1, 5);
}, "expected 1 to have a property \'length\'");
});
test('match', function () {
assert.match('foobar', /^foo/);
assert.notMatch('foobar', /^bar/);
err(function () {
assert.match('foobar', /^bar/i);
}, "expected 'foobar' to match /^bar/i");
err(function () {
assert.notMatch('foobar', /^foo/i);
}, "expected 'foobar' not to match /^foo/i");
});
test('property', function () {
var obj = { foo: { bar: 'baz' } };
var simpleObj = { foo: 'bar' };
assert.property(obj, 'foo');
assert.deepProperty(obj, 'foo.bar');
assert.notProperty(obj, 'baz');
assert.notProperty(obj, 'foo.bar');
assert.notDeepProperty(obj, 'foo.baz');
assert.deepPropertyVal(obj, 'foo.bar', 'baz');
assert.deepPropertyNotVal(obj, 'foo.bar', 'flow');
err(function () {
assert.property(obj, 'baz');
}, "expected { foo: { bar: 'baz' } } to have a property 'baz'");
err(function () {
assert.deepProperty(obj, 'foo.baz');
}, "expected { foo: { bar: 'baz' } } to have a deep property 'foo.baz'");
err(function () {
assert.notProperty(obj, 'foo');
}, "expected { foo: { bar: 'baz' } } to not have property 'foo'");
err(function () {
assert.notDeepProperty(obj, 'foo.bar');
}, "expected { foo: { bar: 'baz' } } to not have deep property 'foo.bar'");
err(function () {
assert.propertyVal(simpleObj, 'foo', 'ball');
}, "expected { foo: 'bar' } to have a property 'foo' of 'ball', but got 'bar'");
err(function () {
assert.deepPropertyVal(obj, 'foo.bar', 'ball');
}, "expected { foo: { bar: 'baz' } } to have a deep property 'foo.bar' of 'ball', but got 'baz'");
err(function () {
assert.propertyNotVal(simpleObj, 'foo', 'bar');
}, "expected { foo: 'bar' } to not have a property 'foo' of 'bar'");
err(function () {
assert.deepPropertyNotVal(obj, 'foo.bar', 'baz');
}, "expected { foo: { bar: 'baz' } } to not have a deep property 'foo.bar' of 'baz'");
});
test('throws', function () {
assert.throws(function () {
throw new Error('foo');
});
assert.throws(function () {
throw new Error('bar');
}, 'bar');
assert.throws(function () {
throw new Error('bar');
}, /bar/);
assert.throws(function () {
throw new Error('bar');
}, Error);
assert.throws(function () {
throw new Error('bar');
}, Error, 'bar');
err(function () {
assert.throws(function () {
throw new Error('foo')
}, TypeError);
}, "expected [Function] to throw 'TypeError' but [Error: foo] was thrown")
err(function () {
assert.throws(function () {
throw new Error('foo')
}, 'bar');
}, "expected [Function] to throw error including 'bar' but got 'foo'")
err(function () {
assert.throws(function () {
throw new Error('foo')
}, Error, 'bar');
}, "expected [Function] to throw error including 'bar' but got 'foo'")
err(function () {
assert.throws(function () {
throw new Error('foo')
}, TypeError, 'bar');
}, "expected [Function] to throw 'TypeError' but [Error: foo] was thrown")
err(function () {
assert.throws(function () {
});
}, "expected [Function] to throw an error");
err(function () {
assert.throws(function () {
throw new Error('')
}, 'bar');
}, "expected [Function] to throw error including 'bar' but got ''");
err(function () {
assert.throws(function () {
throw new Error('')
}, /bar/);
}, "expected [Function] to throw error matching /bar/ but got ''");
});
test('doesNotThrow', function () {
assert.doesNotThrow(function () {
});
assert.doesNotThrow(function () {
}, 'foo');
err(function () {
assert.doesNotThrow(function () {
throw new Error('foo');
});
}, 'expected [Function] to not throw an error but [Error: foo] was thrown');
});
test('ifError', function () {
assert.ifError(false);
assert.ifError(null);
assert.ifError(undefined);
err(function () {
assert.ifError('foo');
}, "expected \'foo\' to be falsy");
});
test('operator', function () {
assert.operator(1, '<', 2);
assert.operator(2, '>', 1);
assert.operator(1, '==', 1);
assert.operator(1, '<=', 1);
assert.operator(1, '>=', 1);
assert.operator(1, '!=', 2);
assert.operator(1, '!==', 2);
err(function () {
assert.operator(1, '=', 2);
}, 'Invalid operator "="');
err(function () {
assert.operator(2, '<', 1);
}, "expected 2 to be < 1");
err(function () {
assert.operator(1, '>', 2);
}, "expected 1 to be > 2");
err(function () {
assert.operator(1, '==', 2);
}, "expected 1 to be == 2");
err(function () {
assert.operator(2, '<=', 1);
}, "expected 2 to be <= 1");
err(function () {
assert.operator(1, '>=', 2);
}, "expected 1 to be >= 2");
err(function () {
assert.operator(1, '!=', 1);
}, "expected 1 to be != 1");
err(function () {
assert.operator(1, '!==', '1');
}, "expected 1 to be !== \'1\'");
});
test('closeTo', function () {
assert.closeTo(1.5, 1.0, 0.5);
assert.closeTo(10, 20, 20);
assert.closeTo(-10, 20, 30);
err(function () {
assert.closeTo(2, 1.0, 0.5);
}, "expected 2 to be close to 1 +/- 0.5");
err(function () {
assert.closeTo(-10, 20, 29);
}, "expected -10 to be close to 20 +/- 29");
});
test('members', function () {
assert.includeMembers([1, 2, 3], [2, 3]);
assert.includeMembers([1, 2, 3], []);
assert.includeMembers([1, 2, 3], [3]);
err(function () {
assert.includeMembers([5, 6], [7, 8]);
}, 'expected [ 5, 6 ] to be a superset of [ 7, 8 ]');
err(function () {
assert.includeMembers([5, 6], [5, 6, 0]);
}, 'expected [ 5, 6 ] to be a superset of [ 5, 6, 0 ]');
});
test('memberEquals', function () {
assert.sameMembers([], []);
assert.sameMembers([1, 2, 3], [3, 2, 1]);
assert.sameMembers([4, 2], [4, 2]);
err(function () {
assert.sameMembers([], [1, 2]);
}, 'expected [] to have the same members as [ 1, 2 ]');
err(function () {
assert.sameMembers([1, 54], [6, 1, 54]);
}, 'expected [ 1, 54 ] to have the same members as [ 6, 1, 54 ]');
});
});

131
chai/chai-assert.d.ts vendored
View File

@ -1,131 +0,0 @@
// Type definitions for chai v1.9.0 assert style
// Project: http://chaijs.com/
// Definitions by: Bart van der Schoor <https://github.com/Bartvds>
// Definitions: https://github.com/borisyankov/DefinitelyTyped
declare module chai {
export class AssertionError {
constructor(message: string, _props?: any, ssf?: Function);
name: string;
message: string;
showDiff: boolean;
stack: string;
}
export function use(plugin: any): void;
export var Assertion: ChaiAssertion;
export var assert: Assert;
export var config: ChaiConfig;
export interface ChaiConfig {
includeStack: boolean;
}
export interface ChaiAssertion {
// what?
}
export interface Assert {
(express: any, msg?: string):void;
fail(actual?: any, expected?: any, msg?: string, operator?: string):void;
ok(val: any, msg?: string):void;
notOk(val: any, msg?: string):void;
equal(act: any, exp: any, msg?: string):void;
notEqual(act: any, exp: any, msg?: string):void;
strictEqual(act: any, exp: any, msg?: string):void;
notStrictEqual(act: any, exp: any, msg?: string):void;
deepEqual(act: any, exp: any, msg?: string):void;
notDeepEqual(act: any, exp: any, msg?: string):void;
isTrue(val: any, msg?: string):void;
isFalse(val: any, msg?: string):void;
isNull(val: any, msg?: string):void;
isNotNull(val: any, msg?: string):void;
isUndefined(val: any, msg?: string):void;
isDefined(val: any, msg?: string):void;
isFunction(val: any, msg?: string):void;
isNotFunction(val: any, msg?: string):void;
isObject(val: any, msg?: string):void;
isNotObject(val: any, msg?: string):void;
isArray(val: any, msg?: string):void;
isNotArray(val: any, msg?: string):void;
isString(val: any, msg?: string):void;
isNotString(val: any, msg?: string):void;
isNumber(val: any, msg?: string):void;
isNotNumber(val: any, msg?: string):void;
isBoolean(val: any, msg?: string):void;
isNotBoolean(val: any, msg?: string):void;
typeOf(val: any, type: string, msg?: string):void;
notTypeOf(val: any, type: string, msg?: string):void;
instanceOf(val: any, type: Function, msg?: string):void;
notInstanceOf(val: any, type: Function, msg?: string):void;
include(exp: string, inc: any, msg?: string):void;
include(exp: any[], inc: any, msg?: string):void;
notInclude(exp: string, inc: any, msg?: string):void;
notInclude(exp: any[], inc: any, msg?: string):void;
match(exp: any, re: RegExp, msg?: string):void;
notMatch(exp: any, re: RegExp, msg?: string):void;
property(obj: Object, prop: string, msg?: string):void;
notProperty(obj: Object, prop: string, msg?: string):void;
deepProperty(obj: Object, prop: string, msg?: string):void;
notDeepProperty(obj: Object, prop: string, msg?: string):void;
propertyVal(obj: Object, prop: string, val: any, msg?: string):void;
propertyNotVal(obj: Object, prop: string, val: any, msg?: string):void;
deepPropertyVal(obj: Object, prop: string, val: any, msg?: string):void;
deepPropertyNotVal(obj: Object, prop: string, val: any, msg?: string):void;
lengthOf(exp: any, len: number, msg?: string):void;
//alias frenzy
throw(fn: Function, msg?: string):void;
throw(fn: Function, regExp: RegExp):void;
throw(fn: Function, errType: Function, msg?: string):void;
throw(fn: Function, errType: Function, regExp: RegExp):void;
throws(fn: Function, msg?: string):void;
throws(fn: Function, regExp: RegExp):void;
throws(fn: Function, errType: Function, msg?: string):void;
throws(fn: Function, errType: Function, regExp: RegExp):void;
Throw(fn: Function, msg?: string):void;
Throw(fn: Function, regExp: RegExp):void;
Throw(fn: Function, errType: Function, msg?: string):void;
Throw(fn: Function, errType: Function, regExp: RegExp):void;
doesNotThrow(fn: Function, msg?: string):void;
doesNotThrow(fn: Function, regExp: RegExp):void;
doesNotThrow(fn: Function, errType: Function, msg?: string):void;
doesNotThrow(fn: Function, errType: Function, regExp: RegExp):void;
operator(val: any, operator: string, val2: any, msg?: string):void;
closeTo(act: number, exp: number, delta: number, msg?: string):void;
sameMembers(set1: any[], set2: any[], msg?: string):void;
includeMembers(set1: any[], set2: any[], msg?: string):void;
ifError(val: any, msg?: string):void;
}
}
//browser global
declare var assert:chai.Assert;

View File

@ -1,6 +1,7 @@
/// <reference path="chai.d.ts" />
var expect = chai.expect;
var assert = chai.assert;
declare var err: Function;
function chaiVersion() {
@ -767,3 +768,623 @@ function members() {
expect([5, 4]).not.members([6, 3]);
expect([5, 4]).not.members([5, 4, 2]);
}
//tdd
declare function suite(description: string, action: Function):void;
declare function test(description: string, action: Function):void;
declare function err(action: any, msg?: string):void;
interface FieldObj {
field: any;
}
class Foo {
constructor() {
}
}
class CrashyObject {
inspect (): void {
throw new Error("Arg's inspect() called even though the test passed");
}
}
suite('assert', function () {
test('assert', function () {
var foo = 'bar';
assert(foo == 'bar', "expected foo to equal `bar`");
err(function () {
assert(foo == 'baz', "expected foo to equal `bar`");
}, "expected foo to equal `bar`");
});
test('isTrue', function () {
assert.isTrue(true);
err(function () {
assert.isTrue(false);
}, "expected false to be true");
err(function () {
assert.isTrue(1);
}, "expected 1 to be true");
err(function () {
assert.isTrue('test');
}, "expected 'test' to be true");
});
test('ok', function () {
assert.ok(true);
assert.ok(1);
assert.ok('test');
err(function () {
assert.ok(false);
}, "expected false to be truthy");
err(function () {
assert.ok(0);
}, "expected 0 to be truthy");
err(function () {
assert.ok('');
}, "expected '' to be truthy");
});
test('isFalse', function () {
assert.isFalse(false);
err(function () {
assert.isFalse(true);
}, "expected true to be false");
err(function () {
assert.isFalse(0);
}, "expected 0 to be false");
});
test('equal', function () {
var foo: any;
assert.equal(foo, undefined);
});
test('typeof / notTypeOf', function () {
assert.typeOf('test', 'string');
assert.typeOf(true, 'boolean');
assert.typeOf(5, 'number');
err(function () {
assert.typeOf(5, 'string');
}, "expected 5 to be a string");
});
test('notTypeOf', function () {
assert.notTypeOf('test', 'number');
err(function () {
assert.notTypeOf(5, 'number');
}, "expected 5 not to be a number");
});
test('instanceOf', function () {
assert.instanceOf(new Foo(), Foo);
err(function () {
assert.instanceOf(5, Foo);
}, "expected 5 to be an instance of Foo");
assert.instanceOf(new CrashyObject(), CrashyObject);
});
test('notInstanceOf', function () {
assert.notInstanceOf(new Foo(), String);
err(function () {
assert.notInstanceOf(new Foo(), Foo);
}, "expected {} to not be an instance of Foo");
});
test('isObject', function () {
assert.isObject({});
assert.isObject(new Foo());
err(function () {
assert.isObject(true);
}, "expected true to be an object");
err(function () {
assert.isObject(Foo);
}, "expected [Function: Foo] to be an object");
err(function () {
assert.isObject('foo');
}, "expected 'foo' to be an object");
});
test('isNotObject', function () {
assert.isNotObject(5);
err(function () {
assert.isNotObject({});
}, "expected {} not to be an object");
});
test('notEqual', function () {
assert.notEqual(3, 4);
err(function () {
assert.notEqual(5, 5);
}, "expected 5 to not equal 5");
});
test('strictEqual', function () {
assert.strictEqual('foo', 'foo');
err(function () {
assert.strictEqual('5', 5);
}, "expected \'5\' to equal 5");
});
test('notStrictEqual', function () {
assert.notStrictEqual(5, '5');
err(function () {
assert.notStrictEqual(5, 5);
}, "expected 5 to not equal 5");
});
test('deepEqual', function () {
assert.deepEqual({tea: 'chai'}, {tea: 'chai'});
err(function () {
assert.deepEqual({tea: 'chai'}, {tea: 'black'});
}, "expected { tea: \'chai\' } to deeply equal { tea: \'black\' }");
var obja = Object.create({ tea: 'chai' })
, objb = Object.create({ tea: 'chai' });
assert.deepEqual(obja, objb);
var obj1 = Object.create({tea: 'chai'})
, obj2 = Object.create({tea: 'black'});
err(function () {
assert.deepEqual(obj1, obj2);
}, "expected { tea: \'chai\' } to deeply equal { tea: \'black\' }");
});
test('deepEqual (ordering)', function () {
var a = { a: 'b', c: 'd' }
, b = { c: 'd', a: 'b' };
assert.deepEqual(a, b);
});
test('deepEqual (circular)', function () {
var circularObject:any = {}
, secondCircularObject:any = {};
circularObject.field = circularObject;
secondCircularObject.field = secondCircularObject;
assert.deepEqual(circularObject, secondCircularObject);
err(function () {
secondCircularObject.field2 = secondCircularObject;
assert.deepEqual(circularObject, secondCircularObject);
}, "expected { field: [Circular] } to deeply equal { Object (field, field2) }");
});
test('notDeepEqual', function () {
assert.notDeepEqual({tea: 'jasmine'}, {tea: 'chai'});
err(function () {
assert.notDeepEqual({tea: 'chai'}, {tea: 'chai'});
}, "expected { tea: \'chai\' } to not deeply equal { tea: \'chai\' }");
});
test('notDeepEqual (circular)', function () {
var circularObject:any = {}
, secondCircularObject:any = { tea: 'jasmine' };
circularObject.field = circularObject;
secondCircularObject.field = secondCircularObject;
assert.notDeepEqual(circularObject, secondCircularObject);
err(function () {
delete secondCircularObject.tea;
assert.notDeepEqual(circularObject, secondCircularObject);
}, "expected { field: [Circular] } to not deeply equal { field: [Circular] }");
});
test('isNull', function () {
assert.isNull(null);
err(function () {
assert.isNull(undefined);
}, "expected undefined to equal null");
});
test('isNotNull', function () {
assert.isNotNull(undefined);
err(function () {
assert.isNotNull(null);
}, "expected null to not equal null");
});
test('isUndefined', function () {
assert.isUndefined(undefined);
err(function () {
assert.isUndefined(null);
}, "expected null to equal undefined");
});
test('isDefined', function () {
assert.isDefined(null);
err(function () {
assert.isDefined(undefined);
}, "expected undefined to not equal undefined");
});
test('isFunction', function () {
var func = function () {
};
assert.isFunction(func);
err(function () {
assert.isFunction({});
}, "expected {} to be a function");
});
test('isNotFunction', function () {
assert.isNotFunction(5);
err(function () {
assert.isNotFunction(function () {
});
}, "expected [Function] not to be a function");
});
test('isArray', function () {
assert.isArray([]);
assert.isArray(new Array<any>());
err(function () {
assert.isArray({});
}, "expected {} to be an array");
});
test('isNotArray', function () {
assert.isNotArray(3);
err(function () {
assert.isNotArray([]);
}, "expected [] not to be an array");
err(function () {
assert.isNotArray(new Array<any>());
}, "expected [] not to be an array");
});
test('isString', function () {
assert.isString('Foo');
assert.isString(new String('foo'));
err(function () {
assert.isString(1);
}, "expected 1 to be a string");
});
test('isNotString', function () {
assert.isNotString(3);
assert.isNotString([ 'hello' ]);
err(function () {
assert.isNotString('hello');
}, "expected 'hello' not to be a string");
});
test('isNumber', function () {
assert.isNumber(1);
assert.isNumber(Number('3'));
err(function () {
assert.isNumber('1');
}, "expected \'1\' to be a number");
});
test('isNotNumber', function () {
assert.isNotNumber('hello');
assert.isNotNumber([ 5 ]);
err(function () {
assert.isNotNumber(4);
}, "expected 4 not to be a number");
});
test('isBoolean', function () {
assert.isBoolean(true);
assert.isBoolean(false);
err(function () {
assert.isBoolean('1');
}, "expected \'1\' to be a boolean");
});
test('isNotBoolean', function () {
assert.isNotBoolean('true');
err(function () {
assert.isNotBoolean(true);
}, "expected true not to be a boolean");
err(function () {
assert.isNotBoolean(false);
}, "expected false not to be a boolean");
});
test('include', function () {
assert.include('foobar', 'bar');
assert.include([ 1, 2, 3], 3);
err(function () {
assert.include('foobar', 'baz');
}, "expected \'foobar\' to contain \'baz\'");
err(function () {
assert.include(undefined, 'bar');
}, "expected an array or string");
});
test('notInclude', function () {
assert.notInclude('foobar', 'baz');
assert.notInclude([ 1, 2, 3 ], 4);
err(function () {
assert.notInclude('foobar', 'bar');
}, "expected \'foobar\' to not contain \'bar\'");
err(function () {
assert.notInclude(undefined, 'bar');
}, "expected an array or string");
});
test('lengthOf', function () {
assert.lengthOf([1, 2, 3], 3);
assert.lengthOf('foobar', 6);
err(function () {
assert.lengthOf('foobar', 5);
}, "expected 'foobar' to have a length of 5 but got 6");
err(function () {
assert.lengthOf(1, 5);
}, "expected 1 to have a property \'length\'");
});
test('match', function () {
assert.match('foobar', /^foo/);
assert.notMatch('foobar', /^bar/);
err(function () {
assert.match('foobar', /^bar/i);
}, "expected 'foobar' to match /^bar/i");
err(function () {
assert.notMatch('foobar', /^foo/i);
}, "expected 'foobar' not to match /^foo/i");
});
test('property', function () {
var obj = { foo: { bar: 'baz' } };
var simpleObj = { foo: 'bar' };
assert.property(obj, 'foo');
assert.deepProperty(obj, 'foo.bar');
assert.notProperty(obj, 'baz');
assert.notProperty(obj, 'foo.bar');
assert.notDeepProperty(obj, 'foo.baz');
assert.deepPropertyVal(obj, 'foo.bar', 'baz');
assert.deepPropertyNotVal(obj, 'foo.bar', 'flow');
err(function () {
assert.property(obj, 'baz');
}, "expected { foo: { bar: 'baz' } } to have a property 'baz'");
err(function () {
assert.deepProperty(obj, 'foo.baz');
}, "expected { foo: { bar: 'baz' } } to have a deep property 'foo.baz'");
err(function () {
assert.notProperty(obj, 'foo');
}, "expected { foo: { bar: 'baz' } } to not have property 'foo'");
err(function () {
assert.notDeepProperty(obj, 'foo.bar');
}, "expected { foo: { bar: 'baz' } } to not have deep property 'foo.bar'");
err(function () {
assert.propertyVal(simpleObj, 'foo', 'ball');
}, "expected { foo: 'bar' } to have a property 'foo' of 'ball', but got 'bar'");
err(function () {
assert.deepPropertyVal(obj, 'foo.bar', 'ball');
}, "expected { foo: { bar: 'baz' } } to have a deep property 'foo.bar' of 'ball', but got 'baz'");
err(function () {
assert.propertyNotVal(simpleObj, 'foo', 'bar');
}, "expected { foo: 'bar' } to not have a property 'foo' of 'bar'");
err(function () {
assert.deepPropertyNotVal(obj, 'foo.bar', 'baz');
}, "expected { foo: { bar: 'baz' } } to not have a deep property 'foo.bar' of 'baz'");
});
test('throws', function () {
assert.throws(function () {
throw new Error('foo');
});
assert.throws(function () {
throw new Error('bar');
}, 'bar');
assert.throws(function () {
throw new Error('bar');
}, /bar/);
assert.throws(function () {
throw new Error('bar');
}, Error);
assert.throws(function () {
throw new Error('bar');
}, Error, 'bar');
err(function () {
assert.throws(function () {
throw new Error('foo')
}, TypeError);
}, "expected [Function] to throw 'TypeError' but [Error: foo] was thrown")
err(function () {
assert.throws(function () {
throw new Error('foo')
}, 'bar');
}, "expected [Function] to throw error including 'bar' but got 'foo'")
err(function () {
assert.throws(function () {
throw new Error('foo')
}, Error, 'bar');
}, "expected [Function] to throw error including 'bar' but got 'foo'")
err(function () {
assert.throws(function () {
throw new Error('foo')
}, TypeError, 'bar');
}, "expected [Function] to throw 'TypeError' but [Error: foo] was thrown")
err(function () {
assert.throws(function () {
});
}, "expected [Function] to throw an error");
err(function () {
assert.throws(function () {
throw new Error('')
}, 'bar');
}, "expected [Function] to throw error including 'bar' but got ''");
err(function () {
assert.throws(function () {
throw new Error('')
}, /bar/);
}, "expected [Function] to throw error matching /bar/ but got ''");
});
test('doesNotThrow', function () {
assert.doesNotThrow(function () {
});
assert.doesNotThrow(function () {
}, 'foo');
err(function () {
assert.doesNotThrow(function () {
throw new Error('foo');
});
}, 'expected [Function] to not throw an error but [Error: foo] was thrown');
});
test('ifError', function () {
assert.ifError(false);
assert.ifError(null);
assert.ifError(undefined);
err(function () {
assert.ifError('foo');
}, "expected \'foo\' to be falsy");
});
test('operator', function () {
assert.operator(1, '<', 2);
assert.operator(2, '>', 1);
assert.operator(1, '==', 1);
assert.operator(1, '<=', 1);
assert.operator(1, '>=', 1);
assert.operator(1, '!=', 2);
assert.operator(1, '!==', 2);
err(function () {
assert.operator(1, '=', 2);
}, 'Invalid operator "="');
err(function () {
assert.operator(2, '<', 1);
}, "expected 2 to be < 1");
err(function () {
assert.operator(1, '>', 2);
}, "expected 1 to be > 2");
err(function () {
assert.operator(1, '==', 2);
}, "expected 1 to be == 2");
err(function () {
assert.operator(2, '<=', 1);
}, "expected 2 to be <= 1");
err(function () {
assert.operator(1, '>=', 2);
}, "expected 1 to be >= 2");
err(function () {
assert.operator(1, '!=', 1);
}, "expected 1 to be != 1");
err(function () {
assert.operator(1, '!==', '1');
}, "expected 1 to be !== \'1\'");
});
test('closeTo', function () {
assert.closeTo(1.5, 1.0, 0.5);
assert.closeTo(10, 20, 20);
assert.closeTo(-10, 20, 30);
err(function () {
assert.closeTo(2, 1.0, 0.5);
}, "expected 2 to be close to 1 +/- 0.5");
err(function () {
assert.closeTo(-10, 20, 29);
}, "expected -10 to be close to 20 +/- 29");
});
test('members', function () {
assert.includeMembers([1, 2, 3], [2, 3]);
assert.includeMembers([1, 2, 3], []);
assert.includeMembers([1, 2, 3], [3]);
err(function () {
assert.includeMembers([5, 6], [7, 8]);
}, 'expected [ 5, 6 ] to be a superset of [ 7, 8 ]');
err(function () {
assert.includeMembers([5, 6], [5, 6, 0]);
}, 'expected [ 5, 6 ] to be a superset of [ 5, 6, 0 ]');
});
test('memberEquals', function () {
assert.sameMembers([], []);
assert.sameMembers([1, 2, 3], [3, 2, 1]);
assert.sameMembers([4, 2], [4, 2]);
err(function () {
assert.sameMembers([], [1, 2]);
}, 'expected [] to have the same members as [ 1, 2 ]');
err(function () {
assert.sameMembers([1, 54], [6, 1, 54]);
}, 'expected [ 1, 54 ] to have the same members as [ 6, 1, 54 ]');
});
});

117
chai/chai.d.ts vendored
View File

@ -1,11 +1,25 @@
// Type definitions for chai 1.7.2
// Project: http://chaijs.com/
// Definitions by: Jed Hunsaker <https://github.com/jedhunsaker/>
// Definitions by: Jed Hunsaker <https://github.com/jedhunsaker/>, Bart van der Schoor <https://github.com/Bartvds>
// Definitions: https://github.com/borisyankov/DefinitelyTyped
declare module chai {
export class AssertionError {
constructor(message: string, _props?: any, ssf?: Function);
name: string;
message: string;
showDiff: boolean;
stack: string;
}
function expect(target: any, message?: string): Expect;
export var assert: Assert;
export var config: Config;
export interface Config {
includeStack: boolean;
}
// Provides a way to extend the internals of Chai
function use(fn: (chai: any, utils: any) => void): any;
@ -161,6 +175,107 @@ declare module chai {
(constructor: Function, expected?: string, message?: string): Expect;
(constructor: Function, expected?: RegExp, message?: string): Expect;
}
export interface Assert {
(express: any, msg?: string):void;
fail(actual?: any, expected?: any, msg?: string, operator?: string):void;
ok(val: any, msg?: string):void;
notOk(val: any, msg?: string):void;
equal(act: any, exp: any, msg?: string):void;
notEqual(act: any, exp: any, msg?: string):void;
strictEqual(act: any, exp: any, msg?: string):void;
notStrictEqual(act: any, exp: any, msg?: string):void;
deepEqual(act: any, exp: any, msg?: string):void;
notDeepEqual(act: any, exp: any, msg?: string):void;
isTrue(val: any, msg?: string):void;
isFalse(val: any, msg?: string):void;
isNull(val: any, msg?: string):void;
isNotNull(val: any, msg?: string):void;
isUndefined(val: any, msg?: string):void;
isDefined(val: any, msg?: string):void;
isFunction(val: any, msg?: string):void;
isNotFunction(val: any, msg?: string):void;
isObject(val: any, msg?: string):void;
isNotObject(val: any, msg?: string):void;
isArray(val: any, msg?: string):void;
isNotArray(val: any, msg?: string):void;
isString(val: any, msg?: string):void;
isNotString(val: any, msg?: string):void;
isNumber(val: any, msg?: string):void;
isNotNumber(val: any, msg?: string):void;
isBoolean(val: any, msg?: string):void;
isNotBoolean(val: any, msg?: string):void;
typeOf(val: any, type: string, msg?: string):void;
notTypeOf(val: any, type: string, msg?: string):void;
instanceOf(val: any, type: Function, msg?: string):void;
notInstanceOf(val: any, type: Function, msg?: string):void;
include(exp: string, inc: any, msg?: string):void;
include(exp: any[], inc: any, msg?: string):void;
notInclude(exp: string, inc: any, msg?: string):void;
notInclude(exp: any[], inc: any, msg?: string):void;
match(exp: any, re: RegExp, msg?: string):void;
notMatch(exp: any, re: RegExp, msg?: string):void;
property(obj: Object, prop: string, msg?: string):void;
notProperty(obj: Object, prop: string, msg?: string):void;
deepProperty(obj: Object, prop: string, msg?: string):void;
notDeepProperty(obj: Object, prop: string, msg?: string):void;
propertyVal(obj: Object, prop: string, val: any, msg?: string):void;
propertyNotVal(obj: Object, prop: string, val: any, msg?: string):void;
deepPropertyVal(obj: Object, prop: string, val: any, msg?: string):void;
deepPropertyNotVal(obj: Object, prop: string, val: any, msg?: string):void;
lengthOf(exp: any, len: number, msg?: string):void;
//alias frenzy
throw(fn: Function, msg?: string):void;
throw(fn: Function, regExp: RegExp):void;
throw(fn: Function, errType: Function, msg?: string):void;
throw(fn: Function, errType: Function, regExp: RegExp):void;
throws(fn: Function, msg?: string):void;
throws(fn: Function, regExp: RegExp):void;
throws(fn: Function, errType: Function, msg?: string):void;
throws(fn: Function, errType: Function, regExp: RegExp):void;
Throw(fn: Function, msg?: string):void;
Throw(fn: Function, regExp: RegExp):void;
Throw(fn: Function, errType: Function, msg?: string):void;
Throw(fn: Function, errType: Function, regExp: RegExp):void;
doesNotThrow(fn: Function, msg?: string):void;
doesNotThrow(fn: Function, regExp: RegExp):void;
doesNotThrow(fn: Function, errType: Function, msg?: string):void;
doesNotThrow(fn: Function, errType: Function, regExp: RegExp):void;
operator(val: any, operator: string, val2: any, msg?: string):void;
closeTo(act: number, exp: number, delta: number, msg?: string):void;
sameMembers(set1: any[], set2: any[], msg?: string):void;
includeMembers(set1: any[], set2: any[], msg?: string):void;
ifError(val: any, msg?: string):void;
}
}
declare module "chai" {