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
|
package showcase
import (
"reflect"
"testing"
"codeberg.org/snonux/gitsyncer/internal/config"
)
func TestIsBackupRepo(t *testing.T) {
t.Parallel()
tests := []struct {
name string
repo string
want bool
}{
{name: "exact bak suffix", repo: "foo.bak", want: true},
{name: "bak dot suffix", repo: "foo.bak.20260222", want: true},
{name: "bak dot with multiple segments", repo: "foo.bak.tmp.snapshot", want: true},
{name: "backup word", repo: "foo.backup", want: false},
{name: "bak as prefix", repo: "bak.foo", want: false},
}
for _, tc := range tests {
tc := tc
t.Run(tc.name, func(t *testing.T) {
t.Parallel()
got := isBackupRepo(tc.repo)
if got != tc.want {
t.Fatalf("isBackupRepo(%q) = %v, want %v", tc.repo, got, tc.want)
}
})
}
}
func TestIsExcluded_AdditiveRules(t *testing.T) {
t.Parallel()
g := &Generator{
config: &config.Config{
ExcludeFromShowcase: []string{"manual-exclude"},
},
}
tests := []struct {
name string
repo string
want bool
}{
{name: "excluded by config", repo: "manual-exclude", want: true},
{name: "excluded by backup suffix", repo: "repo.bak", want: true},
{name: "not excluded", repo: "normal-repo", want: false},
}
for _, tc := range tests {
tc := tc
t.Run(tc.name, func(t *testing.T) {
t.Parallel()
got := g.isExcluded(tc.repo)
if got != tc.want {
t.Fatalf("isExcluded(%q) = %v, want %v", tc.repo, got, tc.want)
}
})
}
}
func TestFilterExcludedRepos_RemovesBackupAndConfigRepos(t *testing.T) {
t.Parallel()
g := &Generator{
config: &config.Config{
ExcludeFromShowcase: []string{"manual-exclude"},
},
}
repos := []string{"normal", "manual-exclude", "mirror.bak", "mirror.bak.20260222", "keep"}
want := []string{"normal", "keep"}
got := g.filterExcludedRepos(repos)
if !reflect.DeepEqual(got, want) {
t.Fatalf("filterExcludedRepos() = %#v, want %#v", got, want)
}
}
func TestFilterExcludedRepos_EmptyConfigStillRemovesBackupRepos(t *testing.T) {
t.Parallel()
g := &Generator{
config: &config.Config{},
}
repos := []string{"normal", "archive.bak", "archive.bak.old", "keep"}
want := []string{"normal", "keep"}
got := g.filterExcludedRepos(repos)
if !reflect.DeepEqual(got, want) {
t.Fatalf("filterExcludedRepos() = %#v, want %#v", got, want)
}
}
|