-
Notifications
You must be signed in to change notification settings - Fork 29.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: lint and refactor to avoid autocrlf issue
The test was failing after adding 'use strict' because the windows CI uses the autocrlf option of git which converts \r into \r\n on checkout. Refactored the test to not read itself anymore and create a temp file on the fly instead to avoid this line-ending issue. PR-URL: #2494 Reviewed-By: Joao Reis <[email protected]>
- Loading branch information
1 parent
f75d546
commit 7727ba1
Showing
2 changed files
with
20 additions
and
14 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
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,24 +1,31 @@ | ||
var assert = require('assert'), | ||
fs = require('fs'), | ||
saneEmitter, | ||
sanity = 'ire(\'assert\')'; | ||
'use strict'; | ||
|
||
saneEmitter = fs.createReadStream(__filename, { start: 17, end: 29 }); | ||
const common = require('../common'); | ||
const assert = require('assert'); | ||
const fs = require('fs'); | ||
const path = require('path'); | ||
const tempFile = path.join(common.tmpDir, 'fs-non-number-arguments-throw'); | ||
|
||
assert.throws(function () { | ||
fs.createReadStream(__filename, { start: "17", end: 29 }); | ||
common.refreshTmpDir(); | ||
fs.writeFileSync(tempFile, 'abc\ndef'); | ||
|
||
// a sanity check when using numbers instead of strings | ||
const sanity = 'def'; | ||
const saneEmitter = fs.createReadStream(tempFile, { start: 4, end: 6 }); | ||
|
||
assert.throws(function() { | ||
fs.createReadStream(tempFile, { start: '4', end: 6 }); | ||
}, "start as string didn't throw an error for createReadStream"); | ||
|
||
assert.throws(function () { | ||
fs.createReadStream(__filename, { start: 17, end: "29" }); | ||
assert.throws(function() { | ||
fs.createReadStream(tempFile, { start: 4, end: '6' }); | ||
}, "end as string didn't throw an error"); | ||
|
||
assert.throws(function () { | ||
fs.createWriteStream(__filename, { start: "17" }); | ||
assert.throws(function() { | ||
fs.createWriteStream(tempFile, { start: '4' }); | ||
}, "start as string didn't throw an error for createWriteStream"); | ||
|
||
saneEmitter.on('data', function (data) { | ||
// a sanity check when using numbers instead of strings | ||
saneEmitter.on('data', function(data) { | ||
assert.strictEqual(sanity, data.toString('utf8'), 'read ' + | ||
data.toString('utf8') + ' instead of ' + sanity); | ||
}); |