added permanent artifact links for latest green builds: /branches/<branch-key>/... serves the latest green build's artifacts (green-only, resolved per request), keepLatestGreen retention protection, permanent artifact-index page, and latestGreenUrl links in the branches view

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
Michael Hoennig
2026-07-08 15:35:16 +02:00
co-authored by Claude Fable 5
parent 83e70e73c3
commit bb06c8b731
25 changed files with 820 additions and 18 deletions
@@ -2,18 +2,24 @@ package de.hoennig.gittally.server
import com.ninjasquad.springmockk.MockkBean
import de.hoennig.gittally.build.ArtifactStore
import de.hoennig.gittally.build.BuildResult
import de.hoennig.gittally.build.BuildStatus
import io.kotest.core.spec.style.FunSpec
import io.mockk.clearMocks
import io.mockk.every
import org.springframework.beans.factory.annotation.Autowired
import org.springframework.boot.webmvc.test.autoconfigure.WebMvcTest
import org.springframework.http.HttpStatus
import org.springframework.test.web.servlet.MockMvc
import org.springframework.test.web.servlet.request.MockMvcRequestBuilders.get
import org.springframework.test.web.servlet.result.MockMvcResultMatchers.content
import org.springframework.test.web.servlet.result.MockMvcResultMatchers.header
import org.springframework.test.web.servlet.result.MockMvcResultMatchers.status
import org.springframework.web.server.ResponseStatusException
import java.nio.file.Files
import java.nio.file.Path
import java.time.Duration
import java.time.Instant
@WebMvcTest(ArtifactFileController::class, properties = ["spring.main.web-application-type=servlet"])
class ArtifactFileControllerTest : FunSpec() {
@@ -23,13 +29,29 @@ class ArtifactFileControllerTest : FunSpec() {
@MockkBean
lateinit var artifactStore: ArtifactStore
@MockkBean
lateinit var branchPermalinks: BranchPermalinks
private val artifactDir: Path = Files.createTempDirectory("gittally-artifact-serve-test")
private val greenBuild =
BuildResult(
branch = "main",
commit = "0123456789abcdef",
status = BuildStatus.SUCCESS,
startedAt = Instant.parse("2026-07-07T10:00:00Z"),
duration = Duration.ofSeconds(83),
artifactKey = "known-key",
)
init {
beforeEach {
clearMocks(artifactStore)
clearMocks(artifactStore, branchPermalinks)
every { artifactStore.artifactDir(any()) } returns null
every { artifactStore.artifactDir("known-key") } returns artifactDir
every { branchPermalinks.latestGreenBuild(any()) } throws
ResponseStatusException(HttpStatus.NOT_FOUND, "no recorded builds")
every { branchPermalinks.latestGreenBuild("main") } returns greenBuild
}
test("serves an html artifact with no-cache headers") {
@@ -85,5 +107,79 @@ class ArtifactFileControllerTest : FunSpec() {
Files.deleteIfExists(outside)
}
}
test("permanent URL serves the file from the branch's latest green build") {
Files.writeString(artifactDir.resolve("build.log"), "line one")
mockMvc
.perform(get("/branches/main/build.log"))
.andExpect(status().isOk)
.andExpect(header().string("Cache-Control", "no-store, max-age=0"))
.andExpect(content().string("line one"))
}
test("permanent URL serves even normally cacheable files with no-store") {
val nested = Files.createDirectories(artifactDir.resolve("reports/tests"))
Files.writeString(nested.resolve("summary.css"), "body {}")
mockMvc
.perform(get("/branches/main/reports/tests/summary.css"))
.andExpect(status().isOk)
.andExpect(header().string("Cache-Control", "no-store, max-age=0"))
}
test("permanent directory URL with trailing slash serves the directory's index.html") {
val reportDir = Files.createDirectories(artifactDir.resolve("reports/build/doc"))
Files.writeString(reportDir.resolve("index.html"), "<html>doc</html>")
mockMvc
.perform(get("/branches/main/reports/build/doc/"))
.andExpect(status().isOk)
.andExpect(header().string("Content-Type", "text/html"))
.andExpect(content().string("<html>doc</html>"))
}
test("permanent directory URL without trailing slash redirects to the trailing-slash form") {
val reportDir = Files.createDirectories(artifactDir.resolve("reports/build/doc"))
Files.writeString(reportDir.resolve("index.html"), "<html>doc</html>")
mockMvc
.perform(get("/branches/main/reports/build/doc"))
.andExpect(status().isFound)
.andExpect(header().string("Location", "/branches/main/reports/build/doc/"))
.andExpect(header().string("Cache-Control", "no-store, max-age=0"))
}
test("permanent URL with a bare trailing slash redirects to the artifact index page") {
mockMvc
.perform(get("/branches/main/"))
.andExpect(status().isFound)
.andExpect(header().string("Location", "/branches/main"))
}
test("permanent URL of an unknown branch key answers 404") {
mockMvc
.perform(get("/branches/no-such-branch/build.log"))
.andExpect(status().isNotFound)
}
test("permanent URL answers 404 when the green build's artifacts are gone") {
every { branchPermalinks.latestGreenBuild("main") } returns greenBuild.copy(artifactKey = "pruned-key")
mockMvc
.perform(get("/branches/main/build.log"))
.andExpect(status().isNotFound)
}
test("permanent URL rejects path traversal out of the artifact directory") {
val outside = Files.writeString(artifactDir.parent.resolve("outside.txt"), "secret")
try {
mockMvc
.perform(get("/branches/main/../outside.txt"))
.andExpect(status().is4xxClientError)
} finally {
Files.deleteIfExists(outside)
}
}
}
}