-
Notifications
You must be signed in to change notification settings - Fork 333
Expand file tree
/
Copy pathTracerVersionIntegrationTest.kt
More file actions
307 lines (265 loc) · 9.96 KB
/
TracerVersionIntegrationTest.kt
File metadata and controls
307 lines (265 loc) · 9.96 KB
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
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
package datadog.gradle.plugin.version
import org.assertj.core.api.Assertions.assertThat
import org.gradle.testkit.runner.GradleRunner
import org.junit.jupiter.api.Disabled
import org.junit.jupiter.api.Test
import org.junit.jupiter.api.io.CleanupMode
import org.junit.jupiter.api.io.TempDir
import java.io.File
import java.io.IOException
class TracerVersionIntegrationTest {
@Test
fun `should use default version when not under a git clone`(@TempDir projectDir: File) {
assertTracerVersion(projectDir, "0.1.0-SNAPSHOT")
}
@Test
fun `should use default version when no git tags`(@TempDir projectDir: File) {
assertTracerVersion(
projectDir,
"0.1.0-SNAPSHOT",
beforeGradle = {
exec(projectDir, "git", "init", "--initial-branch", "main")
exec(projectDir, "git", "config", "user.email", "test@datadoghq.com")
exec(projectDir, "git", "config", "user.name", "Test")
exec(projectDir, "git", "add", "-A")
exec(projectDir, "git", "commit", "-m", "A commit")
}
)
}
@Test
fun `should ignore dirtiness when no git tags`(@TempDir projectDir: File) {
assertTracerVersion(
projectDir,
"0.1.0-SNAPSHOT",
beforeGradle = {
exec(projectDir, "git", "init", "--initial-branch", "main")
exec(projectDir, "git", "config", "user.email", "test@datadoghq.com")
exec(projectDir, "git", "config", "user.name", "Test")
exec(projectDir, "git", "add", "-A")
exec(projectDir, "git", "commit", "-m", "A commit")
File(projectDir, "settings.gradle.kts").appendText("""
// uncommitted change this file,
""".trimIndent())
}
)
}
@Test
fun `should use default version when unmatching git tags`(@TempDir projectDir: File) {
assertTracerVersion(
projectDir,
"0.1.0-SNAPSHOT",
beforeGradle = {
exec(projectDir, "git", "init", "--initial-branch", "main")
exec(projectDir, "git", "config", "user.email", "test@datadoghq.com")
exec(projectDir, "git", "config", "user.name", "Test")
exec(projectDir, "git", "add", "-A")
exec(projectDir, "git", "commit", "-m", "A commit")
exec(projectDir, "git", "tag", "something1.40.1", "-m", "Not our tag")
}
)
}
@Test
fun `should use exact version when on tag`(@TempDir projectDir: File) {
assertTracerVersion(
projectDir,
"1.52.0",
beforeGradle = {
exec(projectDir, "git", "init", "--initial-branch", "main")
exec(projectDir, "git", "config", "user.email", "test@datadoghq.com")
exec(projectDir, "git", "config", "user.name", "Test")
exec(projectDir, "git", "add", "-A")
exec(projectDir, "git", "commit", "-m", "A commit")
exec(projectDir, "git", "tag", "v1.52.0", "-m", "")
}
)
}
@Test
fun `should increment minor and mark dirtiness`(@TempDir projectDir: File) {
assertTracerVersion(
projectDir,
"1.53.0-SNAPSHOT-DIRTY",
beforeGradle = {
println("Setting up git repository in $projectDir")
File(projectDir, "gradle.properties").writeText(
"""
tracerVersion.dirtiness=true
""".trimIndent()
)
exec(projectDir, "git", "init", "--initial-branch", "main")
exec(projectDir, "git", "config", "user.email", "test@datadoghq.com")
exec(projectDir, "git", "config", "user.name", "Test")
exec(projectDir, "git", "add", "-A")
exec(projectDir, "git", "commit", "-m", "A commit")
exec(projectDir, "git", "tag", "v1.52.0", "-m", "")
File(projectDir, "settings.gradle.kts").appendText("""
// uncommitted change this file,
""".trimIndent())
}
)
}
@Test
fun `should increment minor with added commits after version tag`(@TempDir projectDir: File) {
assertTracerVersion(
projectDir,
"1.53.0-SNAPSHOT",
beforeGradle = {
exec(projectDir, "git", "init", "--initial-branch", "main")
exec(projectDir, "git", "config", "user.email", "test@datadoghq.com")
exec(projectDir, "git", "config", "user.name", "Test")
exec(projectDir, "git", "add", "-A")
exec(projectDir, "git", "commit", "-m", "A commit")
exec(projectDir, "git", "tag", "v1.52.0", "-m", "")
File(projectDir, "settings.gradle.kts").appendText(
"""
// Committed change this file,
""".trimIndent()
)
exec(projectDir, "git", "commit", "-am", "Another commit")
}
)
}
@Test
fun `should increment minor with snapshot and dirtiness with added commits after version tag and dirty`(@TempDir projectDir: File) {
assertTracerVersion(
projectDir,
"1.53.0-SNAPSHOT-DIRTY",
beforeGradle = {
File(projectDir, "gradle.properties").writeText(
"""
tracerVersion.dirtiness=true
""".trimIndent()
)
exec(projectDir, "git", "init", "--initial-branch", "main")
exec(projectDir, "git", "config", "user.email", "test@datadoghq.com")
exec(projectDir, "git", "config", "user.name", "Test")
exec(projectDir, "git", "add", "-A")
exec(projectDir, "git", "commit", "-m", "A commit")
exec(projectDir, "git", "tag", "v1.52.0", "-m", "")
val settingsFile = File(projectDir, "settings.gradle.kts")
settingsFile.appendText("""
// uncommitted change
""".trimIndent())
exec(projectDir, "git", "commit", "-am", "Another commit")
settingsFile.appendText("""
// An uncommitted modification
""".trimIndent())
}
)
}
@Test
fun `should increment patch on release branch and no patch release tag`(@TempDir projectDir: File) {
assertTracerVersion(
projectDir,
"1.52.1-SNAPSHOT",
beforeGradle = {
exec(projectDir, "git", "init", "--initial-branch", "main")
exec(projectDir, "git", "config", "user.email", "test@datadoghq.com")
exec(projectDir, "git", "config", "user.name", "Test")
exec(projectDir, "git", "add", "-A")
exec(projectDir, "git", "commit", "-m", "A commit")
exec(projectDir, "git", "tag", "v1.52.0", "-m", "")
val settingsFile = File(projectDir, "settings.gradle.kts")
settingsFile.appendText("""
// Committed change
""".trimIndent())
exec(projectDir, "git", "commit", "-am", "Another commit")
exec(projectDir, "git", "switch", "-c", "release/v1.52.x")
}
)
}
@Test
fun `should increment patch on release branch and with previous patch release tag`(@TempDir projectDir: File) {
assertTracerVersion(
projectDir,
"1.52.2-SNAPSHOT",
beforeGradle = {
exec(projectDir, "git", "init", "--initial-branch", "main")
exec(projectDir, "git", "config", "user.email", "test@datadoghq.com")
exec(projectDir, "git", "config", "user.name", "Test")
exec(projectDir, "git", "add", "-A")
exec(projectDir, "git", "commit", "-m", "A commit")
exec(projectDir, "git", "tag", "v1.52.0", "-m", "")
exec(projectDir, "git", "switch", "-c", "release/v1.52.x")
val settingsFile = File(projectDir, "settings.gradle.kts")
settingsFile.appendText("""
// Committed change
""".trimIndent())
exec(projectDir, "git", "commit", "-am", "Another commit")
exec(projectDir, "git", "tag", "v1.52.1", "-m", "")
settingsFile.appendText("""
// Another committed change
""".trimIndent())
exec(projectDir, "git", "commit", "-am", "Another commit")
}
)
}
@Test
fun `should compute version on worktrees`(@TempDir projectDir: File, @TempDir workTreeDir: File) {
assertTracerVersion(
projectDir,
"1.53.0-SNAPSHOT",
beforeGradle = {
exec(projectDir, "git", "init", "--initial-branch", "main")
exec(projectDir, "git", "config", "user.email", "test@datadoghq.com")
exec(projectDir, "git", "config", "user.name", "Test")
exec(projectDir, "git", "add", "-A")
exec(projectDir, "git", "commit", "-m", "A commit")
exec(projectDir, "git", "tag", "v1.52.0", "-m", "")
exec(projectDir, "git", "commit", "-m", "Initial commit", "--allow-empty")
exec(projectDir, "git", "worktree", "add", workTreeDir.absolutePath)
// happening on the worktree
File(workTreeDir, "settings.gradle.kts").appendText(
"""
// Committed change this file,
""".trimIndent()
)
exec(workTreeDir, "git", "commit", "-am", "Another commit")
},
workingDirectory = workTreeDir
)
}
private fun assertTracerVersion(
projectDir: File,
expectedVersion: String,
beforeGradle: () -> Unit = {},
workingDirectory: File = projectDir,
) {
File(projectDir, "settings.gradle.kts").writeText(
"""
rootProject.name = "test-project"
""".trimIndent()
)
File(projectDir, "build.gradle.kts").writeText(
"""
plugins {
id("tracer-version")
}
tasks.register("printVersion") {
logger.quiet(project.version.toString())
}
group = "datadog.tracer.version.test"
""".trimIndent()
)
beforeGradle()
val buildResult = GradleRunner.create()
.forwardOutput()
// .withGradleVersion(gradleVersion) // Use current gradle version
.withPluginClasspath()
.withArguments("printVersion", "--quiet")
.withProjectDir(workingDirectory)
// .withDebug(true)
.build()
assertThat(buildResult.output).isEqualToIgnoringNewLines(expectedVersion)
}
private fun exec(workingDirectory: File, vararg args: String) {
val exitCode = ProcessBuilder()
.command(*args)
.directory(workingDirectory)
.inheritIO()
.start()
.waitFor()
if (exitCode != 0) {
throw IOException(String.format("Process failed: %s Exit code %d", args.joinToString(" "), exitCode))
}
}
}