protobufjs 6.10.2 → 6.11.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +28 -0
- package/bin/pbjs +0 -0
- package/bin/pbts +0 -0
- package/cli/README.md +163 -0
- package/cli/node_modules/.package-lock.json +256 -0
- package/cli/node_modules/acorn/CHANGELOG.md +620 -0
- package/cli/node_modules/acorn/LICENSE +21 -0
- package/cli/node_modules/acorn/README.md +269 -0
- package/cli/node_modules/acorn/bin/acorn +4 -0
- package/cli/node_modules/acorn/dist/acorn.d.ts +209 -0
- package/cli/node_modules/acorn/dist/acorn.js +5186 -0
- package/cli/node_modules/acorn/dist/acorn.js.map +1 -0
- package/cli/node_modules/acorn/dist/acorn.mjs +5155 -0
- package/cli/node_modules/acorn/dist/acorn.mjs.d.ts +2 -0
- package/cli/node_modules/acorn/dist/acorn.mjs.map +1 -0
- package/cli/node_modules/acorn/dist/bin.js +64 -0
- package/cli/node_modules/acorn/package.json +35 -0
- package/cli/node_modules/acorn-jsx/LICENSE +19 -0
- package/cli/node_modules/acorn-jsx/README.md +40 -0
- package/cli/node_modules/acorn-jsx/index.js +488 -0
- package/cli/node_modules/acorn-jsx/package.json +27 -0
- package/cli/node_modules/acorn-jsx/xhtml.js +255 -0
- package/cli/node_modules/balanced-match/.npmignore +5 -0
- package/cli/node_modules/balanced-match/LICENSE.md +21 -0
- package/cli/node_modules/balanced-match/README.md +91 -0
- package/cli/node_modules/balanced-match/index.js +59 -0
- package/cli/node_modules/balanced-match/package.json +49 -0
- package/cli/node_modules/brace-expansion/LICENSE +21 -0
- package/cli/node_modules/brace-expansion/README.md +129 -0
- package/cli/node_modules/brace-expansion/index.js +201 -0
- package/cli/node_modules/brace-expansion/package.json +47 -0
- package/cli/node_modules/concat-map/.travis.yml +4 -0
- package/cli/node_modules/concat-map/LICENSE +18 -0
- package/cli/node_modules/concat-map/README.markdown +62 -0
- package/cli/node_modules/concat-map/example/map.js +6 -0
- package/cli/node_modules/concat-map/index.js +13 -0
- package/cli/node_modules/concat-map/package.json +43 -0
- package/cli/node_modules/concat-map/test/map.js +39 -0
- package/cli/node_modules/deep-is/.npmignore +1 -0
- package/cli/node_modules/deep-is/.travis.yml +6 -0
- package/cli/node_modules/deep-is/LICENSE +22 -0
- package/cli/node_modules/deep-is/README.markdown +70 -0
- package/cli/node_modules/deep-is/example/cmp.js +11 -0
- package/cli/node_modules/deep-is/index.js +102 -0
- package/cli/node_modules/deep-is/package.json +61 -0
- package/cli/node_modules/deep-is/test/NaN.js +16 -0
- package/cli/node_modules/deep-is/test/cmp.js +23 -0
- package/cli/node_modules/deep-is/test/neg-vs-pos-0.js +15 -0
- package/cli/node_modules/escodegen/LICENSE.BSD +21 -0
- package/cli/node_modules/escodegen/README.md +84 -0
- package/cli/node_modules/escodegen/bin/escodegen.js +77 -0
- package/cli/node_modules/escodegen/bin/esgenerate.js +64 -0
- package/cli/node_modules/escodegen/escodegen.js +2647 -0
- package/cli/node_modules/escodegen/package.json +62 -0
- package/cli/node_modules/eslint-visitor-keys/CHANGELOG.md +25 -0
- package/cli/node_modules/eslint-visitor-keys/LICENSE +201 -0
- package/cli/node_modules/eslint-visitor-keys/README.md +98 -0
- package/cli/node_modules/eslint-visitor-keys/lib/index.js +81 -0
- package/cli/node_modules/eslint-visitor-keys/lib/visitor-keys.json +284 -0
- package/cli/node_modules/eslint-visitor-keys/package.json +40 -0
- package/cli/node_modules/espree/CHANGELOG.md +509 -0
- package/cli/node_modules/espree/LICENSE +25 -0
- package/cli/node_modules/espree/README.md +233 -0
- package/cli/node_modules/espree/espree.js +177 -0
- package/cli/node_modules/espree/lib/ast-node-types.js +96 -0
- package/cli/node_modules/espree/lib/espree.js +286 -0
- package/cli/node_modules/espree/lib/features.js +29 -0
- package/cli/node_modules/espree/lib/options.js +106 -0
- package/cli/node_modules/espree/lib/token-translator.js +263 -0
- package/cli/node_modules/espree/lib/visitor-keys.js +123 -0
- package/cli/node_modules/espree/package.json +64 -0
- package/cli/node_modules/esprima/ChangeLog +235 -0
- package/cli/node_modules/esprima/LICENSE.BSD +21 -0
- package/cli/node_modules/esprima/README.md +46 -0
- package/cli/node_modules/esprima/bin/esparse.js +139 -0
- package/cli/node_modules/esprima/bin/esvalidate.js +236 -0
- package/cli/node_modules/esprima/dist/esprima.js +6709 -0
- package/cli/node_modules/esprima/package.json +112 -0
- package/cli/node_modules/estraverse/.jshintrc +16 -0
- package/cli/node_modules/estraverse/LICENSE.BSD +19 -0
- package/cli/node_modules/estraverse/README.md +153 -0
- package/cli/node_modules/estraverse/estraverse.js +801 -0
- package/cli/node_modules/estraverse/gulpfile.js +70 -0
- package/cli/node_modules/estraverse/package.json +40 -0
- package/cli/node_modules/esutils/LICENSE.BSD +19 -0
- package/cli/node_modules/esutils/README.md +174 -0
- package/cli/node_modules/esutils/lib/ast.js +144 -0
- package/cli/node_modules/esutils/lib/code.js +135 -0
- package/cli/node_modules/esutils/lib/keyword.js +165 -0
- package/cli/node_modules/esutils/lib/utils.js +33 -0
- package/cli/node_modules/esutils/package.json +44 -0
- package/cli/node_modules/fast-levenshtein/LICENSE.md +25 -0
- package/cli/node_modules/fast-levenshtein/README.md +104 -0
- package/cli/node_modules/fast-levenshtein/levenshtein.js +136 -0
- package/cli/node_modules/fast-levenshtein/package.json +39 -0
- package/cli/node_modules/fs.realpath/LICENSE +43 -0
- package/cli/node_modules/fs.realpath/README.md +33 -0
- package/cli/node_modules/fs.realpath/index.js +66 -0
- package/cli/node_modules/fs.realpath/old.js +303 -0
- package/cli/node_modules/fs.realpath/package.json +26 -0
- package/cli/node_modules/glob/LICENSE +21 -0
- package/cli/node_modules/glob/README.md +375 -0
- package/cli/node_modules/glob/changelog.md +67 -0
- package/cli/node_modules/glob/common.js +240 -0
- package/cli/node_modules/glob/glob.js +790 -0
- package/cli/node_modules/glob/package.json +46 -0
- package/cli/node_modules/glob/sync.js +486 -0
- package/cli/node_modules/inflight/LICENSE +15 -0
- package/cli/node_modules/inflight/README.md +37 -0
- package/cli/node_modules/inflight/inflight.js +54 -0
- package/cli/node_modules/inflight/package.json +29 -0
- package/cli/node_modules/inherits/LICENSE +16 -0
- package/cli/node_modules/inherits/README.md +42 -0
- package/cli/node_modules/inherits/inherits.js +9 -0
- package/cli/node_modules/inherits/inherits_browser.js +27 -0
- package/cli/node_modules/inherits/package.json +29 -0
- package/cli/node_modules/levn/LICENSE +22 -0
- package/cli/node_modules/levn/README.md +196 -0
- package/cli/node_modules/levn/lib/cast.js +298 -0
- package/cli/node_modules/levn/lib/coerce.js +285 -0
- package/cli/node_modules/levn/lib/index.js +22 -0
- package/cli/node_modules/levn/lib/parse-string.js +113 -0
- package/cli/node_modules/levn/lib/parse.js +102 -0
- package/cli/node_modules/levn/package.json +47 -0
- package/cli/node_modules/minimatch/LICENSE +15 -0
- package/cli/node_modules/minimatch/README.md +209 -0
- package/cli/node_modules/minimatch/minimatch.js +923 -0
- package/cli/node_modules/minimatch/package.json +30 -0
- package/cli/node_modules/once/LICENSE +15 -0
- package/cli/node_modules/once/README.md +79 -0
- package/cli/node_modules/once/once.js +42 -0
- package/cli/node_modules/once/package.json +33 -0
- package/cli/node_modules/optionator/CHANGELOG.md +56 -0
- package/cli/node_modules/optionator/LICENSE +22 -0
- package/cli/node_modules/optionator/README.md +238 -0
- package/cli/node_modules/optionator/lib/help.js +260 -0
- package/cli/node_modules/optionator/lib/index.js +465 -0
- package/cli/node_modules/optionator/lib/util.js +54 -0
- package/cli/node_modules/optionator/package.json +44 -0
- package/cli/node_modules/path-is-absolute/index.js +20 -0
- package/cli/node_modules/path-is-absolute/license +21 -0
- package/cli/node_modules/path-is-absolute/package.json +43 -0
- package/cli/node_modules/path-is-absolute/readme.md +59 -0
- package/cli/node_modules/prelude-ls/CHANGELOG.md +99 -0
- package/cli/node_modules/prelude-ls/LICENSE +22 -0
- package/cli/node_modules/prelude-ls/README.md +15 -0
- package/cli/node_modules/prelude-ls/lib/Func.js +65 -0
- package/cli/node_modules/prelude-ls/lib/List.js +686 -0
- package/cli/node_modules/prelude-ls/lib/Num.js +130 -0
- package/cli/node_modules/prelude-ls/lib/Obj.js +154 -0
- package/cli/node_modules/prelude-ls/lib/Str.js +92 -0
- package/cli/node_modules/prelude-ls/lib/index.js +178 -0
- package/cli/node_modules/prelude-ls/package.json +52 -0
- package/cli/node_modules/rimraf/CHANGELOG.md +65 -0
- package/cli/node_modules/rimraf/LICENSE +15 -0
- package/cli/node_modules/rimraf/README.md +101 -0
- package/cli/node_modules/rimraf/bin.js +68 -0
- package/cli/node_modules/rimraf/package.json +32 -0
- package/cli/node_modules/rimraf/rimraf.js +360 -0
- package/cli/node_modules/source-map/CHANGELOG.md +301 -0
- package/cli/node_modules/source-map/LICENSE +28 -0
- package/cli/node_modules/source-map/README.md +742 -0
- package/cli/node_modules/source-map/dist/source-map.debug.js +3234 -0
- package/cli/node_modules/source-map/dist/source-map.js +3233 -0
- package/cli/node_modules/source-map/dist/source-map.min.js +2 -0
- package/cli/node_modules/source-map/dist/source-map.min.js.map +1 -0
- package/cli/node_modules/source-map/lib/array-set.js +121 -0
- package/cli/node_modules/source-map/lib/base64-vlq.js +140 -0
- package/cli/node_modules/source-map/lib/base64.js +67 -0
- package/cli/node_modules/source-map/lib/binary-search.js +111 -0
- package/cli/node_modules/source-map/lib/mapping-list.js +79 -0
- package/cli/node_modules/source-map/lib/quick-sort.js +114 -0
- package/cli/node_modules/source-map/lib/source-map-consumer.js +1145 -0
- package/cli/node_modules/source-map/lib/source-map-generator.js +425 -0
- package/cli/node_modules/source-map/lib/source-node.js +413 -0
- package/cli/node_modules/source-map/lib/util.js +488 -0
- package/cli/node_modules/source-map/package.json +73 -0
- package/cli/node_modules/source-map/source-map.d.ts +98 -0
- package/cli/node_modules/source-map/source-map.js +8 -0
- package/cli/node_modules/tmp/CHANGELOG.md +288 -0
- package/cli/node_modules/tmp/LICENSE +21 -0
- package/cli/node_modules/tmp/README.md +365 -0
- package/cli/node_modules/tmp/lib/tmp.js +780 -0
- package/cli/node_modules/tmp/package.json +58 -0
- package/cli/node_modules/type-check/LICENSE +22 -0
- package/cli/node_modules/type-check/README.md +210 -0
- package/cli/node_modules/type-check/lib/check.js +126 -0
- package/cli/node_modules/type-check/lib/index.js +16 -0
- package/cli/node_modules/type-check/lib/parse-type.js +196 -0
- package/cli/node_modules/type-check/package.json +40 -0
- package/cli/node_modules/word-wrap/LICENSE +21 -0
- package/cli/node_modules/word-wrap/README.md +182 -0
- package/cli/node_modules/word-wrap/index.d.ts +50 -0
- package/cli/node_modules/word-wrap/index.js +46 -0
- package/cli/node_modules/word-wrap/package.json +77 -0
- package/cli/node_modules/wrappy/LICENSE +15 -0
- package/cli/node_modules/wrappy/README.md +36 -0
- package/cli/node_modules/wrappy/package.json +29 -0
- package/cli/node_modules/wrappy/wrappy.js +33 -0
- package/cli/package.json +1 -0
- package/cli/pbjs.js +3 -1
- package/cli/targets/static.js +7 -1
- package/dist/light/protobuf.js +17 -5
- package/dist/light/protobuf.js.map +1 -1
- package/dist/light/protobuf.min.js +3 -3
- package/dist/light/protobuf.min.js.map +1 -1
- package/dist/minimal/protobuf.js +2 -2
- package/dist/minimal/protobuf.min.js +3 -3
- package/dist/minimal/protobuf.min.js.map +1 -1
- package/dist/protobuf.js +54 -9
- package/dist/protobuf.js.map +1 -1
- package/dist/protobuf.min.js +3 -3
- package/dist/protobuf.min.js.map +1 -1
- package/index.d.ts +11 -1
- package/package.json +2 -2
- package/src/field.js +3 -0
- package/src/namespace.js +2 -1
- package/src/parse.js +37 -4
- package/package-lock.json +0 -8922
- package/scripts/changelog.js +0 -150
|
@@ -0,0 +1,236 @@
|
|
|
1
|
+
#!/usr/bin/env node
|
|
2
|
+
/*
|
|
3
|
+
Copyright JS Foundation and other contributors, https://js.foundation/
|
|
4
|
+
|
|
5
|
+
Redistribution and use in source and binary forms, with or without
|
|
6
|
+
modification, are permitted provided that the following conditions are met:
|
|
7
|
+
|
|
8
|
+
* Redistributions of source code must retain the above copyright
|
|
9
|
+
notice, this list of conditions and the following disclaimer.
|
|
10
|
+
* Redistributions in binary form must reproduce the above copyright
|
|
11
|
+
notice, this list of conditions and the following disclaimer in the
|
|
12
|
+
documentation and/or other materials provided with the distribution.
|
|
13
|
+
|
|
14
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
15
|
+
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
16
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
17
|
+
ARE DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
|
|
18
|
+
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
19
|
+
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
20
|
+
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
|
21
|
+
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
22
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
23
|
+
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
24
|
+
*/
|
|
25
|
+
|
|
26
|
+
/*jslint sloppy:true plusplus:true node:true rhino:true */
|
|
27
|
+
/*global phantom:true */
|
|
28
|
+
|
|
29
|
+
var fs, system, esprima, options, fnames, forceFile, count;
|
|
30
|
+
|
|
31
|
+
if (typeof esprima === 'undefined') {
|
|
32
|
+
// PhantomJS can only require() relative files
|
|
33
|
+
if (typeof phantom === 'object') {
|
|
34
|
+
fs = require('fs');
|
|
35
|
+
system = require('system');
|
|
36
|
+
esprima = require('./esprima');
|
|
37
|
+
} else if (typeof require === 'function') {
|
|
38
|
+
fs = require('fs');
|
|
39
|
+
try {
|
|
40
|
+
esprima = require('esprima');
|
|
41
|
+
} catch (e) {
|
|
42
|
+
esprima = require('../');
|
|
43
|
+
}
|
|
44
|
+
} else if (typeof load === 'function') {
|
|
45
|
+
try {
|
|
46
|
+
load('esprima.js');
|
|
47
|
+
} catch (e) {
|
|
48
|
+
load('../esprima.js');
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
// Shims to Node.js objects when running under PhantomJS 1.7+.
|
|
54
|
+
if (typeof phantom === 'object') {
|
|
55
|
+
fs.readFileSync = fs.read;
|
|
56
|
+
process = {
|
|
57
|
+
argv: [].slice.call(system.args),
|
|
58
|
+
exit: phantom.exit,
|
|
59
|
+
on: function (evt, callback) {
|
|
60
|
+
callback();
|
|
61
|
+
}
|
|
62
|
+
};
|
|
63
|
+
process.argv.unshift('phantomjs');
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
// Shims to Node.js objects when running under Rhino.
|
|
67
|
+
if (typeof console === 'undefined' && typeof process === 'undefined') {
|
|
68
|
+
console = { log: print };
|
|
69
|
+
fs = { readFileSync: readFile };
|
|
70
|
+
process = {
|
|
71
|
+
argv: arguments,
|
|
72
|
+
exit: quit,
|
|
73
|
+
on: function (evt, callback) {
|
|
74
|
+
callback();
|
|
75
|
+
}
|
|
76
|
+
};
|
|
77
|
+
process.argv.unshift('esvalidate.js');
|
|
78
|
+
process.argv.unshift('rhino');
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
function showUsage() {
|
|
82
|
+
console.log('Usage:');
|
|
83
|
+
console.log(' esvalidate [options] [file.js...]');
|
|
84
|
+
console.log();
|
|
85
|
+
console.log('Available options:');
|
|
86
|
+
console.log();
|
|
87
|
+
console.log(' --format=type Set the report format, plain (default) or junit');
|
|
88
|
+
console.log(' -v, --version Print program version');
|
|
89
|
+
console.log();
|
|
90
|
+
process.exit(1);
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
options = {
|
|
94
|
+
format: 'plain'
|
|
95
|
+
};
|
|
96
|
+
|
|
97
|
+
fnames = [];
|
|
98
|
+
|
|
99
|
+
process.argv.splice(2).forEach(function (entry) {
|
|
100
|
+
|
|
101
|
+
if (forceFile || entry === '-' || entry.slice(0, 1) !== '-') {
|
|
102
|
+
fnames.push(entry);
|
|
103
|
+
} else if (entry === '-h' || entry === '--help') {
|
|
104
|
+
showUsage();
|
|
105
|
+
} else if (entry === '-v' || entry === '--version') {
|
|
106
|
+
console.log('ECMAScript Validator (using Esprima version', esprima.version, ')');
|
|
107
|
+
console.log();
|
|
108
|
+
process.exit(0);
|
|
109
|
+
} else if (entry.slice(0, 9) === '--format=') {
|
|
110
|
+
options.format = entry.slice(9);
|
|
111
|
+
if (options.format !== 'plain' && options.format !== 'junit') {
|
|
112
|
+
console.log('Error: unknown report format ' + options.format + '.');
|
|
113
|
+
process.exit(1);
|
|
114
|
+
}
|
|
115
|
+
} else if (entry === '--') {
|
|
116
|
+
forceFile = true;
|
|
117
|
+
} else {
|
|
118
|
+
console.log('Error: unknown option ' + entry + '.');
|
|
119
|
+
process.exit(1);
|
|
120
|
+
}
|
|
121
|
+
});
|
|
122
|
+
|
|
123
|
+
if (fnames.length === 0) {
|
|
124
|
+
fnames.push('');
|
|
125
|
+
}
|
|
126
|
+
|
|
127
|
+
if (options.format === 'junit') {
|
|
128
|
+
console.log('<?xml version="1.0" encoding="UTF-8"?>');
|
|
129
|
+
console.log('<testsuites>');
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
count = 0;
|
|
133
|
+
|
|
134
|
+
function run(fname, content) {
|
|
135
|
+
var timestamp, syntax, name;
|
|
136
|
+
try {
|
|
137
|
+
if (typeof content !== 'string') {
|
|
138
|
+
throw content;
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
if (content[0] === '#' && content[1] === '!') {
|
|
142
|
+
content = '//' + content.substr(2, content.length);
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
timestamp = Date.now();
|
|
146
|
+
syntax = esprima.parse(content, { tolerant: true });
|
|
147
|
+
|
|
148
|
+
if (options.format === 'junit') {
|
|
149
|
+
|
|
150
|
+
name = fname;
|
|
151
|
+
if (name.lastIndexOf('/') >= 0) {
|
|
152
|
+
name = name.slice(name.lastIndexOf('/') + 1);
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
console.log('<testsuite name="' + fname + '" errors="0" ' +
|
|
156
|
+
' failures="' + syntax.errors.length + '" ' +
|
|
157
|
+
' tests="' + syntax.errors.length + '" ' +
|
|
158
|
+
' time="' + Math.round((Date.now() - timestamp) / 1000) +
|
|
159
|
+
'">');
|
|
160
|
+
|
|
161
|
+
syntax.errors.forEach(function (error) {
|
|
162
|
+
var msg = error.message;
|
|
163
|
+
msg = msg.replace(/^Line\ [0-9]*\:\ /, '');
|
|
164
|
+
console.log(' <testcase name="Line ' + error.lineNumber + ': ' + msg + '" ' +
|
|
165
|
+
' time="0">');
|
|
166
|
+
console.log(' <error type="SyntaxError" message="' + error.message + '">' +
|
|
167
|
+
error.message + '(' + name + ':' + error.lineNumber + ')' +
|
|
168
|
+
'</error>');
|
|
169
|
+
console.log(' </testcase>');
|
|
170
|
+
});
|
|
171
|
+
|
|
172
|
+
console.log('</testsuite>');
|
|
173
|
+
|
|
174
|
+
} else if (options.format === 'plain') {
|
|
175
|
+
|
|
176
|
+
syntax.errors.forEach(function (error) {
|
|
177
|
+
var msg = error.message;
|
|
178
|
+
msg = msg.replace(/^Line\ [0-9]*\:\ /, '');
|
|
179
|
+
msg = fname + ':' + error.lineNumber + ': ' + msg;
|
|
180
|
+
console.log(msg);
|
|
181
|
+
++count;
|
|
182
|
+
});
|
|
183
|
+
|
|
184
|
+
}
|
|
185
|
+
} catch (e) {
|
|
186
|
+
++count;
|
|
187
|
+
if (options.format === 'junit') {
|
|
188
|
+
console.log('<testsuite name="' + fname + '" errors="1" failures="0" tests="1" ' +
|
|
189
|
+
' time="' + Math.round((Date.now() - timestamp) / 1000) + '">');
|
|
190
|
+
console.log(' <testcase name="' + e.message + '" ' + ' time="0">');
|
|
191
|
+
console.log(' <error type="ParseError" message="' + e.message + '">' +
|
|
192
|
+
e.message + '(' + fname + ((e.lineNumber) ? ':' + e.lineNumber : '') +
|
|
193
|
+
')</error>');
|
|
194
|
+
console.log(' </testcase>');
|
|
195
|
+
console.log('</testsuite>');
|
|
196
|
+
} else {
|
|
197
|
+
console.log(fname + ':' + e.lineNumber + ': ' + e.message.replace(/^Line\ [0-9]*\:\ /, ''));
|
|
198
|
+
}
|
|
199
|
+
}
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
fnames.forEach(function (fname) {
|
|
203
|
+
var content = '';
|
|
204
|
+
try {
|
|
205
|
+
if (fname && (fname !== '-' || forceFile)) {
|
|
206
|
+
content = fs.readFileSync(fname, 'utf-8');
|
|
207
|
+
} else {
|
|
208
|
+
fname = '';
|
|
209
|
+
process.stdin.resume();
|
|
210
|
+
process.stdin.on('data', function(chunk) {
|
|
211
|
+
content += chunk;
|
|
212
|
+
});
|
|
213
|
+
process.stdin.on('end', function() {
|
|
214
|
+
run(fname, content);
|
|
215
|
+
});
|
|
216
|
+
return;
|
|
217
|
+
}
|
|
218
|
+
} catch (e) {
|
|
219
|
+
content = e;
|
|
220
|
+
}
|
|
221
|
+
run(fname, content);
|
|
222
|
+
});
|
|
223
|
+
|
|
224
|
+
process.on('exit', function () {
|
|
225
|
+
if (options.format === 'junit') {
|
|
226
|
+
console.log('</testsuites>');
|
|
227
|
+
}
|
|
228
|
+
|
|
229
|
+
if (count > 0) {
|
|
230
|
+
process.exit(1);
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
if (count === 0 && typeof phantom === 'object') {
|
|
234
|
+
process.exit(0);
|
|
235
|
+
}
|
|
236
|
+
});
|