|
| 1 | +package node_modules |
| 2 | + |
| 3 | +import ( |
| 4 | + "path" |
| 5 | + "testing" |
| 6 | + |
| 7 | + . "github.com/onsi/gomega" |
| 8 | + "github.com/samber/lo" |
| 9 | +) |
| 10 | + |
| 11 | +func TestReadDependencyTreeByNpm(t *testing.T) { |
| 12 | + g := NewGomegaWithT(t) |
| 13 | + |
| 14 | + collector := &Collector{ |
| 15 | + unresolvedDependencies: make(map[string]bool), |
| 16 | + excludedDependencies: make(map[string]bool), |
| 17 | + NodeModuleDirToDependencyMap: make(map[string]*map[string]*Dependency), |
| 18 | + } |
| 19 | + |
| 20 | + dir := path.Join(Dirname(), "npm-demo") |
| 21 | + |
| 22 | + dependency, err := readPackageJson(dir) |
| 23 | + dependency.dir = dir |
| 24 | + g.Expect(err).NotTo(HaveOccurred()) |
| 25 | + |
| 26 | + err = collector.readDependencyTree(dependency) |
| 27 | + g.Expect(err).NotTo(HaveOccurred()) |
| 28 | + r := lo.FlatMap(lo.Values(collector.NodeModuleDirToDependencyMap), func(it *map[string]*Dependency, i int) []string { |
| 29 | + return lo.Keys(*it) |
| 30 | + }) |
| 31 | + g.Expect(r).To(ConsistOf([]string{ |
| 32 | + "js-tokens", "react", "loose-envify", |
| 33 | + })) |
| 34 | +} |
| 35 | + |
| 36 | +func TestReadDependencyTreeByPnpm(t *testing.T) { |
| 37 | + g := NewGomegaWithT(t) |
| 38 | + |
| 39 | + collector := &Collector{ |
| 40 | + unresolvedDependencies: make(map[string]bool), |
| 41 | + excludedDependencies: make(map[string]bool), |
| 42 | + NodeModuleDirToDependencyMap: make(map[string]*map[string]*Dependency), |
| 43 | + } |
| 44 | + |
| 45 | + dir := path.Join(Dirname(), "pnpm-demo") |
| 46 | + |
| 47 | + dependency, err := readPackageJson(dir) |
| 48 | + dependency.dir = dir |
| 49 | + g.Expect(err).NotTo(HaveOccurred()) |
| 50 | + |
| 51 | + err = collector.readDependencyTree(dependency) |
| 52 | + g.Expect(err).NotTo(HaveOccurred()) |
| 53 | + r := lo.FlatMap(lo.Values(collector.NodeModuleDirToDependencyMap), func(it *map[string]*Dependency, i int) []string { |
| 54 | + return lo.Keys(*it) |
| 55 | + }) |
| 56 | + g.Expect(r).To(ConsistOf([]string{ |
| 57 | + "js-tokens", "react", "loose-envify", |
| 58 | + })) |
| 59 | +} |
0 commit comments