2014-05-23 20:53:50 +00:00
|
|
|
var util = require('../lib/test-utils.js');
|
|
|
|
var expect = require('chai').expect;
|
2013-12-13 05:46:31 +00:00
|
|
|
|
2014-05-23 20:53:50 +00:00
|
|
|
describe('fs.utimes', function() {
|
|
|
|
beforeEach(util.setup);
|
|
|
|
afterEach(util.cleanup);
|
2013-12-13 05:46:31 +00:00
|
|
|
|
2014-05-23 20:53:50 +00:00
|
|
|
it('should be a function', function() {
|
|
|
|
var fs = util.fs();
|
|
|
|
expect(fs.utimes).to.be.a('function');
|
|
|
|
});
|
2013-12-16 02:22:36 +00:00
|
|
|
|
2014-05-23 20:53:50 +00:00
|
|
|
it('should error when atime is negative', function(done) {
|
|
|
|
var fs = util.fs();
|
2013-12-16 02:22:36 +00:00
|
|
|
|
2014-05-23 20:53:50 +00:00
|
|
|
fs.writeFile('/testfile', '', function(error) {
|
|
|
|
if (error) throw error;
|
2013-12-16 02:22:36 +00:00
|
|
|
|
2014-05-23 20:53:50 +00:00
|
|
|
fs.utimes('/testfile', -1, Date.now(), function (error) {
|
|
|
|
expect(error).to.exist;
|
|
|
|
expect(error.code).to.equal('EINVAL');
|
|
|
|
done();
|
2013-12-16 02:22:36 +00:00
|
|
|
});
|
|
|
|
});
|
2014-05-23 20:53:50 +00:00
|
|
|
});
|
2013-12-16 02:22:36 +00:00
|
|
|
|
2014-05-23 20:53:50 +00:00
|
|
|
it('should error when mtime is negative', function(done) {
|
|
|
|
var fs = util.fs();
|
2013-12-15 07:54:51 +00:00
|
|
|
|
2014-05-23 20:53:50 +00:00
|
|
|
fs.writeFile('/testfile', '', function(error) {
|
|
|
|
if (error) throw error;
|
2013-12-16 02:22:36 +00:00
|
|
|
|
2014-05-23 20:53:50 +00:00
|
|
|
fs.utimes('/testfile', Date.now(), -1, function (error) {
|
|
|
|
expect(error).to.exist;
|
|
|
|
expect(error.code).to.equal('EINVAL');
|
|
|
|
done();
|
2013-12-16 02:22:36 +00:00
|
|
|
});
|
|
|
|
});
|
2014-05-23 20:53:50 +00:00
|
|
|
});
|
2013-12-16 02:22:36 +00:00
|
|
|
|
2014-05-23 20:53:50 +00:00
|
|
|
it('should error when atime is as invalid number', function(done) {
|
|
|
|
var fs = util.fs();
|
2013-12-16 02:22:36 +00:00
|
|
|
|
2014-05-23 20:53:50 +00:00
|
|
|
fs.writeFile('/testfile', '', function (error) {
|
|
|
|
if (error) throw error;
|
2013-12-20 05:45:11 +00:00
|
|
|
|
2014-05-23 20:53:50 +00:00
|
|
|
fs.utimes('/testfile', 'invalid datetime', Date.now(), function (error) {
|
2014-01-21 21:25:09 +00:00
|
|
|
expect(error).to.exist;
|
2014-05-23 20:53:50 +00:00
|
|
|
expect(error.code).to.equal('EINVAL');
|
2014-01-21 21:25:09 +00:00
|
|
|
done();
|
2013-12-17 16:28:22 +00:00
|
|
|
});
|
|
|
|
});
|
2014-05-23 20:53:50 +00:00
|
|
|
});
|
2013-12-17 16:28:22 +00:00
|
|
|
|
2014-05-23 20:53:50 +00:00
|
|
|
it('should error when path does not exist', function(done) {
|
|
|
|
var fs = util.fs();
|
|
|
|
var atime = Date.parse('1 Oct 2000 15:33:22');
|
|
|
|
var mtime = Date.parse('30 Sep 2000 06:43:54');
|
2013-12-16 02:22:36 +00:00
|
|
|
|
2014-05-23 20:53:50 +00:00
|
|
|
fs.utimes('/pathdoesnotexist', atime, mtime, function (error) {
|
|
|
|
expect(error).to.exist;
|
|
|
|
expect(error.code).to.equal('ENOENT');
|
|
|
|
done();
|
2013-12-17 16:28:22 +00:00
|
|
|
});
|
2014-05-23 20:53:50 +00:00
|
|
|
});
|
2013-12-17 16:28:22 +00:00
|
|
|
|
2014-05-23 20:53:50 +00:00
|
|
|
it('should error when mtime is an invalid number', function(done) {
|
|
|
|
var fs = util.fs();
|
2013-12-17 16:28:22 +00:00
|
|
|
|
2014-05-23 20:53:50 +00:00
|
|
|
fs.writeFile('/testfile', '', function (error) {
|
|
|
|
if (error) throw error;
|
|
|
|
|
|
|
|
fs.utimes('/testfile', Date.now(), 'invalid datetime', function (error) {
|
2014-01-21 21:25:09 +00:00
|
|
|
expect(error).to.exist;
|
2014-05-23 20:53:50 +00:00
|
|
|
expect(error.code).to.equal('EINVAL');
|
2014-01-21 21:25:09 +00:00
|
|
|
done();
|
2013-12-16 02:22:36 +00:00
|
|
|
});
|
|
|
|
});
|
2014-05-23 20:53:50 +00:00
|
|
|
});
|
2013-12-16 02:22:36 +00:00
|
|
|
|
2014-05-23 20:53:50 +00:00
|
|
|
it('should change atime and mtime of a file path', function(done) {
|
|
|
|
var fs = util.fs();
|
|
|
|
var atime = Date.parse('1 Oct 2000 15:33:22');
|
|
|
|
var mtime = Date.parse('30 Sep 2000 06:43:54');
|
2013-12-15 07:54:51 +00:00
|
|
|
|
2014-05-23 20:53:50 +00:00
|
|
|
fs.writeFile('/testfile', '', function (error) {
|
|
|
|
if (error) throw error;
|
|
|
|
|
|
|
|
fs.utimes('/testfile', atime, mtime, function (error) {
|
|
|
|
expect(error).not.to.exist;
|
|
|
|
|
|
|
|
fs.stat('/testfile', function (error, stat) {
|
|
|
|
expect(error).not.to.exist;
|
|
|
|
expect(stat.mtime).to.equal(mtime);
|
|
|
|
done();
|
2013-12-15 07:54:51 +00:00
|
|
|
});
|
|
|
|
});
|
2013-12-16 02:22:36 +00:00
|
|
|
});
|
2014-05-23 20:53:50 +00:00
|
|
|
});
|
2013-12-16 02:22:36 +00:00
|
|
|
|
2014-05-23 20:53:50 +00:00
|
|
|
it('should update atime and mtime of directory path', function(done) {
|
|
|
|
var fs = util.fs();
|
|
|
|
var atime = Date.parse('1 Oct 2000 15:33:22');
|
|
|
|
var mtime = Date.parse('30 Sep 2000 06:43:54');
|
2013-12-16 02:22:36 +00:00
|
|
|
|
2014-05-23 20:53:50 +00:00
|
|
|
fs.mkdir('/testdir', function (error) {
|
|
|
|
if (error) throw error;
|
2013-12-16 02:22:36 +00:00
|
|
|
|
2014-05-23 20:53:50 +00:00
|
|
|
fs.utimes('/testdir', atime, mtime, function (error) {
|
|
|
|
expect(error).not.to.exist;
|
2013-12-16 02:22:36 +00:00
|
|
|
|
2014-05-23 20:53:50 +00:00
|
|
|
fs.stat('/testdir', function (error, stat) {
|
|
|
|
expect(error).not.to.exist;
|
|
|
|
expect(stat.mtime).to.equal(mtime);
|
|
|
|
done();
|
2013-12-16 02:22:36 +00:00
|
|
|
});
|
|
|
|
});
|
2013-12-13 05:46:31 +00:00
|
|
|
});
|
2014-05-23 20:53:50 +00:00
|
|
|
});
|
2013-12-17 16:28:22 +00:00
|
|
|
|
2014-05-23 20:53:50 +00:00
|
|
|
it('should update atime and mtime using current time if arguments are null', function(done) {
|
|
|
|
var fs = util.fs();
|
2013-12-17 16:28:22 +00:00
|
|
|
|
2014-05-23 20:53:50 +00:00
|
|
|
fs.writeFile('/myfile', '', function (error) {
|
|
|
|
if (error) throw error;
|
2013-12-17 16:28:22 +00:00
|
|
|
|
2014-05-23 20:53:50 +00:00
|
|
|
var then = Date.now();
|
|
|
|
fs.utimes('/myfile', null, null, function (error) {
|
|
|
|
expect(error).not.to.exist;
|
2013-12-17 16:28:22 +00:00
|
|
|
|
2014-05-23 20:53:50 +00:00
|
|
|
fs.stat('/myfile', function (error, stat) {
|
|
|
|
expect(error).not.to.exist;
|
|
|
|
// Note: testing estimation as time may differ by a couple of milliseconds
|
|
|
|
// This number should be increased if tests are on slow systems
|
|
|
|
var delta = Date.now() - then;
|
|
|
|
expect(then - stat.atime).to.be.at.most(delta);
|
|
|
|
expect(then - stat.mtime).to.be.at.most(delta);
|
|
|
|
done();
|
2013-12-17 16:28:22 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
2013-12-13 05:46:31 +00:00
|
|
|
});
|
2014-01-21 21:25:09 +00:00
|
|
|
});
|
2018-10-09 16:39:18 +00:00
|
|
|
|
|
|
|
describe('fs.promises.utimes', function () {
|
|
|
|
beforeEach(util.setup);
|
|
|
|
afterEach(util.cleanup);
|
|
|
|
|
|
|
|
it('should be a function', function () {
|
|
|
|
var fs = util.fs().promises;
|
|
|
|
expect(fs.utimes).to.be.a('function');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should error when atime is negative', function () {
|
|
|
|
var fs = util.fs().promises;
|
2018-12-02 03:02:26 +00:00
|
|
|
|
|
|
|
return fs
|
|
|
|
.writeFile('/testfile', '')
|
|
|
|
.then(() => fs.utimes('/testfile', -1, Date.now()))
|
2018-10-09 16:39:18 +00:00
|
|
|
.catch(function (error) {
|
2018-12-02 03:02:26 +00:00
|
|
|
expect(error).to.exist;
|
|
|
|
expect(error.code).to.equal('EINVAL');
|
2018-10-09 16:39:18 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should error when mtime is negative', function () {
|
|
|
|
var fs = util.fs().promises;
|
|
|
|
|
2018-12-02 03:02:26 +00:00
|
|
|
return fs
|
|
|
|
.writeFile('/testfile', '')
|
|
|
|
.then(() => fs.utimes('/testfile', Date.now(), -1))
|
2018-10-09 16:39:18 +00:00
|
|
|
.catch(function (error) {
|
2018-12-02 03:02:26 +00:00
|
|
|
expect(error).to.exist;
|
|
|
|
expect(error.code).to.equal('EINVAL');
|
2018-10-09 16:39:18 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should error when mtime is an invalid number', function () {
|
|
|
|
var fs = util.fs().promises;
|
|
|
|
|
2018-12-02 03:02:26 +00:00
|
|
|
return fs
|
|
|
|
.writeFile('/testfile', '')
|
|
|
|
.then(() => fs.utimes('/testfile', Date.now(), 'invalid datetime'))
|
2018-10-09 16:39:18 +00:00
|
|
|
.catch(function (error) {
|
2018-12-02 03:02:26 +00:00
|
|
|
expect(error).to.exist;
|
|
|
|
expect(error.code).to.equal('EINVAL');
|
2018-10-09 16:39:18 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should change atime and mtime of a file path', function () {
|
|
|
|
var fs = util.fs().promises;
|
|
|
|
var atime = Date.parse('1 Oct 2000 15:33:22');
|
|
|
|
var mtime = Date.parse('30 Sep 2000 06:43:54');
|
|
|
|
|
2018-12-02 03:02:26 +00:00
|
|
|
return fs
|
|
|
|
.writeFile('/testfile', '')
|
|
|
|
.then(() => fs.utimes('/testfile', atime, mtime))
|
|
|
|
.then(() => fs.stat('/testfile'))
|
|
|
|
.then(stat => expect(stat.mtime).to.equal(mtime));
|
2018-10-09 16:39:18 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
it('should update atime and mtime of directory path', function () {
|
|
|
|
var fs = util.fs().promises;
|
|
|
|
var atime = Date.parse('1 Oct 2000 15:33:22');
|
|
|
|
var mtime = Date.parse('30 Sep 2000 06:43:54');
|
|
|
|
|
2018-12-02 03:02:26 +00:00
|
|
|
return fs
|
|
|
|
.mkdir('/testdir')
|
|
|
|
.then(() => fs.utimes('/testdir', atime, mtime))
|
|
|
|
.then(() => fs.stat('/testdir'))
|
|
|
|
.then(stat => {
|
|
|
|
expect(stat.mtime).to.equal(mtime);
|
2018-10-09 16:39:18 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should update atime and mtime using current time if arguments are null', function () {
|
|
|
|
var fs = util.fs().promises;
|
2018-12-02 03:02:26 +00:00
|
|
|
var t1;
|
2018-10-09 16:39:18 +00:00
|
|
|
|
2018-12-02 03:02:26 +00:00
|
|
|
return fs
|
|
|
|
.writeFile('/myfile', '')
|
|
|
|
.then(() => {
|
|
|
|
t1 = Date.now();
|
|
|
|
return fs.utimes('/myfile', null, null);
|
2018-10-09 16:39:18 +00:00
|
|
|
})
|
2018-12-02 03:02:26 +00:00
|
|
|
.then(() => fs.stat('/myfile'))
|
|
|
|
.then(stat => {
|
|
|
|
// Note: testing estimation as time may differ by a couple of milliseconds
|
|
|
|
// This number should be increased if tests are on slow systems
|
|
|
|
var delta = Date.now() - t1;
|
|
|
|
expect(t1 - stat.atime).to.be.at.most(delta);
|
|
|
|
expect(t1 - stat.mtime).to.be.at.most(delta);
|
2018-10-09 16:39:18 +00:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|