|
| 1 | +package cmd |
| 2 | + |
| 3 | +import ( |
| 4 | + "testing" |
| 5 | + |
| 6 | + "github.com/openshift/origin/tools/depcheck/pkg/analyze" |
| 7 | + "github.com/openshift/origin/tools/depcheck/pkg/graph" |
| 8 | +) |
| 9 | + |
| 10 | +func newGraphOptions() *graph.GraphOptions { |
| 11 | + opts := &graph.GraphOptions{ |
| 12 | + Packages: &graph.PackageList{ |
| 13 | + Packages: []graph.Package{ |
| 14 | + { |
| 15 | + ImportPath: "foo.com/bar/baz", |
| 16 | + Imports: []string{ |
| 17 | + "foo.com/bar/baz/one", |
| 18 | + "foo.com/bar/baz/two", |
| 19 | + }, |
| 20 | + }, |
| 21 | + { |
| 22 | + ImportPath: "foo.com/bar/baz/one", |
| 23 | + Imports: []string{ |
| 24 | + "foo.com/bar/baz/vendor/vendor.com/one", |
| 25 | + "foo.com/bar/baz/vendor/vendor.com/mine", |
| 26 | + }, |
| 27 | + }, |
| 28 | + { |
| 29 | + ImportPath: "foo.com/bar/baz/two", |
| 30 | + Imports: []string{ |
| 31 | + "foo.com/bar/baz/vendor/vendor.com/ours", |
| 32 | + }, |
| 33 | + }, |
| 34 | + { |
| 35 | + ImportPath: "foo.com/bar/baz/vendor/vendor.com/one", |
| 36 | + Imports: []string{ |
| 37 | + "foo.com/bar/baz/vendor/vendor.com/two", |
| 38 | + "foo.com/bar/baz/vendor/vendor.com/three", |
| 39 | + }, |
| 40 | + }, |
| 41 | + { |
| 42 | + ImportPath: "foo.com/bar/baz/vendor/vendor.com/two", |
| 43 | + Imports: []string{ |
| 44 | + "fmt", |
| 45 | + }, |
| 46 | + }, |
| 47 | + { |
| 48 | + ImportPath: "foo.com/bar/baz/vendor/vendor.com/three", |
| 49 | + Imports: []string{ |
| 50 | + "foo.com/bar/baz/vendor/vendor.com/ours", |
| 51 | + "foo.com/bar/baz/vendor/vendor.com/transitive_ours", |
| 52 | + }, |
| 53 | + }, |
| 54 | + { |
| 55 | + ImportPath: "foo.com/bar/baz/vendor/vendor.com/ours", |
| 56 | + Imports: []string{ |
| 57 | + "foo.com/bar/baz/vendor/vendor.com/transitive_ours", |
| 58 | + }, |
| 59 | + }, |
| 60 | + { |
| 61 | + ImportPath: "foo.com/bar/baz/vendor/vendor.com/mine", |
| 62 | + Imports: []string{ |
| 63 | + "fmt", |
| 64 | + }, |
| 65 | + }, |
| 66 | + }, |
| 67 | + }, |
| 68 | + } |
| 69 | + |
| 70 | + // add roots |
| 71 | + opts.Roots = []string{ |
| 72 | + "foo.com/bar/baz", |
| 73 | + "foo.com/bar/baz/one", |
| 74 | + "foo.com/bar/baz/two", |
| 75 | + } |
| 76 | + |
| 77 | + return opts |
| 78 | +} |
| 79 | + |
| 80 | +func TestGraphAnalysisCalculatesDependencyRoots(t *testing.T) { |
| 81 | + opts := &AnalyzeOptions{ |
| 82 | + GraphOptions: newGraphOptions(), |
| 83 | + Dependencies: []string{ |
| 84 | + "foo.com/bar/baz/vendor/vendor.com/one", |
| 85 | + }, |
| 86 | + } |
| 87 | + |
| 88 | + expected := []string{"foo.com/bar/baz/vendor/vendor.com/one"} |
| 89 | + |
| 90 | + g, err := opts.GraphOptions.BuildGraph() |
| 91 | + if err != nil { |
| 92 | + t.Fatalf("unexpected error: %v", err) |
| 93 | + } |
| 94 | + |
| 95 | + actual, err := opts.calculateYoursRoots(g) |
| 96 | + if err != nil { |
| 97 | + t.Fatalf("unexpected error: %v", err) |
| 98 | + } |
| 99 | + |
| 100 | + if len(actual) != len(expected) { |
| 101 | + t.Fatalf("node count mismatch; expecting %v \"yours\" roots, but got %v", len(expected), len(actual)) |
| 102 | + } |
| 103 | + |
| 104 | + for idx := range actual { |
| 105 | + if actual[idx].UniqueName != expected[idx] { |
| 106 | + t.Fatalf("expecting root with import path %q but saw %q", expected[idx], actual[idx].UniqueName) |
| 107 | + } |
| 108 | + } |
| 109 | +} |
| 110 | + |
| 111 | +func TestGraphAnalyzisCalculatesYoursDependencies(t *testing.T) { |
| 112 | + opts := &AnalyzeOptions{ |
| 113 | + GraphOptions: newGraphOptions(), |
| 114 | + Dependencies: []string{ |
| 115 | + "foo.com/bar/baz/vendor/vendor.com/one", |
| 116 | + }, |
| 117 | + } |
| 118 | + |
| 119 | + g, err := opts.GraphOptions.BuildGraph() |
| 120 | + if err != nil { |
| 121 | + t.Fatalf("unexpected error: %v", err) |
| 122 | + } |
| 123 | + |
| 124 | + yoursRoots, err := opts.calculateYoursRoots(g) |
| 125 | + if err != nil { |
| 126 | + t.Fatalf("unexpected error: %v", err) |
| 127 | + } |
| 128 | + |
| 129 | + // dependencies unique to the vendored dependency we are analyzing |
| 130 | + expected := []string{ |
| 131 | + "vendor.com/two", |
| 132 | + "vendor.com/three", |
| 133 | + } |
| 134 | + actual := analyze.FindExclusiveDependencies(g, yoursRoots) |
| 135 | + |
| 136 | + if len(expected) != len(actual) { |
| 137 | + t.Fatalf("node count mismatch; expecting %v \"yours\" dependencies, but got %v", len(expected), len(actual)) |
| 138 | + } |
| 139 | + |
| 140 | + for _, expectedNode := range expected { |
| 141 | + found := false |
| 142 | + for _, actualNode := range actual { |
| 143 | + if actualNode.String() == expectedNode { |
| 144 | + found = true |
| 145 | + break |
| 146 | + } |
| 147 | + } |
| 148 | + if !found { |
| 149 | + t.Fatalf("expected \"yours\" dependency %q was not found", expectedNode) |
| 150 | + } |
| 151 | + } |
| 152 | +} |
| 153 | + |
| 154 | +func TestGraphAnalyzisCalculatesMineAndOurs(t *testing.T) { |
| 155 | + opts := &AnalyzeOptions{ |
| 156 | + GraphOptions: newGraphOptions(), |
| 157 | + Dependencies: []string{ |
| 158 | + "foo.com/bar/baz/vendor/vendor.com/one", |
| 159 | + }, |
| 160 | + } |
| 161 | + |
| 162 | + g, err := opts.GraphOptions.BuildGraph() |
| 163 | + if err != nil { |
| 164 | + t.Fatalf("unexpected error: %v", err) |
| 165 | + } |
| 166 | + |
| 167 | + yoursRoots, err := opts.calculateYoursRoots(g) |
| 168 | + if err != nil { |
| 169 | + t.Fatalf("unexpected error: %v", err) |
| 170 | + } |
| 171 | + |
| 172 | + expectedMine := []string{ |
| 173 | + "vendor.com/one", |
| 174 | + "vendor.com/mine", |
| 175 | + } |
| 176 | + expectedOurs := []string{ |
| 177 | + "vendor.com/ours", |
| 178 | + } |
| 179 | + |
| 180 | + // transitive dependencies (that are also not unique to the vendor dep we are analyzing) |
| 181 | + expectedMissing := []string{ |
| 182 | + "vendor.com/transitive_ours", |
| 183 | + } |
| 184 | + |
| 185 | + yours := analyze.FindExclusiveDependencies(g, yoursRoots) |
| 186 | + mine, ours, err := opts.calculateMineOurs(g, yours) |
| 187 | + if err != nil { |
| 188 | + t.Fatalf("unexpected error: %v", err) |
| 189 | + } |
| 190 | + |
| 191 | + if len(ours) != len(expectedOurs) { |
| 192 | + t.Fatalf("node count mismatch; expecting %v \"ours\" dependencies, but got %v", len(expectedOurs), len(ours)) |
| 193 | + } |
| 194 | + if len(mine) != len(expectedMine) { |
| 195 | + t.Fatalf("node count mismatch; expecting %v \"mine\" dependencies, but got %v", len(expectedMine), len(mine)) |
| 196 | + } |
| 197 | + |
| 198 | + for _, expected := range expectedOurs { |
| 199 | + found := false |
| 200 | + for _, actualOurs := range ours { |
| 201 | + if expected == actualOurs.String() { |
| 202 | + found = true |
| 203 | + break |
| 204 | + } |
| 205 | + } |
| 206 | + if !found { |
| 207 | + t.Fatalf("expected \"ours\" dependency %q was not found", expected) |
| 208 | + } |
| 209 | + } |
| 210 | + |
| 211 | + for _, expected := range expectedMine { |
| 212 | + found := false |
| 213 | + for _, actualMine := range mine { |
| 214 | + if expected == actualMine.String() { |
| 215 | + found = true |
| 216 | + break |
| 217 | + } |
| 218 | + } |
| 219 | + if !found { |
| 220 | + t.Fatalf("expected \"ours\" dependency %q was not found", expected) |
| 221 | + } |
| 222 | + } |
| 223 | + |
| 224 | + for _, missing := range expectedMissing { |
| 225 | + found := false |
| 226 | + for _, actual := range append(yours, append(mine, ours...)...) { |
| 227 | + if missing == actual.String() { |
| 228 | + found = true |
| 229 | + break |
| 230 | + } |
| 231 | + } |
| 232 | + |
| 233 | + if found { |
| 234 | + t.Fatalf("expecting %q to be missing, but was found in yours, mine, ours set", missing) |
| 235 | + } |
| 236 | + } |
| 237 | +} |
0 commit comments