Bug:Fix file validation issue
[vnfsdk/refrepo.git] / vnfmarket / src / main / webapp / vnfmarket / node_modules / coffee-script / node_modules / mkdirp / test / sync.js
1 var mkdirp = require('../');
2 var path = require('path');
3 var fs = require('fs');
4 var test = require('tap').test;
5
6 test('sync', function (t) {
7     t.plan(2);
8     var x = Math.floor(Math.random() * Math.pow(16,4)).toString(16);
9     var y = Math.floor(Math.random() * Math.pow(16,4)).toString(16);
10     var z = Math.floor(Math.random() * Math.pow(16,4)).toString(16);
11
12     var file = '/tmp/' + [x,y,z].join('/');
13
14     try {
15         mkdirp.sync(file, 0755);
16     } catch (err) {
17         t.fail(err);
18         return t.end();
19     }
20
21     path.exists(file, function (ex) {
22         if (!ex) t.fail('file not created')
23         else fs.stat(file, function (err, stat) {
24             if (err) t.fail(err)
25             else {
26                 t.equal(stat.mode & 0777, 0755);
27                 t.ok(stat.isDirectory(), 'target not a directory');
28                 t.end();
29             }
30         });
31     });
32 });