2018-05-09 14:44:44 +00:00
|
|
|
'use strict';
|
|
|
|
|
2018-05-26 10:51:19 +00:00
|
|
|
// This tests that the lower bits of mode > 0o777 still works in fs.open().
|
2018-05-09 14:44:44 +00:00
|
|
|
|
|
|
|
const common = require('../common');
|
|
|
|
const assert = require('assert');
|
|
|
|
const fs = require('fs');
|
|
|
|
|
2018-09-22 19:13:42 +00:00
|
|
|
const mode = common.isWindows ? 0o444 : 0o644;
|
2018-05-09 14:44:44 +00:00
|
|
|
|
|
|
|
const maskToIgnore = 0o10000;
|
|
|
|
|
|
|
|
const tmpdir = require('../common/tmpdir');
|
|
|
|
tmpdir.refresh();
|
|
|
|
|
|
|
|
function test(mode, asString) {
|
|
|
|
const suffix = asString ? 'str' : 'num';
|
|
|
|
const input = asString ?
|
|
|
|
(mode | maskToIgnore).toString(8) : (mode | maskToIgnore);
|
|
|
|
|
|
|
|
{
|
2023-08-15 13:45:24 +00:00
|
|
|
const file = tmpdir.resolve(`openSync-${suffix}.txt`);
|
2018-05-09 14:44:44 +00:00
|
|
|
const fd = fs.openSync(file, 'w+', input);
|
|
|
|
assert.strictEqual(fs.fstatSync(fd).mode & 0o777, mode);
|
|
|
|
fs.closeSync(fd);
|
|
|
|
assert.strictEqual(fs.statSync(file).mode & 0o777, mode);
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
2023-08-15 13:45:24 +00:00
|
|
|
const file = tmpdir.resolve(`open-${suffix}.txt`);
|
2020-09-06 20:27:07 +00:00
|
|
|
fs.open(file, 'w+', input, common.mustSucceed((fd) => {
|
2018-05-09 14:44:44 +00:00
|
|
|
assert.strictEqual(fs.fstatSync(fd).mode & 0o777, mode);
|
|
|
|
fs.closeSync(fd);
|
|
|
|
assert.strictEqual(fs.statSync(file).mode & 0o777, mode);
|
|
|
|
}));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
test(mode, true);
|
|
|
|
test(mode, false);
|