保誠-保戶業務員媒合平台
HelenHuang
2022-06-09 9bdb95c9e34cef640534e5e5a1e2225a80442000
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#!/usr/bin/env node
var fs = require('fs');
var spawn = require('child_process').spawn;
var path = require('path');
 
var ret = 0;
function runTest(test, cb) {
    var env = {};
    for (var ii in process.env) {
        env[ii] = process.env[ii];
    }
    env.NODE_PATH = __dirname;
    var args = [];
    if (process.versions.modules >= 57 && process.versions.modules < 59) {
        // Node v8 requires forcing async hook checks. In Node v9 (>=59) and beyond,
        // async hooks checks are on by default (and the param no longer exists).
        args.push('--force-async-hooks-checks');
    }
    args.push(path.join('test', test));
    var proc = spawn(process.execPath, args, { env: env });
    proc.stdout.setEncoding('utf8');
    proc.stderr.setEncoding('utf8');
 
    var stdout = '', stderr = '';
    proc.stdout.on('data', function(data) {
        stdout += data;
    });
    proc.stderr.on('data', function(data) {
        stderr += data;
    });
    proc.stdin.end();
 
    proc.on('exit', function(code) {
        if (stdout !== 'pass\n' || stderr !== '') {
            ret = 1;
            console.error(
                test+ ': *fail*\n'+
                'code: '+ code+ '\n'+
                'stderr: '+ stderr+ '\n'+
                'stdout: '+ stdout
            );
        } else if (code !== 0) {
            ret = 1;
            console.error(test+ ': fail ('+ code+ ')');
        } else {
            console.log(test+ ': '+ 'pass');
        }
        cb();
    });
}
 
var cb = function() {
    process.exit(ret);
};
fs.readdirSync('./test').reverse().forEach(function(file) {
    cb = new function(cb) {
        return function(err) {
            if (err) return cb(err);
            runTest(file, cb);
        };
    }(cb);
});
cb();