forked from github/evergreen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test_dependabot_file.py
219 lines (191 loc) · 6.59 KB
/
test_dependabot_file.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
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
"""Tests for the dependabot_file.py functions."""
import unittest
from unittest.mock import MagicMock
import github3
from dependabot_file import build_dependabot_file
class TestDependabotFile(unittest.TestCase):
"""
Test the dependabot_file.py functions.
"""
def test_not_found_error(self):
"""Test that the dependabot.yml file is built correctly with no package manager"""
repo = MagicMock()
response = MagicMock()
response.status_code = 404
repo.file_contents.side_effect = github3.exceptions.NotFoundError(resp=response)
result = build_dependabot_file(repo, False)
self.assertEqual(result, None)
def test_build_dependabot_file_with_bundler(self):
"""Test that the dependabot.yml file is built correctly with bundler"""
repo = MagicMock()
filename_list = ["Gemfile", "Gemfile.lock"]
for filename in filename_list:
repo.file_contents.side_effect = lambda f, filename=filename: f == filename
expected_result = """---
version: 2
updates:
- package-ecosystem: 'bundler'
directory: '/'
schedule:
interval: 'weekly'
"""
result = build_dependabot_file(repo, False)
self.assertEqual(result, expected_result)
def test_build_dependabot_file_with_npm(self):
"""Test that the dependabot.yml file is built correctly with npm"""
repo = MagicMock()
filename_list = ["package.json", "package-lock.json", "yarn.lock"]
for filename in filename_list:
repo.file_contents.side_effect = lambda f, filename=filename: f == filename
expected_result = """---
version: 2
updates:
- package-ecosystem: 'npm'
directory: '/'
schedule:
interval: 'weekly'
"""
result = build_dependabot_file(repo, False)
self.assertEqual(result, expected_result)
def test_build_dependabot_file_with_pip(self):
"""Test that the dependabot.yml file is built correctly with pip"""
repo = MagicMock()
filename_list = [
"requirements.txt",
"Pipfile",
"Pipfile.lock",
"pyproject.toml",
"poetry.lock",
]
for filename in filename_list:
repo.file_contents.side_effect = lambda f, filename=filename: f == filename
expected_result = """---
version: 2
updates:
- package-ecosystem: 'pip'
directory: '/'
schedule:
interval: 'weekly'
"""
result = build_dependabot_file(repo, False)
self.assertEqual(result, expected_result)
def test_build_dependabot_file_with_cargo(self):
"""Test that the dependabot.yml file is built correctly with Cargo"""
repo = MagicMock()
filename_list = [
"Cargo.toml",
"Cargo.lock",
]
for filename in filename_list:
repo.file_contents.side_effect = lambda f, filename=filename: f == filename
expected_result = """---
version: 2
updates:
- package-ecosystem: 'cargo'
directory: '/'
schedule:
interval: 'weekly'
"""
result = build_dependabot_file(repo, False)
self.assertEqual(result, expected_result)
def test_build_dependabot_file_with_gomod(self):
"""Test that the dependabot.yml file is built correctly with Go module"""
repo = MagicMock()
repo.file_contents.side_effect = lambda filename: filename == "go.mod"
expected_result = """---
version: 2
updates:
- package-ecosystem: 'gomod'
directory: '/'
schedule:
interval: 'weekly'
"""
result = build_dependabot_file(repo, False)
self.assertEqual(result, expected_result)
def test_build_dependabot_file_with_composer(self):
"""Test that the dependabot.yml file is built correctly with Composer"""
repo = MagicMock()
filename_list = [
"composer.json",
"composer.lock",
]
for filename in filename_list:
repo.file_contents.side_effect = lambda f, filename=filename: f == filename
expected_result = """---
version: 2
updates:
- package-ecosystem: 'composer'
directory: '/'
schedule:
interval: 'weekly'
"""
result = build_dependabot_file(repo, False)
self.assertEqual(result, expected_result)
def test_build_dependabot_file_with_hex(self):
"""Test that the dependabot.yml file is built correctly with Hex"""
repo = MagicMock()
filename_list = [
"mix.exs",
"mix.lock",
]
for filename in filename_list:
repo.file_contents.side_effect = lambda f, filename=filename: f == filename
expected_result = """---
version: 2
updates:
- package-ecosystem: 'hex'
directory: '/'
schedule:
interval: 'weekly'
"""
result = build_dependabot_file(repo, False)
self.assertEqual(result, expected_result)
def test_build_dependabot_file_with_nuget(self):
"""Test that the dependabot.yml file is built correctly with NuGet"""
repo = MagicMock()
repo.file_contents.side_effect = lambda filename: filename.endswith(".csproj")
expected_result = """---
version: 2
updates:
- package-ecosystem: 'nuget'
directory: '/'
schedule:
interval: 'weekly'
"""
result = build_dependabot_file(repo, False)
self.assertEqual(result, expected_result)
def test_build_dependabot_file_with_docker(self):
"""Test that the dependabot.yml file is built correctly with Docker"""
repo = MagicMock()
repo.file_contents.side_effect = lambda filename: filename == "Dockerfile"
expected_result = """---
version: 2
updates:
- package-ecosystem: 'docker'
directory: '/'
schedule:
interval: 'weekly'
"""
result = build_dependabot_file(repo, False)
self.assertEqual(result, expected_result)
def test_build_dependabot_file_with_groups(self):
"""Test that the dependabot.yml file is built correctly with grouped dependencies"""
repo = MagicMock()
repo.file_contents.side_effect = lambda filename: filename == "Dockerfile"
expected_result = """---
version: 2
updates:
- package-ecosystem: 'docker'
directory: '/'
schedule:
interval: 'weekly'
groups:
production-dependencies:
dependency-type: 'production'
development-dependencies:
dependency-type: 'development'
"""
result = build_dependabot_file(repo, True)
self.assertEqual(result, expected_result)
if __name__ == "__main__":
unittest.main()