-
Notifications
You must be signed in to change notification settings - Fork 29.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: improve test-child-process-exec-buffer
* use const instead of var for required modules * use assert.strictEqual instead of assert.equal * use assert.strictEqual instead of assert.ok
- Loading branch information
Showing
1 changed file
with
12 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,24 @@ | ||
'use strict'; | ||
const common = require('../common'); | ||
var assert = require('assert'); | ||
var exec = require('child_process').exec; | ||
var os = require('os'); | ||
var str = 'hello'; | ||
const assert = require('assert'); | ||
const exec = require('child_process').exec; | ||
const os = require('os'); | ||
const str = 'hello'; | ||
|
||
// default encoding | ||
exec('echo ' + str, common.mustCall(function(err, stdout, stderr) { | ||
assert.ok('string', typeof stdout, 'Expected stdout to be a string'); | ||
assert.ok('string', typeof stderr, 'Expected stderr to be a string'); | ||
assert.equal(str + os.EOL, stdout); | ||
assert.strictEqual(typeof stdout, 'string', 'Expected stdout to be a string'); | ||
assert.strictEqual(typeof stderr, 'string', 'Expected stderr to be a string'); | ||
assert.strictEqual(str + os.EOL, stdout); | ||
})); | ||
|
||
// no encoding (Buffers expected) | ||
exec('echo ' + str, { | ||
encoding: null | ||
}, common.mustCall(function(err, stdout, stderr) { | ||
assert.ok(stdout instanceof Buffer, 'Expected stdout to be a Buffer'); | ||
assert.ok(stderr instanceof Buffer, 'Expected stderr to be a Buffer'); | ||
assert.equal(str + os.EOL, stdout.toString()); | ||
assert.strictEqual(stdout instanceof Buffer, true, | ||
'Expected stdout to be a Buffer'); | ||
assert.strictEqual(stderr instanceof Buffer, true, | ||
'Expected stderr to be a Buffer'); | ||
assert.strictEqual(str + os.EOL, stdout.toString()); | ||
})); |