Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Download
80538 views
1
// Copyright Joyent, Inc. and other Node contributors.
2
//
3
// Permission is hereby granted, free of charge, to any person obtaining a
4
// copy of this software and associated documentation files (the
5
// "Software"), to deal in the Software without restriction, including
6
// without limitation the rights to use, copy, modify, merge, publish,
7
// distribute, sublicense, and/or sell copies of the Software, and to permit
8
// persons to whom the Software is furnished to do so, subject to the
9
// following conditions:
10
//
11
// The above copyright notice and this permission notice shall be included
12
// in all copies or substantial portions of the Software.
13
//
14
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
15
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN
17
// NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
18
// DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
19
// OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
20
// USE OR OTHER DEALINGS IN THE SOFTWARE.
21
22
23
24
25
var assert = require('assert');
26
var util = require('../../');
27
28
assert.equal(util.format(), '');
29
assert.equal(util.format(''), '');
30
assert.equal(util.format([]), '[]');
31
assert.equal(util.format({}), '{}');
32
assert.equal(util.format(null), 'null');
33
assert.equal(util.format(true), 'true');
34
assert.equal(util.format(false), 'false');
35
assert.equal(util.format('test'), 'test');
36
37
// CHECKME this is for console.log() compatibility - but is it *right*?
38
assert.equal(util.format('foo', 'bar', 'baz'), 'foo bar baz');
39
40
assert.equal(util.format('%d', 42.0), '42');
41
assert.equal(util.format('%d', 42), '42');
42
assert.equal(util.format('%s', 42), '42');
43
assert.equal(util.format('%j', 42), '42');
44
45
assert.equal(util.format('%d', '42.0'), '42');
46
assert.equal(util.format('%d', '42'), '42');
47
assert.equal(util.format('%s', '42'), '42');
48
assert.equal(util.format('%j', '42'), '"42"');
49
50
assert.equal(util.format('%%s%s', 'foo'), '%sfoo');
51
52
assert.equal(util.format('%s'), '%s');
53
assert.equal(util.format('%s', undefined), 'undefined');
54
assert.equal(util.format('%s', 'foo'), 'foo');
55
assert.equal(util.format('%s:%s'), '%s:%s');
56
assert.equal(util.format('%s:%s', undefined), 'undefined:%s');
57
assert.equal(util.format('%s:%s', 'foo'), 'foo:%s');
58
assert.equal(util.format('%s:%s', 'foo', 'bar'), 'foo:bar');
59
assert.equal(util.format('%s:%s', 'foo', 'bar', 'baz'), 'foo:bar baz');
60
assert.equal(util.format('%%%s%%', 'hi'), '%hi%');
61
assert.equal(util.format('%%%s%%%%', 'hi'), '%hi%%');
62
63
(function() {
64
var o = {};
65
o.o = o;
66
assert.equal(util.format('%j', o), '[Circular]');
67
})();
68
69
// Errors
70
assert.equal(util.format(new Error('foo')), '[Error: foo]');
71
function CustomError(msg) {
72
Error.call(this);
73
Object.defineProperty(this, 'message', { value: msg, enumerable: false });
74
Object.defineProperty(this, 'name', { value: 'CustomError', enumerable: false });
75
}
76
util.inherits(CustomError, Error);
77
assert.equal(util.format(new CustomError('bar')), '[CustomError: bar]');
78
79