-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtest_licensevalidator.py
158 lines (127 loc) · 4.73 KB
/
test_licensevalidator.py
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
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
# Copyright (c) 2022-2025 Contributors to the Eclipse Foundation
#
# This program and the accompanying materials are made available under the
# terms of the Apache License, Version 2.0 which is available at
# https://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.
#
# SPDX-License-Identifier: Apache-2.0
"""Integration tests for license validator."""
from licensevalidator.licensevalidator import validate_used_licenses
def test_python_with_workflows():
"""Test python project without workflows."""
result, origin_vs_deps = validate_used_licenses(
"./testbench/python-with-workflows",
[
{
"path": "./my-source",
"python-pip-included-requirement-files": ["requirements.txt"],
}
],
"whitelist.txt",
)
assert result is True
assert len(origin_vs_deps) == 2
assert "Python" in origin_vs_deps
python_deps = origin_vs_deps["Python"]
assert len(python_deps) == 4
assert python_deps[0].name == "idna"
assert python_deps[1].name == "multidict"
assert python_deps[2].name == "six"
assert python_deps[3].name == "yarl"
assert "Workflows" in origin_vs_deps
workflow_deps = origin_vs_deps["Workflows"]
assert workflow_deps[0].name == "actions/checkout"
def test_python_without_workflows():
"""Test python project with workflows."""
result, origin_vs_deps = validate_used_licenses(
"./testbench/python-without-workflows",
[
{
"path": "./src",
"python-pip-included-requirement-files": ["requirements.txt"],
}
],
"whitelist.txt",
)
assert result is True
assert len(origin_vs_deps) == 1
assert "Python" in origin_vs_deps
python_deps = origin_vs_deps["Python"]
assert len(python_deps) == 4
assert python_deps[0].name == "idna"
assert python_deps[1].name == "multidict"
assert python_deps[2].name == "six"
assert python_deps[3].name == "yarl"
def test_python_without_req_files():
"""Test python project with non-existant requirement file."""
result, origin_vs_deps = validate_used_licenses(
"./testbench/python-without-workflows",
[
{
"path": "./src",
"python-pip-included-requirement-files": ["random-string.txt"],
}
],
"whitelist.txt",
)
assert result is True
assert len(origin_vs_deps) == 0
def test_javascript():
"""Test javascript project."""
result, origin_vs_deps = validate_used_licenses(
"./testbench/javascript-npm", [{"path": "."}], "whitelist.txt"
)
assert result is True
assert len(origin_vs_deps) == 1
assert "JavaScript" in origin_vs_deps
assert origin_vs_deps["JavaScript"][0].name == "javascript-npm"
assert origin_vs_deps["JavaScript"][0].version == "1.0.0"
assert origin_vs_deps["JavaScript"][1].name == "typescript"
assert origin_vs_deps["JavaScript"][1].version == "4.6.3"
# def test_cpp():
# """Test cpp project."""
# result, origin_vs_deps = validate_used_licenses(
# "./testbench/multilang/cpp-proj",
# [{"path": ".", "cpp-conan-included-profile-files": ["./conan_profile"]}],
# "../whitelist.txt",
# )
# assert result
# assert len(origin_vs_deps) == 1
# assert "c++" in origin_vs_deps
# index = 0
# assert origin_vs_deps["c++"][index].name == "abseil"
# index += 1
# assert origin_vs_deps["c++"][index].name == "c-ares"
# index += 1
# assert origin_vs_deps["c++"][index].name == "grpc"
# index += 1
# assert origin_vs_deps["c++"][index].name == "gtest"
# index += 1
# assert origin_vs_deps["c++"][index].name == "openssl"
# index += 1
# assert origin_vs_deps["c++"][index].name == "protobuf"
# index += 1
# assert origin_vs_deps["c++"][index].name == "re2"
# index += 1
# assert origin_vs_deps["c++"][index].name == "zlib"
# def test_multilang():
# result, origin_vs_deps = validate_used_licenses(
# "./testbench/multilang",
# [
# {"path": "cpp-proj", "cpp-conan-included-profile-files": ["conan_profile"]},
# {"path": "rust-proj"},
# {"path": "python-proj"},
# ],
# "whitelist.txt",
# )
# assert result is False
# assert len(origin_vs_deps) == 3
# assert "c++" in origin_vs_deps
# assert "Rust" in origin_vs_deps
# assert "Python" in origin_vs_deps