Sha256: 2791c1ee24f99196ee07856a8a524bd52014301d575cde47a9da84a4b9832604

Contents?: true

Size: 938 Bytes

Versions: 21

Compression:

Stored size: 938 Bytes

Contents

var test = require('tape')
var walkdir = require('../walkdir.js')
var basename = require('path').basename

test('follow symlinks',function(t){

  var links = [],paths = [],failures = [],errors = [], files = [];

  var emitter = walkdir(__dirname+'/dir/nested-symlink',{follow_symlinks:true});

  emitter.on('path',function(path,stat){
    paths.push(path);
  });

  emitter.on('file',function(path,stat){
    files.push(path);
  });

  emitter.on('link',function(path,stat){
    links.push(path);
  });

  emitter.on('error',function(path,err){
    console.log('error!!', arguments);
    errors.push(arguments);
  });

  emitter.on('fail',function(path,err){
    failures.push(path);
  });

  emitter.on('end',function(){

    t.equal(files.length,1)
    t.equal(basename(files[0]),'found-me','found the nested symlink')
    t.equal(paths.length,3,'should find 3 things')

    t.ok(!failures.length,'no failures')

    t.end();

  });
})

Version data entries

21 entries across 21 versions & 2 rubygems

Version Path
ela-4.1.6 node_modules/walkdir/test/nested-symlink.js
ela-4.1.5 node_modules/walkdir/test/nested-symlink.js
ela-4.1.4 node_modules/walkdir/test/nested-symlink.js
ela-4.1.3 node_modules/walkdir/test/nested-symlink.js
ela-4.1.2 node_modules/walkdir/test/nested-symlink.js
ela-4.1.1 node_modules/walkdir/test/nested-symlink.js
ela-4.1.0 node_modules/walkdir/test/nested-symlink.js
ela-4.0.0 node_modules/walkdir/test/nested-symlink.js
ela-3.4.3 node_modules/walkdir/test/nested-symlink.js
ela-3.4.2 node_modules/walkdir/test/nested-symlink.js
ela-3.4.0 node_modules/walkdir/test/nested-symlink.js
ela-3.3.1 node_modules/walkdir/test/nested-symlink.js
ela-3.3.0 node_modules/walkdir/test/nested-symlink.js
ela-3.2.0 node_modules/walkdir/test/nested-symlink.js
ela-3.1.1 node_modules/walkdir/test/nested-symlink.js
ela-3.1.0 node_modules/walkdir/test/nested-symlink.js
ela-3.0.0 node_modules/walkdir/test/nested-symlink.js
ela-2.0.0 node_modules/walkdir/test/nested-symlink.js
ela-1.1.0 node_modules/walkdir/test/nested-symlink.js
xcodebuild-helper-1.2.5 externals/ios-sim-master/node_modules/walkdir/test/nested-symlink.js