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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
|
// Copyright 2021 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package compliance
import (
"sort"
"testing"
)
var (
// bottomUp describes the bottom-up resolve of a hypothetical graph
// the graph has a container image, a couple binaries, and a couple
// libraries. bin1 statically links lib1 and dynamically links lib2;
// bin2 dynamically links lib1 and statically links lib2.
// binc represents a compiler or other toolchain binary used for
// building the other binaries.
bottomUp = []res{
{"image", "image", "notice|restricted"},
{"image", "bin1", "reciprocal"},
{"image", "bin2", "restricted"},
{"image", "lib1", "notice"},
{"image", "lib2", "notice"},
{"binc", "binc", "proprietary"},
{"bin1", "bin1", "reciprocal"},
{"bin1", "lib1", "notice"},
{"bin2", "bin2", "restricted"},
{"bin2", "lib2", "notice"},
{"lib1", "lib1", "notice"},
{"lib2", "lib2", "notice"},
}
// notice describes bottomUp after a top-down notice resolve.
notice = []res{
{"image", "image", "notice|restricted"},
{"image", "bin1", "reciprocal"},
{"image", "bin2", "restricted"},
{"image", "lib1", "notice"},
{"image", "lib2", "notice|restricted"},
{"bin1", "bin1", "reciprocal"},
{"bin1", "lib1", "notice"},
{"bin2", "bin2", "restricted"},
{"bin2", "lib2", "notice|restricted"},
{"lib1", "lib1", "notice"},
{"lib2", "lib2", "notice"},
}
// share describes bottomUp after a top-down share resolve.
share = []res{
{"image", "image", "restricted"},
{"image", "bin1", "reciprocal"},
{"image", "bin2", "restricted"},
{"image", "lib2", "restricted"},
{"bin1", "bin1", "reciprocal"},
{"bin2", "bin2", "restricted"},
{"bin2", "lib2", "restricted"},
}
// proprietary describes bottomUp after a top-down proprietary resolve.
// Note that the proprietary binc is not reachable through the toolchain
// dependency.
proprietary = []res{}
)
func TestResolutionSet_AttachesTo(t *testing.T) {
lg := newLicenseGraph()
rsShare := toResolutionSet(lg, share)
t.Logf("checking resolution set %s", rsShare.String())
actual := rsShare.AttachesTo().Names()
sort.Strings(actual)
expected := []string{"bin1", "bin2", "image"}
t.Logf("actual rsShare: %v", actual)
t.Logf("expected rsShare: %v", expected)
if len(actual) != len(expected) {
t.Errorf("rsShare: wrong number of targets: got %d, want %d", len(actual), len(expected))
return
}
for i := 0; i < len(actual); i++ {
if actual[i] != expected[i] {
t.Errorf("rsShare: unexpected target at index %d: got %s, want %s", i, actual[i], expected[i])
}
}
rsPrivate := toResolutionSet(lg, proprietary)
actual = rsPrivate.AttachesTo().Names()
expected = []string{}
t.Logf("actual rsPrivate: %v", actual)
t.Logf("expected rsPrivate: %v", expected)
if len(actual) != len(expected) {
t.Errorf("rsPrivate: wrong number of targets: got %d, want %d", len(actual), len(expected))
return
}
for i := 0; i < len(actual); i++ {
if actual[i] != expected[i] {
t.Errorf("rsPrivate: unexpected target at index %d: got %s, want %s", i, actual[i], expected[i])
}
}
}
func TestResolutionSet_AttachesToTarget(t *testing.T) {
lg := newLicenseGraph()
rsShare := toResolutionSet(lg, share)
t.Logf("checking resolution set %s", rsShare.String())
if rsShare.AttachesToTarget(newTestNode(lg, "binc")) {
t.Errorf("actual.AttachesToTarget(\"binc\"): got true, want false")
}
if !rsShare.AttachesToTarget(newTestNode(lg, "image")) {
t.Errorf("actual.AttachesToTarget(\"image\"): got false want true")
}
}
|