Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix loop var #192

Closed
wants to merge 2 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions rules/matcher.go
Original file line number Diff line number Diff line change
Expand Up @@ -134,8 +134,7 @@ func formatPath(pattern string, m Attributes) (string, bool) {
if strings.HasPrefix(path, ":") {
attr := m.GetAttribute(path[1:])
if attr == nil {
s := path
attr = &s
attr = &path
allFound = false
}
result.WriteString(*attr)
Expand Down
40 changes: 40 additions & 0 deletions rules/matcher_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -72,3 +72,43 @@ func TestNoRegex(t *testing.T) {
t.Fail()
}
}

func TestFormatPath(t *testing.T) {
testCases := []struct {
name string
pattern string
atttributes Attributes
result string
allFound bool
}{
{
"Happy path",
"/:region/test",
NewAttributes(map[string]string{"region": "region"}),
"/region/test",
true,
},
{
"Empty path",
"",
NewAttributes(map[string]string{"region": "region"}),
"",
true,
},
{
"Missing attribute",
"/:region/test",
NewAttributes(map[string]string{}),
"/:region/test",
false,
},
}

for _, tc := range testCases {
t.Run(tc.name, func(t *testing.T) {
result, allFound := formatPath(tc.pattern, tc.atttributes)
assert.Equal(t, tc.result, result)
assert.Equal(t, tc.allFound, allFound)
})
}
}
Loading