-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Expand file tree
/
Copy pathdocs_test.go
More file actions
85 lines (73 loc) · 2.28 KB
/
Copy pathdocs_test.go
File metadata and controls
85 lines (73 loc) · 2.28 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
package main //nolint:testpackage // Tests unexported release helpers.
import "testing"
// TestUpdateCalendarLatestReleaseVersionPrefix checks the formatting of the
// "Latest Release" cell produced by updateCalendar. version.String() already
// includes a leading "v", so the link label must not add a second one, while
// the release tag URL keeps the "v" because tags are prefixed with it.
func TestUpdateCalendarLatestReleaseVersionPrefix(t *testing.T) {
t.Parallel()
tests := []struct {
name string
newVer version
channel string
want string
}{
{
name: "patch release",
newVer: version{Major: 2, Minor: 35, Patch: 1},
channel: "mainline",
want: "[v2.35.1](https://github.com/coder/coder/releases/tag/v2.35.1)",
},
{
name: "minor release",
newVer: version{Major: 2, Minor: 35, Patch: 0},
channel: "mainline",
want: "[v2.35.0](https://github.com/coder/coder/releases/tag/v2.35.0)",
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
t.Parallel()
rows := []calendarRow{{
ReleaseName: "2.35",
Major: 2,
Minor: 35,
ReleaseDate: "February 03, 2026",
Status: "Mainline",
LatestRelease: "N/A",
}}
got := updateCalendar(rows, tt.newVer, tt.channel)
var cell string
for _, r := range got {
if r.Major == tt.newVer.Major && r.Minor == tt.newVer.Minor {
cell = r.LatestRelease
break
}
}
if cell != tt.want {
t.Fatalf("LatestRelease = %q, want %q", cell, tt.want)
}
})
}
}
// TestUpdateCalendarNotReleasedRowName checks that a "Not Released" row is
// promoted to "Mainline" with a major.minor "Release name" link (patch
// omitted) once its minor version is released.
func TestUpdateCalendarNotReleasedRowName(t *testing.T) {
t.Parallel()
rows := []calendarRow{{
ReleaseName: "2.36",
Major: 2,
Minor: 36,
Status: "Not Released",
LatestRelease: "N/A",
}}
got := updateCalendar(rows, version{Major: 2, Minor: 36, Patch: 0}, "mainline")
if got[0].Status != "Mainline" {
t.Errorf("Status = %q, want %q", got[0].Status, "Mainline")
}
const want = "[2.36](https://coder.com/changelog/coder-2-36)"
if got[0].ReleaseName != want {
t.Fatalf("ReleaseName = %q, want %q", got[0].ReleaseName, want)
}
}