Skip to content

Commit a196915

Browse files
committed
[results] make object-inspect depth configurable for expected/actual
Allow to configure objectPrintDepth to avoid confusing output that shows expected/actual to be identical when the difference is >5 deep.
1 parent f2351ca commit a196915

File tree

4 files changed

+116
-6
lines changed

4 files changed

+116
-6
lines changed

lib/results.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -141,8 +141,8 @@ function encodeResult (res, count) {
141141
output += inner + 'operator: ' + res.operator + '\n';
142142

143143
if (has(res, 'expected') || has(res, 'actual')) {
144-
var ex = inspect(res.expected);
145-
var ac = inspect(res.actual);
144+
var ex = inspect(res.expected, {depth: res.objectPrintDepth});
145+
var ac = inspect(res.actual, {depth: res.objectPrintDepth});
146146

147147
if (Math.max(ex.length, ac.length) > 65 || invalidYaml(ex) || invalidYaml(ac)) {
148148
output += inner + 'expected: |-\n' + inner + ' ' + ex + '\n';

lib/test.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ function Test (name_, opts_, cb_) {
5050
this.pendingCount = 0;
5151
this._skip = args.opts.skip || false;
5252
this._timeout = args.opts.timeout;
53+
this._objectPrintDepth = args.opts.objectPrintDepth || 5;
5354
this._plan = undefined;
5455
this._cb = args.cb;
5556
this._progeny = [];
@@ -198,7 +199,8 @@ Test.prototype._assert = function assert (ok, opts) {
198199
ok : Boolean(ok),
199200
skip : defined(extra.skip, opts.skip),
200201
name : defined(extra.message, opts.message, '(unnamed assert)'),
201-
operator : defined(extra.operator, opts.operator)
202+
operator : defined(extra.operator, opts.operator),
203+
objectPrintDepth : self._objectPrintDepth
202204
};
203205
if (has(opts, 'actual') || has(extra, 'actual')) {
204206
res.actual = defined(extra.actual, opts.actual);

readme.markdown

+5-3
Original file line numberDiff line numberDiff line change
@@ -138,15 +138,17 @@ var test = require('tape')
138138

139139
## test([name], [opts], cb)
140140

141-
Create a new test with an optional `name` string and optional `opts` object.
141+
Create a new test with an optional `name` string and optional `opts` object.
142142
`cb(t)` fires with the new test object `t` once all preceeding tests have
143143
finished. Tests execute serially.
144144

145145
Available `opts` options are:
146146
- opts.skip = true/false. See test.skip.
147-
- opts.timeout = 500. Set a timeout for the test, after which it will fail.
147+
- opts.timeout = 500. Set a timeout for the test, after which it will fail.
148148
See test.timeoutAfter.
149-
149+
- opts.objectPrintDepth = 5. Configure max depth of expected / actual object
150+
printing.
151+
150152
If you forget to `t.plan()` out how many assertions you are going to run and you
151153
don't call `t.end()` explicitly, your test will hang.
152154

test/deep-equal-failure.js

+106
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,112 @@ tap.test('deep equal failure', function (assert) {
5757
});
5858
})
5959

60+
tap.test('deep equal failure, depth 6, with option', function (assert) {
61+
var test = tape.createHarness({ exit : false });
62+
var stream = test.createStream();
63+
var parser = tapParser();
64+
assert.plan(3);
65+
66+
stream.pipe(parser);
67+
stream.pipe(concat(function (body) {
68+
assert.equal(
69+
body.toString('utf8'),
70+
'TAP version 13\n'
71+
+ '# deep equal\n'
72+
+ 'not ok 1 should be equal\n'
73+
+ ' ---\n'
74+
+ ' operator: equal\n'
75+
+ ' expected: |-\n'
76+
+ ' { a: { a1: { a2: { a3: { a4: { a5: 2 } } } } } }\n'
77+
+ ' actual: |-\n'
78+
+ ' { a: { a1: { a2: { a3: { a4: { a5: 1 } } } } } }\n'
79+
+ ' ...\n'
80+
+ '\n'
81+
+ '1..1\n'
82+
+ '# tests 1\n'
83+
+ '# pass 0\n'
84+
+ '# fail 1\n'
85+
);
86+
87+
assert.deepEqual(getDiag(body), {
88+
operator: 'equal',
89+
expected: '{ a: { a1: { a2: { a3: { a4: { a5: 2 } } } } } }',
90+
actual: '{ a: { a1: { a2: { a3: { a4: { a5: 1 } } } } } }'
91+
});
92+
}));
93+
94+
parser.once('assert', function (data) {
95+
assert.deepEqual(data, {
96+
ok: false,
97+
id: 1,
98+
name: 'should be equal',
99+
diag: {
100+
operator: 'equal',
101+
expected: '{ a: { a1: { a2: { a3: { a4: { a5: 2 } } } } } }',
102+
actual: '{ a: { a1: { a2: { a3: { a4: { a5: 1 } } } } } }'
103+
}
104+
});
105+
});
106+
107+
test("deep equal", {objectPrintDepth: 6}, function (t) {
108+
t.plan(1);
109+
t.equal({ a: { a1: { a2: { a3: { a4: { a5: 1 } } } } } }, { a: { a1: { a2: { a3: { a4: { a5: 2 } } } } } });
110+
});
111+
})
112+
113+
tap.test('deep equal failure, depth 6, without option', function (assert) {
114+
var test = tape.createHarness({ exit : false });
115+
var stream = test.createStream();
116+
var parser = tapParser();
117+
assert.plan(3);
118+
119+
stream.pipe(parser);
120+
stream.pipe(concat(function (body) {
121+
assert.equal(
122+
body.toString('utf8'),
123+
'TAP version 13\n'
124+
+ '# deep equal\n'
125+
+ 'not ok 1 should be equal\n'
126+
+ ' ---\n'
127+
+ ' operator: equal\n'
128+
+ ' expected: |-\n'
129+
+ ' { a: { a1: { a2: { a3: { a4: [Object] } } } } }\n'
130+
+ ' actual: |-\n'
131+
+ ' { a: { a1: { a2: { a3: { a4: [Object] } } } } }\n'
132+
+ ' ...\n'
133+
+ '\n'
134+
+ '1..1\n'
135+
+ '# tests 1\n'
136+
+ '# pass 0\n'
137+
+ '# fail 1\n'
138+
);
139+
140+
assert.deepEqual(getDiag(body), {
141+
operator: 'equal',
142+
expected: '{ a: { a1: { a2: { a3: { a4: [Object] } } } } }',
143+
actual: '{ a: { a1: { a2: { a3: { a4: [Object] } } } } }'
144+
});
145+
}));
146+
147+
parser.once('assert', function (data) {
148+
assert.deepEqual(data, {
149+
ok: false,
150+
id: 1,
151+
name: 'should be equal',
152+
diag: {
153+
operator: 'equal',
154+
expected: '{ a: { a1: { a2: { a3: { a4: [Object] } } } } }',
155+
actual: '{ a: { a1: { a2: { a3: { a4: [Object] } } } } }'
156+
}
157+
});
158+
});
159+
160+
test("deep equal", function (t) {
161+
t.plan(1);
162+
t.equal({ a: { a1: { a2: { a3: { a4: { a5: 1 } } } } } }, { a: { a1: { a2: { a3: { a4: { a5: 2 } } } } } });
163+
});
164+
})
165+
60166
function getDiag (body) {
61167
var yamlStart = body.indexOf(' ---');
62168
var yamlEnd = body.indexOf(' ...\n');

0 commit comments

Comments
 (0)