git-off

git off handles large files in git repos
git clone https://noulin.net/git/git-off.git
Log | Files | Refs | README

rel.js (987B)


      1 var mkdirp = require('../');
      2 var path = require('path');
      3 var fs = require('fs');
      4 var exists = fs.exists || path.exists;
      5 var test = require('tap').test;
      6 var _0777 = parseInt('0777', 8);
      7 var _0755 = parseInt('0755', 8);
      8 
      9 test('rel', function (t) {
     10     t.plan(5);
     11     var x = Math.floor(Math.random() * Math.pow(16,4)).toString(16);
     12     var y = Math.floor(Math.random() * Math.pow(16,4)).toString(16);
     13     var z = Math.floor(Math.random() * Math.pow(16,4)).toString(16);
     14     
     15     var cwd = process.cwd();
     16     process.chdir('/tmp');
     17     
     18     var file = [x,y,z].join('/');
     19     
     20     mkdirp(file, _0755, function (err) {
     21         t.ifError(err);
     22         exists(file, function (ex) {
     23             t.ok(ex, 'file created');
     24             fs.stat(file, function (err, stat) {
     25                 t.ifError(err);
     26                 process.chdir(cwd);
     27                 t.equal(stat.mode & _0777, _0755);
     28                 t.ok(stat.isDirectory(), 'target not a directory');
     29             })
     30         })
     31     });
     32 });