Ohm-Management - Projektarbeit B-ME
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

opts_fs_sync.js 856B

123456789101112131415161718192021222324252627
  1. var mkdirp = require('../');
  2. var path = require('path');
  3. var test = require('tap').test;
  4. var mockfs = require('mock-fs');
  5. var _0777 = parseInt('0777', 8);
  6. var _0755 = parseInt('0755', 8);
  7. test('opts.fs sync', function (t) {
  8. t.plan(4);
  9. var x = Math.floor(Math.random() * Math.pow(16,4)).toString(16);
  10. var y = Math.floor(Math.random() * Math.pow(16,4)).toString(16);
  11. var z = Math.floor(Math.random() * Math.pow(16,4)).toString(16);
  12. var file = '/beep/boop/' + [x,y,z].join('/');
  13. var xfs = mockfs.fs();
  14. mkdirp.sync(file, { fs: xfs, mode: _0755 });
  15. xfs.exists(file, function (ex) {
  16. t.ok(ex, 'created file');
  17. xfs.stat(file, function (err, stat) {
  18. t.ifError(err);
  19. t.equal(stat.mode & _0777, _0755);
  20. t.ok(stat.isDirectory(), 'target not a directory');
  21. });
  22. });
  23. });