mirror of
https://github.com/jesseduffield/lazygit.git
synced 2024-12-04 10:34:55 +02:00
45 lines
965 B
Go
45 lines
965 B
Go
package utils
|
|
|
|
import (
|
|
"reflect"
|
|
"regexp"
|
|
"testing"
|
|
)
|
|
|
|
func TestFindNamedMatches(t *testing.T) {
|
|
scenarios := []struct {
|
|
regex *regexp.Regexp
|
|
input string
|
|
expected map[string]string
|
|
}{
|
|
{
|
|
regexp.MustCompile(`^(?P<name>\w+)`),
|
|
"hello world",
|
|
map[string]string{
|
|
"name": "hello",
|
|
},
|
|
},
|
|
{
|
|
regexp.MustCompile(`^https?://.*/(?P<owner>.*)/(?P<repo>.*?)(\.git)?$`),
|
|
"https://my_username@bitbucket.org/johndoe/social_network.git",
|
|
map[string]string{
|
|
"owner": "johndoe",
|
|
"repo": "social_network",
|
|
"": ".git", // unnamed capture group
|
|
},
|
|
},
|
|
{
|
|
regexp.MustCompile(`(?P<owner>hello) world`),
|
|
"yo world",
|
|
nil,
|
|
},
|
|
}
|
|
|
|
for _, scenario := range scenarios {
|
|
actual := FindNamedMatches(scenario.regex, scenario.input)
|
|
if !reflect.DeepEqual(actual, scenario.expected) {
|
|
t.Errorf("FindNamedMatches(%s, %s) == %s, expected %s", scenario.regex, scenario.input, actual, scenario.expected)
|
|
}
|
|
}
|
|
}
|