summaryrefslogtreecommitdiff
path: root/deps/npm/node_modules/fstream-ignore/test/nested-ignores.js
blob: a9ede59ca7d0aa6d305894f97b7fe4177c09df41 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
// ignore most things
var IgnoreFile = require("../")

// set the ignores just for this test
var c = require("./common.js")
c.ignores(
  { ".ignore": ["*", "a", "c", "!a/b/c/.abc", "!/c/b/a/cba"]
  , "a/.ignore": [ "!*", ".ignore" ] // unignore everything
  , "a/a/.ignore": [ "*" ] // re-ignore everything
  , "a/b/.ignore": [ "*", "!/c/.abc" ] // original unignore
  , "a/c/.ignore": [ "*" ] // ignore everything again
  , "c/b/a/.ignore": [ "!cba", "!.cba", "!/a{bc,cb}" ]
  })

// the only files we expect to see
var expected =
  [ "/a"
  , "/a/a"
  , "/a/b"
  , "/a/b/c"
  , "/a/b/c/.abc"
  , "/a/c"
  , "/c"
  , "/c/b"
  , "/c/b/a"
  , "/c/b/a/cba"
  , "/c/b/a/.cba"
  , "/c/b/a/abc"
  , "/c/b/a/acb" ]

require("tap").test("basic ignore rules", function (t) {
  t.pass("start")

  IgnoreFile({ path: __dirname + "/fixtures"
             , ignoreFiles: [".ignore"] })
    .on("child", function (e) {
      var p = e.path.substr(e.root.path.length)
      var i = expected.indexOf(p)
      if (i === -1) {
        console.log("not ok "+p)
        t.fail("unexpected file found", {found: p})
      } else {
        t.pass(p)
        expected.splice(i, 1)
      }
    })
    .on("close", function () {
      t.deepEqual(expected, [], "all expected files should be seen")
      t.end()
    })
})