build: refractor internal tools.

This commit is contained in:
Alexandre Pujol 2024-03-10 19:07:55 +00:00
parent df21886965
commit b0d52d68f4
No known key found for this signature in database
GPG key ID: C5469996F0DF68EC
3 changed files with 29 additions and 5 deletions

View file

@ -61,7 +61,7 @@ func TestToRegexRepl(t *testing.T) {
tests := []struct {
name string
in []string
want []RegexRepl
want RegexReplList
}{
{
name: "",
@ -83,3 +83,28 @@ func TestToRegexRepl(t *testing.T) {
})
}
}
func TestRegexReplList_Replace(t *testing.T) {
tests := []struct {
name string
rr RegexReplList
str string
want string
}{
{
name: "default",
rr: []RegexRepl{
{Regex: regexp.MustCompile(`^/foo`), Repl: "/bar"},
},
str: "/foo",
want: "/bar",
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
if got := tt.rr.Replace(tt.str); got != tt.want {
t.Errorf("RegexReplList.Replace() = %v, want %v", got, tt.want)
}
})
}
}