2020-06-03 02:48:38 +03:00
|
|
|
#!/usr/bin/env node
|
2020-05-24 02:41:30 +03:00
|
|
|
/**********************************************************************
|
|
|
|
|
*
|
2020-06-01 04:09:40 +03:00
|
|
|
* This is an experimental test framework...
|
|
|
|
|
*
|
|
|
|
|
* The idea is that we can split the tests into:
|
|
|
|
|
* - setups
|
|
|
|
|
* Construct as set of testable things.
|
|
|
|
|
* On this stage the construction process can be tested.
|
|
|
|
|
* - modifiers
|
|
|
|
|
* Take a set of testable things as returned by a setup/modifier and
|
|
|
|
|
* modify them or produce new things based on the old ones.
|
|
|
|
|
* Here the modification process can be tested.
|
|
|
|
|
* - tests
|
|
|
|
|
* Take a set of things as returned by a setup/modifier and run a
|
|
|
|
|
* set of tests on them.
|
|
|
|
|
* This stage tests a specific state and interactions within it.
|
|
|
|
|
* - specific cases
|
|
|
|
|
* A specific manual construction of a thing, its modification and
|
|
|
|
|
* test.
|
|
|
|
|
*
|
|
|
|
|
* Testing is done by building/running a number chains, starting with a
|
|
|
|
|
* setup, then chaining the results through zero or more modifiers and
|
|
|
|
|
* finally into a test.
|
|
|
|
|
*
|
|
|
|
|
* The actual testing is dune via assert(..) functions and is not
|
|
|
|
|
* restricted to the test stage.
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
* NOTE: tests can be used as modifiers if they modify state and return
|
|
|
|
|
* the modified input.
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
* XXX thins to simplify:
|
|
|
|
|
* - would be nice if the actual code could be readable...
|
|
|
|
|
* - can we automate assert callas?
|
2020-05-24 02:41:30 +03:00
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
**********************************************************************/
|
|
|
|
|
((typeof define)[0]=='u'?function(f){module.exports=f(require)}:define)
|
|
|
|
|
(function(require){ var module={} // make module AMD/node compatible...
|
|
|
|
|
/*********************************************************************/
|
|
|
|
|
|
2020-06-04 00:11:45 +03:00
|
|
|
var colors = require('colors')
|
2020-06-14 04:29:27 +03:00
|
|
|
var argv = require('ig-argv')
|
2020-06-04 00:11:45 +03:00
|
|
|
|
2020-05-24 02:41:30 +03:00
|
|
|
var object = require('./object')
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2020-05-24 23:59:01 +03:00
|
|
|
//---------------------------------------------------------------------
|
|
|
|
|
|
2020-05-30 00:35:06 +03:00
|
|
|
// NOTE: to test in verbose mode do:
|
|
|
|
|
// $ export VERBOSE=1 && npm test
|
|
|
|
|
// or
|
|
|
|
|
// $ export VERBOSE=1 && node test.js
|
|
|
|
|
// or set this manually after require('./test') but before running
|
|
|
|
|
// the runner(..)
|
2020-06-01 04:09:40 +03:00
|
|
|
// NOTE: this may change in the future...
|
2020-05-30 00:35:06 +03:00
|
|
|
module.VERBOSE = process ?
|
|
|
|
|
process.env.VERBOSE
|
|
|
|
|
: false
|
2020-05-24 23:59:01 +03:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2020-05-24 02:41:30 +03:00
|
|
|
//---------------------------------------------------------------------
|
|
|
|
|
// helpers...
|
|
|
|
|
|
2020-06-03 21:09:19 +03:00
|
|
|
// compare two arrays by items...
|
|
|
|
|
var arrayCmp = function(a, b){
|
|
|
|
|
var ka = Object.keys(a)
|
|
|
|
|
var kb = Object.keys(a)
|
|
|
|
|
return a === b
|
2020-06-07 21:28:04 +03:00
|
|
|
|| (a.length == b.length
|
|
|
|
|
&& ka
|
|
|
|
|
// keep only non matching stuff...
|
|
|
|
|
.filter(function(k){
|
|
|
|
|
return a[k] !== b[k]
|
|
|
|
|
&& a[k] != a[k] })
|
|
|
|
|
.length == 0) }
|
2020-06-03 21:09:19 +03:00
|
|
|
|
2020-06-03 02:48:38 +03:00
|
|
|
|
2020-06-04 00:11:45 +03:00
|
|
|
|
2020-06-04 00:20:45 +03:00
|
|
|
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
|
|
|
|
|
|
// a constructor is a thing that starts with a capital and has a .prototype
|
|
|
|
|
var constructors = function(obj){
|
|
|
|
|
return Object.entries(obj)
|
|
|
|
|
.filter(function([k, o]){
|
2020-06-08 04:16:03 +03:00
|
|
|
return !k.startsWith('_')
|
|
|
|
|
&& k[0] == k[0].toUpperCase()
|
2020-06-04 00:20:45 +03:00
|
|
|
&& o.prototype }) }
|
|
|
|
|
|
|
|
|
|
// an instance is a thing that starts with a lowercase and has a .constructor
|
|
|
|
|
var instances = function(obj){
|
|
|
|
|
return Object.entries(obj)
|
|
|
|
|
.filter(function([k, o]){
|
2020-06-08 04:16:03 +03:00
|
|
|
return !k.startsWith('_')
|
|
|
|
|
&& k[0] == k[0].toLowerCase()
|
2020-06-04 00:20:45 +03:00
|
|
|
&& o.constructor }) }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2020-05-24 02:41:30 +03:00
|
|
|
//---------------------------------------------------------------------
|
2020-06-04 00:20:45 +03:00
|
|
|
// Tests...
|
2020-05-24 02:41:30 +03:00
|
|
|
|
2020-06-01 04:09:40 +03:00
|
|
|
var setups =
|
|
|
|
|
module.setups = {
|
2020-05-30 00:20:07 +03:00
|
|
|
// basic constructor and inheritance...
|
2020-06-08 04:54:40 +03:00
|
|
|
//
|
|
|
|
|
// X
|
2020-06-16 01:28:28 +03:00
|
|
|
// Y <- A <- B <- C <- D <- E
|
|
|
|
|
//
|
|
|
|
|
// This will test:
|
|
|
|
|
// - object creation
|
|
|
|
|
// - basic inheritance
|
|
|
|
|
// - general usecase
|
|
|
|
|
// - .__extends__
|
|
|
|
|
// - method overloading
|
|
|
|
|
// - .parent(..)
|
|
|
|
|
// - .parentCall(..)
|
|
|
|
|
// - .parentProperty(..)
|
|
|
|
|
// - constructor methods (XXX not done...)
|
2020-06-08 04:54:40 +03:00
|
|
|
//
|
2020-05-24 23:59:01 +03:00
|
|
|
basic: function(assert){
|
2020-06-16 01:28:28 +03:00
|
|
|
var X, Y, A, B, C, D, E
|
2020-05-24 02:41:30 +03:00
|
|
|
return {
|
2020-06-08 04:54:40 +03:00
|
|
|
X: X = assert(object.Constructor('X'), `.Constructor(..)`),
|
|
|
|
|
Y: Y = assert(object.C('Y', {
|
|
|
|
|
method: function(){
|
|
|
|
|
var x
|
|
|
|
|
assert(
|
|
|
|
|
(x = object.parentCall(Y.prototype.method, this, ...arguments)) === undefined,
|
|
|
|
|
'y.method(..): expected:', undefined, 'got:', x)
|
|
|
|
|
return 'Y'
|
|
|
|
|
},
|
|
|
|
|
}), `.C(..)`),
|
2020-05-24 02:41:30 +03:00
|
|
|
|
2020-06-08 04:54:40 +03:00
|
|
|
A: A = assert(object.C('A', Y, {
|
2020-06-16 01:28:28 +03:00
|
|
|
get prop(){
|
|
|
|
|
return 'A.prop' },
|
2020-06-08 04:54:40 +03:00
|
|
|
method: function(){
|
|
|
|
|
var x
|
|
|
|
|
assert(
|
|
|
|
|
(x = object.parentCall(A.prototype.method, this, ...arguments)) == 'Y',
|
|
|
|
|
'a.method(..): expected:', 'Y', 'got:', x)
|
|
|
|
|
return 'A'
|
|
|
|
|
},
|
|
|
|
|
}), `inherit (gen1)`),
|
|
|
|
|
B: B = assert(object.C('B', A, {
|
|
|
|
|
// XXX constructor methods...
|
2020-08-09 14:05:30 +03:00
|
|
|
testRelations: function(){
|
|
|
|
|
assert(object.parentOf(A, this),
|
|
|
|
|
'parentOf(A, B): expected to be true')
|
|
|
|
|
assert(object.childOf(this, A),
|
|
|
|
|
'childOf(B, A): expected to be true')
|
|
|
|
|
|
|
|
|
|
assert(!object.parentOf(X, this),
|
|
|
|
|
'parentOf(X, B): expected to be false')
|
|
|
|
|
|
|
|
|
|
assert(object.parentOf(A, E),
|
|
|
|
|
'parentOf(A, E): expected to be true')
|
|
|
|
|
assert(object.childOf(E, A),
|
|
|
|
|
'childOf(E, A): expected to be true')
|
|
|
|
|
|
|
|
|
|
assert(object.related(A, E) && object.related(E, A),
|
|
|
|
|
'related(A, E) and related(E, A): expected to be true')
|
|
|
|
|
|
|
|
|
|
assert(!object.related(X, E)
|
|
|
|
|
&& !object.related(E, X),
|
|
|
|
|
'related(X, E) and related(E, X): expected to be flase')
|
|
|
|
|
},
|
2020-06-08 04:54:40 +03:00
|
|
|
}, {
|
2020-06-16 01:28:28 +03:00
|
|
|
get prop(){
|
|
|
|
|
return 'B.prop' },
|
2020-06-08 04:54:40 +03:00
|
|
|
// XXX methods...
|
|
|
|
|
}), `inherit (gen2) with constructor mixin`),
|
|
|
|
|
C: C = assert(object.C('C', B, {
|
|
|
|
|
method: function(){
|
|
|
|
|
var x
|
|
|
|
|
assert(
|
|
|
|
|
(x = object.parentCall(C.prototype.method, this, ...arguments)) == 'A',
|
|
|
|
|
'c.method(..): expected:', 'A', 'got:', x)
|
2020-06-16 01:28:28 +03:00
|
|
|
|
|
|
|
|
assert(this.prop == 'B.prop',
|
|
|
|
|
'get property value')
|
|
|
|
|
// NOTE: these get "next visible" not "outside current object",
|
|
|
|
|
// this is intentional, the "outside" value is simply
|
|
|
|
|
// accessible via:
|
|
|
|
|
// C.prototype.prop
|
|
|
|
|
assert(object.parent(C.prototype, 'prop') == 'A.prop',
|
|
|
|
|
'get parent property value')
|
|
|
|
|
assert(object.parentProperty(C.prototype, 'prop').get() == 'A.prop',
|
|
|
|
|
'get parent property')
|
|
|
|
|
|
2020-06-29 01:14:21 +03:00
|
|
|
assert(object.parentProperty(C.prototype, 'does-not-exist') === undefined,
|
|
|
|
|
'get non-existent property')
|
|
|
|
|
|
2020-06-08 04:54:40 +03:00
|
|
|
return 'C'
|
|
|
|
|
},
|
|
|
|
|
}), `inherit (gen3)`),
|
2020-06-16 01:28:28 +03:00
|
|
|
D: D = assert(object.C('D', {}, {
|
|
|
|
|
__extends__: C,
|
|
|
|
|
method: function(){
|
|
|
|
|
var x
|
|
|
|
|
assert(
|
|
|
|
|
(x = object.parentCall(D.prototype.method, this, ...arguments)) == 'C',
|
|
|
|
|
'c.method(..): expected:', 'C', 'got:', x)
|
|
|
|
|
return 'D'
|
|
|
|
|
},
|
|
|
|
|
}), '.__extends__ test'),
|
|
|
|
|
E: E = assert(object.C('E', {
|
|
|
|
|
__extends__: C,
|
|
|
|
|
}, {
|
|
|
|
|
method: function(){
|
|
|
|
|
var x
|
|
|
|
|
assert(
|
|
|
|
|
(x = object.parentCall(D.prototype.method, this, ...arguments)) === undefined,
|
|
|
|
|
'c.method(..): expected:', undefined, 'got:', x)
|
|
|
|
|
return 'E'
|
|
|
|
|
},
|
|
|
|
|
}), '.__extends__ test'),
|
2020-05-24 02:41:30 +03:00
|
|
|
} },
|
2020-05-30 00:20:07 +03:00
|
|
|
|
|
|
|
|
// initialization...
|
2020-05-24 23:59:01 +03:00
|
|
|
init: function(assert){
|
2020-06-01 02:49:00 +03:00
|
|
|
var A, B, C
|
2020-05-24 02:41:30 +03:00
|
|
|
return {
|
2020-06-01 02:49:00 +03:00
|
|
|
// init...
|
|
|
|
|
A: A = assert(object.C('A', {
|
|
|
|
|
msg: '.__init__()',
|
|
|
|
|
__init__: function(){
|
|
|
|
|
this.init_has_run = true },
|
|
|
|
|
test_init: function(){
|
|
|
|
|
this.__created_raw ?
|
|
|
|
|
assert(!this.init_has_run, this.msg+' did not run')
|
|
|
|
|
: assert(this.init_has_run, this.msg+' run') },
|
|
|
|
|
}), 'basic .__init__(..)'),
|
|
|
|
|
// new...
|
|
|
|
|
B: B = assert(object.C('B', {
|
|
|
|
|
__new__: function(){
|
|
|
|
|
var o = {}
|
|
|
|
|
o.new_has_run = true
|
|
|
|
|
return o
|
|
|
|
|
},
|
|
|
|
|
test_new: function(){
|
|
|
|
|
assert(this.new_has_run, '.__new__() run') },
|
|
|
|
|
}), 'basic .__new__(..)'),
|
|
|
|
|
// new + init...
|
|
|
|
|
C: C = assert(object.C('C', B, {
|
|
|
|
|
msg: '.__init__() after .__new__()',
|
|
|
|
|
__init__: function(){
|
|
|
|
|
this.init_has_run = true },
|
|
|
|
|
test_init: A.prototype.test_init,
|
|
|
|
|
}), `inherit .__new__()`),
|
|
|
|
|
|
|
|
|
|
// XXX
|
2020-05-24 02:41:30 +03:00
|
|
|
} },
|
2020-05-30 00:20:07 +03:00
|
|
|
|
|
|
|
|
// callable instances...
|
2020-05-24 23:59:01 +03:00
|
|
|
call: function(assert){
|
2020-05-30 00:20:07 +03:00
|
|
|
// constructors...
|
2020-05-24 23:59:01 +03:00
|
|
|
var A, B, C, D, F, G
|
2020-05-30 00:20:07 +03:00
|
|
|
var res = {
|
2020-05-24 23:59:01 +03:00
|
|
|
A: A = assert(object.C('A',
|
|
|
|
|
function(){
|
2020-05-25 00:53:56 +03:00
|
|
|
return 'A'
|
2020-05-24 23:59:01 +03:00
|
|
|
}), 'callable'),
|
|
|
|
|
B: B = assert(object.C('B', {
|
2020-06-01 02:49:00 +03:00
|
|
|
__non_function: true,
|
2020-05-24 23:59:01 +03:00
|
|
|
__call__: function(){
|
2020-06-08 04:16:03 +03:00
|
|
|
assert(
|
|
|
|
|
object.parentCall(B.prototype, '__call__', this, ...arguments) === undefined,
|
|
|
|
|
'call non-existent parent method', 'B')
|
2020-05-25 00:53:56 +03:00
|
|
|
return 'B'
|
2020-05-24 23:59:01 +03:00
|
|
|
},
|
|
|
|
|
}), 'callable'),
|
|
|
|
|
|
|
|
|
|
C: C = assert(object.C('C', A, {}), 'basic inherit'),
|
|
|
|
|
D: D = assert(object.C('D', B, {}), 'basic inherit'),
|
|
|
|
|
|
|
|
|
|
E: E = assert(object.C('E', A,
|
|
|
|
|
function(){
|
2020-05-25 00:53:56 +03:00
|
|
|
assert(
|
|
|
|
|
object.parentCall(E.prototype, '__call__', this, ...arguments) == 'A',
|
|
|
|
|
'parrent call')
|
|
|
|
|
return 'E'
|
2020-05-24 23:59:01 +03:00
|
|
|
}), 'call parent'),
|
|
|
|
|
F: F = assert(object.C('F', B, {
|
|
|
|
|
__call__: function(){
|
2020-05-25 00:53:56 +03:00
|
|
|
assert(
|
|
|
|
|
object.parentCall(F.prototype, '__call__', this, ...arguments) == 'B',
|
|
|
|
|
'parent call')
|
|
|
|
|
return 'F'
|
2020-05-24 23:59:01 +03:00
|
|
|
},
|
|
|
|
|
}), 'call parent\'s .__call__'),
|
2020-05-30 00:20:07 +03:00
|
|
|
}
|
|
|
|
|
// create instances...
|
|
|
|
|
var objs = tests.instance(assert, res)
|
|
|
|
|
// all instances must be callable...
|
|
|
|
|
// NOTE: not all instances are going to be instanceof Function...
|
|
|
|
|
Object.entries(objs)
|
|
|
|
|
.forEach(function([k, o]){
|
|
|
|
|
assert(typeof(o) == 'function', 'instance is callable', k) })
|
2020-06-07 21:28:04 +03:00
|
|
|
|
2020-05-30 00:20:07 +03:00
|
|
|
return Object.assign(res, objs) },
|
|
|
|
|
|
|
|
|
|
// inherit from native constructors...
|
2020-05-24 23:59:01 +03:00
|
|
|
native: function(assert){
|
2020-05-30 00:20:07 +03:00
|
|
|
return [
|
|
|
|
|
Object,
|
|
|
|
|
Array,
|
|
|
|
|
Number,
|
|
|
|
|
Map,
|
|
|
|
|
Set,
|
|
|
|
|
].reduce(function(res, type){
|
|
|
|
|
var n = type.name
|
|
|
|
|
// direct inherit...
|
|
|
|
|
var O = res[n] =
|
|
|
|
|
assert(object.C(n, type, {}), 'inherit from '+n)
|
|
|
|
|
return res
|
|
|
|
|
}, {}) },
|
|
|
|
|
|
2020-06-03 21:09:19 +03:00
|
|
|
// compatibility: native constructors...
|
|
|
|
|
js_constructors: function(assert){
|
|
|
|
|
return {
|
|
|
|
|
Object,
|
|
|
|
|
Array,
|
|
|
|
|
Number,
|
|
|
|
|
Map,
|
|
|
|
|
Set,
|
|
|
|
|
}},
|
2020-06-04 00:11:45 +03:00
|
|
|
// compatibility: prototype tree...
|
2020-06-03 21:09:19 +03:00
|
|
|
js_prototype: function(assert){
|
|
|
|
|
var a, b, c, d
|
|
|
|
|
return {
|
|
|
|
|
a: a = {
|
|
|
|
|
x: 'a',
|
|
|
|
|
method: function(){
|
|
|
|
|
return 'a' },
|
|
|
|
|
},
|
|
|
|
|
b: b = {
|
|
|
|
|
__proto__: a,
|
|
|
|
|
x: 'b',
|
|
|
|
|
},
|
|
|
|
|
c: c = {
|
|
|
|
|
__proto__: b,
|
|
|
|
|
x: 'c',
|
|
|
|
|
method: function(){
|
2020-06-08 19:23:41 +03:00
|
|
|
var x, y
|
2020-06-16 01:28:28 +03:00
|
|
|
assert.array(
|
|
|
|
|
object.values(c, 'x'),
|
|
|
|
|
['c', 'a', 'b'],
|
|
|
|
|
'reach all values of attr')
|
|
|
|
|
assert.array(
|
|
|
|
|
object.values(c, 'x', function(v, o){
|
2020-06-07 21:28:04 +03:00
|
|
|
return v.toUpperCase() }),
|
2020-06-16 01:28:28 +03:00
|
|
|
['C', 'A', 'B'],
|
|
|
|
|
'reach all values of attr')
|
|
|
|
|
assert.array(
|
|
|
|
|
object.sources(c, 'method'),
|
2020-06-08 19:23:41 +03:00
|
|
|
// NOTE: not passing an explicit list as we need
|
|
|
|
|
// to account for mixins...
|
2020-06-16 01:28:28 +03:00
|
|
|
object.sources(c)
|
2020-06-08 19:23:41 +03:00
|
|
|
.filter(function(s){
|
2020-06-16 01:28:28 +03:00
|
|
|
return s.hasOwnProperty('method') }),
|
|
|
|
|
'reach all values of method')
|
2020-06-07 21:28:04 +03:00
|
|
|
assert(
|
2020-06-08 19:23:41 +03:00
|
|
|
(x = object.parent(c, 'x')) == 'b',
|
|
|
|
|
'reach parent attr: expected:', 'b', 'got:'.bold.yellow, x)
|
2020-06-07 21:28:04 +03:00
|
|
|
assert(
|
2020-06-08 19:23:41 +03:00
|
|
|
(x = object.parentCall(c.method, this)) == (y = a.method()),
|
|
|
|
|
'reach parent method: expected:', y, 'got:'.bold.yellow, x)
|
2020-06-03 21:09:19 +03:00
|
|
|
return 'c' },
|
|
|
|
|
},
|
|
|
|
|
d: d = {
|
|
|
|
|
__proto__: c,
|
|
|
|
|
method: function(){
|
|
|
|
|
assert(object.parentCall(d.method, this) == 'c', 'reach parent method', 'd')
|
|
|
|
|
return 'd' },
|
|
|
|
|
},
|
|
|
|
|
}},
|
2020-06-04 00:11:45 +03:00
|
|
|
// compatibility: class/instance...
|
2020-06-03 21:09:19 +03:00
|
|
|
js_class: function(assert){
|
|
|
|
|
var X, Y, Z
|
|
|
|
|
return {
|
|
|
|
|
X: X = class {
|
|
|
|
|
x = 'x'
|
|
|
|
|
method(){
|
|
|
|
|
return 'x' }
|
|
|
|
|
},
|
|
|
|
|
Y: Y = class extends X {
|
|
|
|
|
x = 'y'
|
|
|
|
|
},
|
|
|
|
|
Z: Z = class extends Y {
|
|
|
|
|
x = 'z'
|
|
|
|
|
method(){
|
2020-06-07 21:28:04 +03:00
|
|
|
// XXX this is almost the same as for js_prototype...
|
2020-06-16 01:28:28 +03:00
|
|
|
assert.array(
|
2020-06-07 21:28:04 +03:00
|
|
|
object.values(c, 'x'),
|
2020-06-16 01:28:28 +03:00
|
|
|
['z', 'y', 'x'],
|
2020-06-03 21:09:19 +03:00
|
|
|
'reach all values of attr (class)')
|
2020-06-16 01:28:28 +03:00
|
|
|
assert.array(
|
2020-06-07 21:28:04 +03:00
|
|
|
object.values(c, 'x', function(v, o){
|
|
|
|
|
return v.toUpperCase() }),
|
2020-06-16 01:28:28 +03:00
|
|
|
['C', 'A', 'B'],
|
2020-06-07 21:28:04 +03:00
|
|
|
'reach all values of attr (class)')
|
2020-06-16 01:28:28 +03:00
|
|
|
assert.array(
|
2020-06-03 21:09:19 +03:00
|
|
|
object.sources(c, 'method'),
|
2020-06-16 01:28:28 +03:00
|
|
|
[Z.prototype, X.prototype],
|
2020-06-03 21:09:19 +03:00
|
|
|
'reach all values of method (class)')
|
|
|
|
|
assert(
|
|
|
|
|
object.parent(c, 'x') == super.x,
|
|
|
|
|
'reach super attr (class)')
|
|
|
|
|
assert(
|
|
|
|
|
object.parentCall(c.method, this) == super.method(),
|
|
|
|
|
'reach super method (class)')
|
|
|
|
|
return 'c' }
|
|
|
|
|
},
|
|
|
|
|
}},
|
2020-05-24 02:41:30 +03:00
|
|
|
}
|
|
|
|
|
|
2020-06-01 04:09:40 +03:00
|
|
|
|
|
|
|
|
var modifiers =
|
|
|
|
|
module.modifiers = {
|
2020-05-24 23:59:01 +03:00
|
|
|
// default...
|
2020-06-02 03:05:55 +03:00
|
|
|
//
|
2020-05-24 23:59:01 +03:00
|
|
|
'as-is': function(assert, setup){
|
2020-05-30 00:20:07 +03:00
|
|
|
return setup },
|
|
|
|
|
|
|
|
|
|
// make gen2-3 constructors...
|
|
|
|
|
//
|
|
|
|
|
// NOTE: there is almost no need to test below gen3...
|
|
|
|
|
gen2: function(assert, setup, gen){
|
|
|
|
|
gen = gen || 2
|
|
|
|
|
return constructors(setup)
|
|
|
|
|
.reduce(function(res, [n, O]){
|
|
|
|
|
res[n+'g'+gen] = object.C(n+'g'+gen, O, {})
|
|
|
|
|
return res }, {}) },
|
|
|
|
|
gen3: function(assert, setup){
|
2020-06-01 02:49:00 +03:00
|
|
|
return this.gen2(assert, this.gen2(assert, setup), '3') },
|
2020-05-24 23:59:01 +03:00
|
|
|
|
2020-06-01 02:49:00 +03:00
|
|
|
// generate instances...
|
2020-06-02 03:05:55 +03:00
|
|
|
//
|
2020-06-01 02:49:00 +03:00
|
|
|
// NOTE: these are re-used as tests too...
|
|
|
|
|
instance: function(assert, setup, mode){
|
|
|
|
|
return constructors(setup)
|
|
|
|
|
.reduce(function(res, [k, O]){
|
2020-06-03 21:09:19 +03:00
|
|
|
// native JS constructors do not support no_new or raw modes...
|
|
|
|
|
if((mode == 'raw' || mode == 'no_new') && !O.__rawinstance__){
|
|
|
|
|
return res }
|
2020-06-02 03:05:55 +03:00
|
|
|
// create instance with lowercase name of constructor...
|
|
|
|
|
// NOTE: constructor is expected to be capitalized...
|
2020-06-01 02:49:00 +03:00
|
|
|
var o = res[k.toLowerCase()] =
|
|
|
|
|
mode == 'no_new' ?
|
|
|
|
|
assert(O(), `new:`, k)
|
|
|
|
|
: mode == 'raw' ?
|
|
|
|
|
assert(O.__rawinstance__(), `.__rawinstance__()`, k)
|
|
|
|
|
: assert(new O(), `new:`, k)
|
2020-06-08 16:07:54 +03:00
|
|
|
|
2020-06-01 02:49:00 +03:00
|
|
|
assert(o instanceof O, `instanceof:`, k)
|
2020-06-08 16:07:54 +03:00
|
|
|
|
2020-06-01 02:49:00 +03:00
|
|
|
O.__proto__ instanceof Function
|
2020-06-08 16:07:54 +03:00
|
|
|
// XXX need to test this for constructor mixins too...
|
|
|
|
|
&& !(O.__mixin_constructors && !O.__mixin_flat)
|
|
|
|
|
&& assert(o instanceof o.constructor.__proto__, `instanceof-nested:`, k)
|
|
|
|
|
|
2020-06-01 02:49:00 +03:00
|
|
|
assert(o.constructor === O, `.constructor:`, k)
|
2020-06-08 16:07:54 +03:00
|
|
|
|
2020-06-01 02:49:00 +03:00
|
|
|
assert(o.__proto__ === O.prototype, `.__proto__:`, k)
|
2020-06-08 16:07:54 +03:00
|
|
|
|
2020-06-01 02:49:00 +03:00
|
|
|
return res }, {}) },
|
|
|
|
|
instance_no_new: function(assert, setup){
|
|
|
|
|
return this.instance(assert, setup, 'no_new') },
|
2020-06-02 03:05:55 +03:00
|
|
|
// NOTE: here we mark the raw instances with .__created_raw, this is
|
|
|
|
|
// done to be able to distinguish them from fully initialized
|
|
|
|
|
// instances...
|
2020-06-01 02:49:00 +03:00
|
|
|
instance_raw: function(assert, setup){
|
|
|
|
|
var res = this.instance(assert, setup, 'raw')
|
|
|
|
|
Object.values(res)
|
|
|
|
|
.forEach(function(e){
|
|
|
|
|
Object.assign(
|
|
|
|
|
e,
|
|
|
|
|
{__created_raw: true}) })
|
|
|
|
|
return res },
|
2020-06-01 04:09:40 +03:00
|
|
|
|
2020-06-08 04:16:03 +03:00
|
|
|
// mixins...
|
2020-06-08 20:18:35 +03:00
|
|
|
// NOTE: running this in flat mode will have side-effects -- overwriting
|
|
|
|
|
// existing attributes and methods...
|
2020-06-08 19:23:41 +03:00
|
|
|
// XXX might be a good idea to get the method name from the context... how?
|
2020-06-08 16:07:54 +03:00
|
|
|
mixin_instance: function(assert, setup, flat, filter, get){
|
|
|
|
|
filter = filter || instances
|
|
|
|
|
var attr = '__mixin_' + filter.name
|
|
|
|
|
|
|
|
|
|
var mixin = setup[attr] = {
|
2020-06-09 22:31:19 +03:00
|
|
|
// NOTE: in the real world mixins should have no state, just
|
|
|
|
|
// methods...
|
2020-06-08 19:23:41 +03:00
|
|
|
__mixin: true,
|
2020-06-08 16:07:54 +03:00
|
|
|
[attr]: true,
|
|
|
|
|
__mixin_flat: !!flat,
|
2020-06-08 04:16:03 +03:00
|
|
|
|
2020-06-08 19:23:41 +03:00
|
|
|
method: function(){
|
|
|
|
|
var res = object.parent(mixin.method, this) !== undefined ?
|
|
|
|
|
assert(
|
|
|
|
|
object.parentCall(mixin.method, this, ...arguments),
|
|
|
|
|
'mixin method parent call')
|
|
|
|
|
: false
|
|
|
|
|
return res
|
|
|
|
|
|| 'mixin' },
|
|
|
|
|
|
|
|
|
|
mixinMethod: function(){
|
|
|
|
|
return 'mixin' },
|
2020-06-08 04:16:03 +03:00
|
|
|
}
|
2020-06-08 16:07:54 +03:00
|
|
|
|
|
|
|
|
mixin[attr] = mixin
|
|
|
|
|
filter(setup)
|
2020-06-08 04:16:03 +03:00
|
|
|
.forEach(function([n, o]){
|
2020-06-08 16:07:54 +03:00
|
|
|
o = get ? get(o) : o
|
2020-06-08 04:16:03 +03:00
|
|
|
// mixin once per chain...
|
2020-06-08 16:07:54 +03:00
|
|
|
if(!o || o[attr]){
|
2020-06-08 04:16:03 +03:00
|
|
|
return }
|
|
|
|
|
assert(!object.hasMixin(o, mixin), 'pre mixin test', n)
|
|
|
|
|
assert(flat ?
|
|
|
|
|
object.mixinFlat(o, mixin)
|
|
|
|
|
: object.mixin(o, mixin),
|
|
|
|
|
flat ?
|
|
|
|
|
'mixin (flat)'
|
|
|
|
|
:'mixin', n)
|
|
|
|
|
assert(object.hasMixin(o, mixin), 'mixin test', n)
|
2020-06-09 22:31:19 +03:00
|
|
|
assert(o.mixinMethod() == 'mixin', 'mixin method call')
|
2020-06-08 04:16:03 +03:00
|
|
|
})
|
|
|
|
|
return setup },
|
|
|
|
|
mixin_instance_flat: function(assert, setup){
|
|
|
|
|
return this.mixin_instance(assert, setup, true) },
|
|
|
|
|
mixin_constructor: function(assert, setup, flat){
|
2020-06-08 16:07:54 +03:00
|
|
|
return this.mixin_instance(assert, setup, false, constructors) },
|
|
|
|
|
mixin_constructor_proto: function(assert, setup, flat){
|
|
|
|
|
return this.mixin_instance(assert, setup, false, constructors,
|
|
|
|
|
function(o){
|
|
|
|
|
// skip mixing into Object.prototype...
|
|
|
|
|
return o !== Object
|
|
|
|
|
&& o.prototype }) },
|
2020-06-08 04:16:03 +03:00
|
|
|
mixin_constructor_flat: function(assert, setup){
|
2020-06-08 16:07:54 +03:00
|
|
|
return this.mixin_constructor_proto(assert, setup, true) },
|
2020-06-08 04:16:03 +03:00
|
|
|
/*/ XXX
|
|
|
|
|
mixout: function(assert, setup){
|
|
|
|
|
return {}
|
|
|
|
|
},
|
|
|
|
|
//*/
|
2020-06-01 04:09:40 +03:00
|
|
|
|
|
|
|
|
// sanity checks...
|
2020-06-02 03:05:55 +03:00
|
|
|
//
|
2020-06-01 04:09:40 +03:00
|
|
|
// NOTE: these should have no side-effects but since we can run
|
2020-06-02 03:05:55 +03:00
|
|
|
// them why not run them and verify ;)
|
2020-06-01 04:09:40 +03:00
|
|
|
get methods(){ return tests.methods },
|
|
|
|
|
get constructor_methods(){ return tests.constructor_methods },
|
|
|
|
|
get callables(){ return tests.callables },
|
2020-05-24 02:41:30 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2020-06-01 04:09:40 +03:00
|
|
|
var tests =
|
|
|
|
|
module.tests = {
|
2020-05-30 00:20:07 +03:00
|
|
|
// instance creation...
|
2020-06-01 02:49:00 +03:00
|
|
|
instance: modifiers.instance,
|
|
|
|
|
instance_no_new: modifiers.instance_no_new,
|
|
|
|
|
instance_raw: modifiers.instance_raw,
|
2020-05-24 23:59:01 +03:00
|
|
|
|
2020-05-30 00:53:17 +03:00
|
|
|
/*/ XXX
|
2020-05-24 23:59:01 +03:00
|
|
|
attributes: function(assert, setup){
|
2020-05-30 00:53:17 +03:00
|
|
|
return {} },
|
|
|
|
|
//*/
|
2020-05-24 23:59:01 +03:00
|
|
|
|
2020-06-01 04:09:40 +03:00
|
|
|
// methods...
|
2020-05-24 23:59:01 +03:00
|
|
|
methods: function(assert, setup){
|
2020-06-01 02:49:00 +03:00
|
|
|
instances(setup)
|
|
|
|
|
.forEach(function([k, o]){
|
2020-06-14 04:29:27 +03:00
|
|
|
object.deepKeys(o)
|
2020-06-01 02:49:00 +03:00
|
|
|
.forEach(function(m){
|
|
|
|
|
typeof(o[m]) == 'function'
|
|
|
|
|
// skip special methods...
|
|
|
|
|
&& !m.startsWith('__')
|
|
|
|
|
&& o[m]() }) })
|
2020-06-01 04:09:40 +03:00
|
|
|
return setup },
|
2020-06-01 02:49:00 +03:00
|
|
|
constructor_methods: function(assert, setup){
|
2020-05-24 23:59:01 +03:00
|
|
|
constructors(setup)
|
|
|
|
|
.forEach(function([k, O]){
|
2020-06-14 04:29:27 +03:00
|
|
|
object.deepKeys(O)
|
2020-06-01 02:49:00 +03:00
|
|
|
.forEach(function(m){
|
|
|
|
|
typeof(O[m]) == 'function'
|
|
|
|
|
// skip special methods...
|
|
|
|
|
&& !m.startsWith('__')
|
|
|
|
|
&& O[m]() }) })
|
2020-06-01 04:09:40 +03:00
|
|
|
return setup },
|
|
|
|
|
|
|
|
|
|
// callables...
|
2020-05-25 00:53:56 +03:00
|
|
|
callables: function(assert, setup){
|
2020-06-07 21:28:04 +03:00
|
|
|
// test special case .values(x, '__call__')
|
|
|
|
|
var test = function(obj, name){
|
|
|
|
|
var a, b
|
|
|
|
|
return assert(arrayCmp(
|
|
|
|
|
a = object.values(obj, '__call__')
|
|
|
|
|
.map(function(func){
|
|
|
|
|
return func.call(obj) })
|
|
|
|
|
.flat(),
|
|
|
|
|
// get all callables in prototype chain and call them...
|
|
|
|
|
b = object.sources(obj)
|
|
|
|
|
.filter(function(o){
|
|
|
|
|
return typeof(o) == 'function'
|
|
|
|
|
|| o.hasOwnProperty('__call__') })
|
|
|
|
|
.map(function(o){
|
|
|
|
|
return o.hasOwnProperty('__call__') ?
|
|
|
|
|
o.__call__.call(obj)
|
|
|
|
|
// NOTE: not all callables are instances of Function...
|
|
|
|
|
: Reflect.apply(Function.prototype, o, [obj]) })),
|
|
|
|
|
'values of .__call__ of '+ name +': got:', a, 'expected:', b) }
|
|
|
|
|
|
2020-06-01 04:09:40 +03:00
|
|
|
instances(setup)
|
2020-06-07 21:28:04 +03:00
|
|
|
.filter(function([_, o]){
|
2020-05-28 14:20:47 +03:00
|
|
|
// NOTE: not all callables are instances of Function...
|
2020-06-07 21:28:04 +03:00
|
|
|
return typeof(o) == 'function' })
|
|
|
|
|
.forEach(function([k, o]){
|
|
|
|
|
o.__non_function ?
|
|
|
|
|
assert(!(o instanceof Function), 'non-instanceof Function', k)
|
|
|
|
|
: assert(o instanceof Function, 'instanceof Function', k)
|
|
|
|
|
|
|
|
|
|
assert(o(), 'call', k)
|
|
|
|
|
|
|
|
|
|
test(o, k)
|
|
|
|
|
})
|
2020-06-01 04:09:40 +03:00
|
|
|
return setup },
|
2020-05-24 02:41:30 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// specific independent cases...
|
2020-05-30 00:53:17 +03:00
|
|
|
//
|
|
|
|
|
// NOTE: it is a good idea to migrate tests from here into the main
|
|
|
|
|
// framework so as to be able to use them on more setups...
|
2020-06-01 04:09:40 +03:00
|
|
|
var cases =
|
|
|
|
|
module.cases = {
|
2020-06-10 04:48:07 +03:00
|
|
|
'edge-cases': function(assert){
|
2020-06-16 01:28:28 +03:00
|
|
|
|
|
|
|
|
assert.error('double __extends__ fail', function(){
|
|
|
|
|
var X = object.C('X', {
|
|
|
|
|
__extends__: Object,
|
|
|
|
|
}, {
|
|
|
|
|
__extends__: Function,
|
|
|
|
|
})
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
// native constructor...
|
|
|
|
|
assert.array(
|
|
|
|
|
object.RawInstance(null, Array, 'a', 'b', 'c'),
|
|
|
|
|
['a', 'b', 'c'],
|
|
|
|
|
'native constructor')
|
|
|
|
|
assert(object.RawInstance(null, Number, '123') == 123, 'native constructor')
|
|
|
|
|
|
|
|
|
|
|
2020-06-10 04:48:07 +03:00
|
|
|
var x, y
|
|
|
|
|
|
|
|
|
|
// object.match(..)
|
|
|
|
|
assert(object.match(x = {a: 123, b: '333', c: []}, x) === true, 'match self')
|
|
|
|
|
assert(object.match(x, {a: x.a, b: x.b, c: []}) == false, 'strict mismatch')
|
|
|
|
|
assert(object.match(x, {a: 123, b: 333, c: x.c}, true) === true, 'non-strict match')
|
|
|
|
|
|
|
|
|
|
// object.matchPartial(..)
|
|
|
|
|
assert(object.matchPartial(x, {a: x.a}, true) === true, 'non-strict partial match')
|
|
|
|
|
assert(object.matchPartial(x, {a: x.a, b: x.b, c: x.c}) === true, 'strict partial match')
|
|
|
|
|
|
|
|
|
|
// object.parent(..)
|
|
|
|
|
assert(object.parent({}) === {}.__proto__, 'basic proto')
|
|
|
|
|
assert.error('.parent(..) of anonymous function', function(){
|
|
|
|
|
object.parent(function(){}, {}) })
|
2020-05-30 00:53:17 +03:00
|
|
|
},
|
2020-06-16 01:28:28 +03:00
|
|
|
deepKeys: function(assert){
|
2020-06-14 17:54:01 +03:00
|
|
|
var a = {
|
|
|
|
|
a: true
|
|
|
|
|
}
|
|
|
|
|
var b = {
|
|
|
|
|
__proto__: a,
|
|
|
|
|
b: true,
|
|
|
|
|
}
|
|
|
|
|
var c = {
|
|
|
|
|
__proto__: b,
|
|
|
|
|
c: true,
|
|
|
|
|
}
|
|
|
|
|
|
2020-06-15 16:59:42 +03:00
|
|
|
assert.array(object.deepKeys(c), ['c', 'b', 'a'], 'full chain')
|
|
|
|
|
assert.array(object.deepKeys(c, a), ['c', 'b', 'a'], 'full chain')
|
|
|
|
|
assert.array(object.deepKeys(c, b), ['c', 'b'], 'partial chain')
|
|
|
|
|
assert.array(object.deepKeys(c, c), ['c'], 'partial chain')
|
2020-06-14 17:54:01 +03:00
|
|
|
|
2020-08-09 17:19:17 +03:00
|
|
|
},
|
|
|
|
|
funcMethods: function(assert){
|
|
|
|
|
var X = object.C('X', {
|
|
|
|
|
__call__: function(){
|
|
|
|
|
return true },
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
var x = new X()
|
|
|
|
|
|
|
|
|
|
assert(x(), 'x()')
|
|
|
|
|
assert(x.call(null), 'x.call(null)')
|
|
|
|
|
|
|
|
|
|
var xx = Object.create(x)
|
|
|
|
|
|
|
|
|
|
assert(typeof(xx.call) == 'function', 'xx.call is a function')
|
|
|
|
|
assert(xx.call(null), 'xx.call(null)')
|
|
|
|
|
},
|
2020-05-24 02:41:30 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2020-05-24 23:59:01 +03:00
|
|
|
//---------------------------------------------------------------------
|
2020-06-09 22:31:19 +03:00
|
|
|
|
|
|
|
|
// Assert constructor...
|
|
|
|
|
//
|
|
|
|
|
// Create an assert callable...
|
|
|
|
|
// Assert()
|
|
|
|
|
// Assert(path[, stats[, verbose]])
|
|
|
|
|
// -> assert
|
|
|
|
|
//
|
|
|
|
|
// Create an assert with extended path...
|
|
|
|
|
// assert.push(path)
|
|
|
|
|
// -> assert
|
|
|
|
|
//
|
|
|
|
|
// Create an assert with shortened path...
|
|
|
|
|
// assert.pop(path)
|
|
|
|
|
// -> assert
|
|
|
|
|
//
|
|
|
|
|
//
|
|
|
|
|
// Assertions...
|
|
|
|
|
//
|
|
|
|
|
// value is truthy...
|
|
|
|
|
// assert(value, msg, ..)
|
|
|
|
|
// -> value
|
|
|
|
|
//
|
|
|
|
|
// Assert truth and catch exceptions...
|
|
|
|
|
// assert.assert(msg, test())
|
|
|
|
|
// -> value
|
|
|
|
|
//
|
|
|
|
|
// Assert if test does not throw...
|
|
|
|
|
// assert.error(msg, test())
|
|
|
|
|
// -> error
|
|
|
|
|
//
|
|
|
|
|
//
|
|
|
|
|
var Assert =
|
|
|
|
|
module.Assert =
|
|
|
|
|
object.Constructor('Assert', {
|
|
|
|
|
stats: null,
|
|
|
|
|
|
|
|
|
|
__verbose: null,
|
|
|
|
|
get verbose(){
|
|
|
|
|
return this.__verbose == null ?
|
|
|
|
|
module.VERBOSE
|
|
|
|
|
: this.__verbose },
|
|
|
|
|
set verbose(value){
|
|
|
|
|
value == null ?
|
|
|
|
|
(delete this.__verbose)
|
|
|
|
|
: (this.__verbose = value) },
|
|
|
|
|
|
|
|
|
|
// path API...
|
|
|
|
|
__str_path: null,
|
|
|
|
|
get strPath(){
|
|
|
|
|
return (this.__str_path =
|
|
|
|
|
this.__str_path
|
|
|
|
|
|| (this.path || []).join(':')) },
|
|
|
|
|
path: null,
|
|
|
|
|
push: function(path){
|
|
|
|
|
return this.constructor(
|
|
|
|
|
[
|
|
|
|
|
...(this.path || []),
|
|
|
|
|
...(path instanceof Array ?
|
|
|
|
|
path
|
|
|
|
|
: [path])
|
|
|
|
|
],
|
2020-08-09 14:05:30 +03:00
|
|
|
this.stats,
|
2020-06-09 22:31:19 +03:00
|
|
|
this.verbose) },
|
|
|
|
|
pop: function(){
|
|
|
|
|
return this.constructor(
|
|
|
|
|
(this.path || []).slice(0, -1),
|
|
|
|
|
this.stats,
|
|
|
|
|
this.verbose) },
|
|
|
|
|
|
|
|
|
|
// assertion API...
|
|
|
|
|
__call__: function(_, value, msg, ...args){
|
|
|
|
|
// stats...
|
|
|
|
|
var stats = this.stats
|
|
|
|
|
stats.assertions = (stats.assertions || 0) + 1
|
|
|
|
|
!value
|
|
|
|
|
&& (stats.failures = (stats.failures || 0) + 1)
|
|
|
|
|
|
|
|
|
|
// assertions...
|
|
|
|
|
this.verbose
|
|
|
|
|
&& console.log(this.strPath +': '+ msg.bold, ...args)
|
|
|
|
|
console.assert(value, this.strPath.bold +': '+ msg.bold.yellow, ...args)
|
|
|
|
|
|
|
|
|
|
return value },
|
2020-06-10 04:48:07 +03:00
|
|
|
istrue: function(msg, test){
|
2020-06-09 22:31:19 +03:00
|
|
|
try {
|
|
|
|
|
return this(test.call(this), msg)
|
|
|
|
|
|
|
|
|
|
} catch(err){
|
|
|
|
|
this(false, msg)
|
|
|
|
|
return err } },
|
|
|
|
|
error: function(msg, test){
|
|
|
|
|
try {
|
|
|
|
|
test.call(this)
|
|
|
|
|
return this(false, msg)
|
|
|
|
|
|
|
|
|
|
} catch(err){
|
|
|
|
|
this(true, msg)
|
|
|
|
|
return err } },
|
2020-06-15 16:59:42 +03:00
|
|
|
// XXX
|
|
|
|
|
array: function(value, expected, msg){
|
|
|
|
|
return this(arrayCmp(value, expected),
|
|
|
|
|
msg +':', 'expected:', expected, 'got:', value) },
|
2020-06-09 22:31:19 +03:00
|
|
|
|
|
|
|
|
__init__: function(path, stats, verbose){
|
|
|
|
|
this.path = path instanceof Array ?
|
|
|
|
|
path
|
|
|
|
|
: [path]
|
|
|
|
|
this.stats = stats || {}
|
|
|
|
|
this.verbose = verbose
|
|
|
|
|
},
|
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2020-05-30 00:53:17 +03:00
|
|
|
// Test runner...
|
|
|
|
|
//
|
2020-06-02 03:05:55 +03:00
|
|
|
// runner()
|
2020-06-02 15:56:03 +03:00
|
|
|
// runner('*')
|
2020-06-02 03:05:55 +03:00
|
|
|
// -> stats
|
|
|
|
|
//
|
2020-06-02 15:56:03 +03:00
|
|
|
// runner('case')
|
2020-06-02 03:05:55 +03:00
|
|
|
// runner('setup:test')
|
|
|
|
|
// runner('setup:mod:test')
|
|
|
|
|
// -> stats
|
|
|
|
|
//
|
|
|
|
|
//
|
2020-05-30 00:53:17 +03:00
|
|
|
// This will run
|
|
|
|
|
// test(modifier(setup))
|
|
|
|
|
// for each test in tests
|
|
|
|
|
// for each modifier in modifiers
|
|
|
|
|
// for each setup in setups
|
|
|
|
|
// case()
|
|
|
|
|
// for each case in cases
|
|
|
|
|
//
|
2020-06-02 03:05:55 +03:00
|
|
|
//
|
|
|
|
|
// NOTE: chaining more than one modifier is not yet supported (XXX)
|
2020-06-01 04:09:40 +03:00
|
|
|
var runner =
|
|
|
|
|
module.runner =
|
2020-06-02 15:56:03 +03:00
|
|
|
function(chain, stats){
|
2020-06-02 03:05:55 +03:00
|
|
|
// parse chain...
|
2020-06-02 15:56:03 +03:00
|
|
|
chain = (chain == '*' || chain == null) ?
|
|
|
|
|
[]
|
|
|
|
|
: chain
|
2020-06-02 03:05:55 +03:00
|
|
|
chain = chain instanceof Array ?
|
|
|
|
|
chain
|
|
|
|
|
: chain.split(/:/)
|
|
|
|
|
var chain_length = chain.length
|
|
|
|
|
var setup = chain.shift() || '*'
|
|
|
|
|
var test = chain.pop() || '*'
|
|
|
|
|
var mod = chain.pop() || '*'
|
2020-06-02 19:26:14 +03:00
|
|
|
mod = chain_length == 2 ?
|
|
|
|
|
'as-is'
|
|
|
|
|
: mod
|
2020-06-02 03:05:55 +03:00
|
|
|
|
2020-06-02 15:56:03 +03:00
|
|
|
// stats...
|
|
|
|
|
stats = stats || {}
|
|
|
|
|
Object.assign(stats, {
|
|
|
|
|
tests: stats.tests || 0,
|
|
|
|
|
assertions: stats.assertions || 0,
|
|
|
|
|
failures: stats.failures || 0,
|
|
|
|
|
time: stats.time || 0,
|
|
|
|
|
})
|
|
|
|
|
|
2020-06-01 04:09:40 +03:00
|
|
|
var started = Date.now()
|
2020-05-24 02:41:30 +03:00
|
|
|
// tests...
|
2020-06-09 22:31:19 +03:00
|
|
|
var assert = Assert('[TEST]', stats, module.VERBOSE)
|
2020-06-02 03:05:55 +03:00
|
|
|
chain_length != 1
|
|
|
|
|
&& Object.keys(tests)
|
|
|
|
|
.filter(function(t){
|
|
|
|
|
return test == '*' || test == t })
|
|
|
|
|
.forEach(function(t){
|
|
|
|
|
// modifiers...
|
|
|
|
|
Object.keys(modifiers)
|
|
|
|
|
.filter(function(m){
|
|
|
|
|
return mod == '*' || mod == m })
|
|
|
|
|
.forEach(function(m){
|
|
|
|
|
// setups...
|
|
|
|
|
Object.keys(setups)
|
|
|
|
|
.filter(function(s){
|
|
|
|
|
return setup == '*' || setup == s })
|
|
|
|
|
.forEach(function(s){
|
|
|
|
|
if(typeof(setups[s]) != 'function'){
|
|
|
|
|
return }
|
|
|
|
|
// run the test...
|
|
|
|
|
stats.tests += 1
|
2020-06-09 22:31:19 +03:00
|
|
|
var _assert = assert.push([s, m, t])
|
2020-06-02 03:05:55 +03:00
|
|
|
tests[t](_assert,
|
|
|
|
|
modifiers[m](_assert,
|
|
|
|
|
setups[s](_assert))) }) }) })
|
2020-05-24 02:41:30 +03:00
|
|
|
// cases...
|
2020-06-09 22:31:19 +03:00
|
|
|
var assert = Assert('[CASE]', stats, module.VERBOSE)
|
2020-06-02 03:05:55 +03:00
|
|
|
chain_length <= 1
|
|
|
|
|
&& Object.keys(cases)
|
|
|
|
|
.filter(function(s){
|
|
|
|
|
return setup == '*' || setup == s })
|
|
|
|
|
.forEach(function(c){
|
|
|
|
|
stats.tests += 1
|
2020-06-09 22:31:19 +03:00
|
|
|
cases[c]( assert.push(c) ) })
|
2020-06-01 04:09:40 +03:00
|
|
|
// runtime...
|
2020-06-02 15:56:03 +03:00
|
|
|
stats.time += Date.now() - started
|
2020-05-28 14:20:47 +03:00
|
|
|
return stats }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------
|
|
|
|
|
|
2020-06-02 03:05:55 +03:00
|
|
|
// we are run from command line -> test...
|
2020-06-01 04:09:40 +03:00
|
|
|
//
|
|
|
|
|
// NOTE: normally this would be require.main === module but we are
|
|
|
|
|
// overriding module in the compatibility wrapper so we have to do
|
|
|
|
|
// things differently...
|
|
|
|
|
//
|
2020-06-02 03:05:55 +03:00
|
|
|
// XXX update wrapper to make the condition simpler...
|
2020-06-01 04:09:40 +03:00
|
|
|
if(typeof(__filename) != 'undefined'
|
|
|
|
|
&& __filename == (require.main || {}).filename){
|
2020-05-28 14:20:47 +03:00
|
|
|
|
2020-06-29 01:14:21 +03:00
|
|
|
var stats = {}
|
2020-06-04 02:45:25 +03:00
|
|
|
|
2020-06-29 01:14:21 +03:00
|
|
|
// parse args...
|
|
|
|
|
argv.Parser({
|
|
|
|
|
// doc...
|
|
|
|
|
usage: `$SCRIPTNAME [OPTIONS] [CHAIN] ...`,
|
2020-08-02 20:35:05 +03:00
|
|
|
doc: object.text`Run tests on object.js module.
|
2020-06-29 01:14:21 +03:00
|
|
|
|
|
|
|
|
Tests run by $SCRIPTNAME can be specified in one of the
|
|
|
|
|
following formats:
|
|
|
|
|
|
|
|
|
|
<case>
|
|
|
|
|
<setup>:<test>
|
|
|
|
|
<setup>:<modifier>:<test>
|
|
|
|
|
|
|
|
|
|
Each of the items in the test spec can be a "*" indicating
|
|
|
|
|
that all relevant items should be used, for example:
|
|
|
|
|
|
2020-07-14 20:10:49 +03:00
|
|
|
$ ./$SCRIPTNAME basic:*:*
|
2020-06-29 01:14:21 +03:00
|
|
|
|
|
|
|
|
Here $SCRIPTNAME is instructed to run all tests and modifiers
|
|
|
|
|
only on the basic setup.
|
|
|
|
|
|
|
|
|
|
Zero or more sets of tests can be specified.
|
|
|
|
|
|
|
|
|
|
When no tests specified $SCRIPTNAME will run all tests.
|
2020-08-02 20:35:05 +03:00
|
|
|
`,
|
2020-06-29 01:14:21 +03:00
|
|
|
examples: [
|
|
|
|
|
['$ ./$SCRIPTNAME',
|
|
|
|
|
'run all tests.'.gray],
|
|
|
|
|
['$ ./$SCRIPTNAME basic:*:*',
|
|
|
|
|
'run all tests and modifiers on "basic" setup.'.gray,
|
|
|
|
|
'(see $SCRIPTNAME -l for more info)'.gray],
|
|
|
|
|
['$ ./$SCRIPTNAME -v example',
|
|
|
|
|
'run "example" test in verbose mode.'.gray],
|
|
|
|
|
['$ ./$SCRIPTNAME native:gen3:methods init:gen3:methods',
|
|
|
|
|
'run two tests/patterns.'.gray],
|
2020-08-02 08:03:31 +03:00
|
|
|
//['$ export VERBOSE=1 && ./$SCRIPTNAME',
|
|
|
|
|
// 'set verbose mode globally and run tests.'.gray],
|
2020-06-29 01:14:21 +03:00
|
|
|
],
|
|
|
|
|
|
|
|
|
|
// options...
|
|
|
|
|
'-l': '-list',
|
|
|
|
|
'-list': {
|
|
|
|
|
doc: 'list available tests.',
|
|
|
|
|
handler: function(){
|
2020-08-02 20:35:05 +03:00
|
|
|
console.log(
|
|
|
|
|
object.text`Tests run by %s can be of the following forms:
|
2020-06-04 02:45:25 +03:00
|
|
|
|
|
|
|
|
<case>
|
|
|
|
|
<setup>:<test>
|
|
|
|
|
<setup>:<modifier>:<test>
|
|
|
|
|
|
2020-06-29 01:14:21 +03:00
|
|
|
Setups:
|
|
|
|
|
${ Object.keys(setups).join('\n\
|
|
|
|
|
') }
|
|
|
|
|
|
|
|
|
|
Modifiers:
|
|
|
|
|
${ Object.keys(modifiers).join('\n\
|
|
|
|
|
') }
|
|
|
|
|
|
|
|
|
|
Tests:
|
|
|
|
|
${ Object.keys(tests).join('\n\
|
|
|
|
|
') }
|
|
|
|
|
|
|
|
|
|
Standalone test cases:
|
|
|
|
|
${ Object.keys(cases).join('\n\
|
|
|
|
|
') }
|
2020-08-02 20:35:05 +03:00
|
|
|
`, this.scriptName)
|
2020-06-29 01:14:21 +03:00
|
|
|
process.exit() }},
|
2020-06-29 02:53:20 +03:00
|
|
|
|
2020-06-29 01:14:21 +03:00
|
|
|
'-verbose': {
|
2020-07-14 20:10:49 +03:00
|
|
|
doc: 'verbose mode',
|
2020-08-02 20:29:45 +03:00
|
|
|
env: 'VERBOSE',
|
2020-06-29 01:14:21 +03:00
|
|
|
handler: function(){
|
2020-08-02 08:03:31 +03:00
|
|
|
module.VERBOSE = true }
|
|
|
|
|
},
|
2020-08-04 03:20:52 +03:00
|
|
|
// hide stuff we do not need...
|
2020-08-02 08:03:31 +03:00
|
|
|
'-quiet': undefined,
|
2020-08-04 03:20:52 +03:00
|
|
|
'-': undefined,
|
2020-07-14 20:10:49 +03:00
|
|
|
|
|
|
|
|
'@*': undefined,
|
2020-06-29 01:14:21 +03:00
|
|
|
})
|
|
|
|
|
.then(function(chains){
|
|
|
|
|
// run the tests...
|
|
|
|
|
chains.length > 0 ?
|
|
|
|
|
chains
|
|
|
|
|
.forEach(function(chain){
|
|
|
|
|
runner(chain, stats) })
|
|
|
|
|
: runner('*', stats)
|
|
|
|
|
|
|
|
|
|
// print stats...
|
2020-07-14 20:10:49 +03:00
|
|
|
console.log(
|
|
|
|
|
'Tests run:', stats.tests,
|
2020-06-29 01:14:21 +03:00
|
|
|
' Assertions:', stats.assertions,
|
|
|
|
|
' Failures:', stats.failures,
|
|
|
|
|
` (${stats.time}ms)`.bold.black)
|
|
|
|
|
|
|
|
|
|
// report error status to the OS...
|
|
|
|
|
process.exit(stats.failures)
|
|
|
|
|
})
|
2020-07-14 20:10:49 +03:00
|
|
|
(process.argv) }
|
2020-05-24 02:41:30 +03:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2020-06-03 02:48:38 +03:00
|
|
|
|
2020-05-24 02:41:30 +03:00
|
|
|
/**********************************************************************
|
|
|
|
|
* vim:set ts=4 sw=4 : */ return module })
|