forked from Debian/dh-make-golang
-
Notifications
You must be signed in to change notification settings - Fork 0
/
make_test.go
67 lines (60 loc) · 1.62 KB
/
make_test.go
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
package main
import (
"testing"
)
var shortName = []struct {
in string
out string
}{
{"", "TODO"},
{"d", "TODO"},
{"d--", "TODO"},
}
func TestAcceptInput(t *testing.T) {
for _, tt := range shortName {
in := normalizeDebianPackageName(tt.in)
if in != tt.out {
t.Errorf("userInput(%q) => %q, want %q", tt.in, in, tt.out)
}
}
}
var miscName = []struct {
in string
out string
}{
{"dh-make-golang", "dh-make-golang"},
{"DH-make-golang", "dh-make-golang"},
{"dh_make_golang", "dh-make-golang"},
{"dh_make*go&3*@@", "dh-makego3"},
{"7h_make*go&3*@@", "7h-makego3"},
{"7h_make*go&3*.@", "7h-makego3."},
{"7h_make*go+3*.@", "7h-makego+3."},
}
func TestNormalizeDebianPackageName(t *testing.T) {
for _, tt := range miscName {
s := normalizeDebianPackageName(tt.in)
if s != tt.out {
t.Errorf("normalizeDebianPackageName(%q) => %q, want %q", tt.in, s, tt.out)
}
}
}
var nameFromGoPkg = []struct {
in string
t packageType
out string
}{
{"github.com/Debian/dh-make-golang", typeProgram, "dh-make-golang"},
{"github.com/Debian/DH-make-golang", typeGuess, "golang-github-debian-dh-make-golang"},
{"github.com/Debian/dh_make_golang", typeGuess, "golang-github-debian-dh-make-golang"},
{"github.com/sean-/seed", typeGuess, "golang-github-sean--seed"},
{"git.sr.ht/~sircmpwn/getopt", typeGuess, "golang-sourcehut-sircmpwn-getopt"},
{"golang.org/x/term", typeLibrary, "golang-golang-x-term"},
}
func TestDebianNameFromGopkg(t *testing.T) {
for _, tt := range nameFromGoPkg {
s := debianNameFromGopkg(tt.in, tt.t, false)
if s != tt.out {
t.Errorf("debianNameFromGopkg(%q) => %q, want %q", tt.in, s, tt.out)
}
}
}