mirror of https://github.com/lukechilds/node.git
Browse Source
lib/buffer.js defines Buffer.prototype.inspect() to override how buffers are presented by util.inspect(). Add basic tests for it. PR-URL: https://github.com/nodejs/node/pull/11600 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Yuta Hiroto <hello@about-hiroppy.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>v6
Rich Trott
8 years ago
committed by
James M Snell
1 changed files with 23 additions and 0 deletions
@ -0,0 +1,23 @@ |
|||
'use strict'; |
|||
require('../common'); |
|||
|
|||
// lib/buffer.js defines Buffer.prototype.inspect() to override how buffers are
|
|||
// presented by util.inspect().
|
|||
|
|||
const assert = require('assert'); |
|||
const util = require('util'); |
|||
|
|||
{ |
|||
const buf = Buffer.from('fhqwhgads'); |
|||
assert.strictEqual(util.inspect(buf), '<Buffer 66 68 71 77 68 67 61 64 73>'); |
|||
} |
|||
|
|||
{ |
|||
const buf = Buffer.from(''); |
|||
assert.strictEqual(util.inspect(buf), '<Buffer >'); |
|||
} |
|||
|
|||
{ |
|||
const buf = Buffer.from('x'.repeat(51)); |
|||
assert.ok(/^<Buffer (78 ){50}\.\.\. >$/.test(util.inspect(buf))); |
|||
} |
Loading…
Reference in new issue