| Server IP : 217.160.0.135 / Your IP : 216.73.217.37 Web Server : Apache System : Linux www 6.18.52-i1-ampere #1203 SMP Mon Sep 14 18:29:59 CEST 2026 aarch64 User : sws1074145052 ( 1074145052) PHP Version : 8.3.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /usr/share/nodejs/fs-monkey/lib/__tests__/ |
Upload File : |
"use strict";
var _patchFs = _interopRequireDefault(require("../patchFs"));
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
describe('patchFs', function () {
it('should overwrite the .readFileSync method', function () {
var vol = {
readFileSync: function readFileSync() {
return 'foo';
}
};
var fs = {};
(0, _patchFs["default"])(vol, fs);
expect(_typeof(fs.readFileSync)).toBe('function');
expect(fs.readFileSync()).toBe('foo');
});
it('should copy constants', function () {
var vol = {
F_OK: 123
};
var fs = {};
(0, _patchFs["default"])(vol, fs);
expect(fs.F_OK).toBe(vol.F_OK);
});
describe('unpatch()', function () {
it('should return "unpatch" method', function () {
var vol = {
F_OK: 123
};
var fs = {};
expect(_typeof((0, _patchFs["default"])(vol, fs))).toBe('function');
});
it('should restore the original fs', function () {
var original = function original() {};
var vol = {
writeFileSync: function writeFileSync() {}
};
var fs = {
writeFileSync: original
};
var unpatch = (0, _patchFs["default"])(vol, fs);
expect(fs.writeFileSync).not.toBe(original);
unpatch();
expect(fs.writeFileSync).toBe(original);
});
});
});