Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
caddy
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
caddy
Commits
e2a3ec4c
Commit
e2a3ec4c
authored
Dec 31, 2015
by
Matthew Holt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Replacer supports case-insensitive header placeholders (fixes #476)
parent
4636ca10
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
88 additions
and
71 deletions
+88
-71
middleware/replacer.go
middleware/replacer.go
+29
-14
middleware/replacer_test.go
middleware/replacer_test.go
+59
-57
No files found.
middleware/replacer.go
View file @
e2a3ec4c
...
@@ -86,9 +86,9 @@ func NewReplacer(r *http.Request, rr *responseRecorder, emptyValue string) Repla
...
@@ -86,9 +86,9 @@ func NewReplacer(r *http.Request, rr *responseRecorder, emptyValue string) Repla
rep
.
replacements
[
"{latency}"
]
=
time
.
Since
(
rr
.
start
)
.
String
()
rep
.
replacements
[
"{latency}"
]
=
time
.
Since
(
rr
.
start
)
.
String
()
}
}
// Header placeholders
// Header placeholders
(case-insensitive)
for
header
,
val
:=
range
r
.
Header
{
for
header
,
val
ues
:=
range
r
.
Header
{
rep
.
replacements
[
headerReplacer
+
header
+
"}"
]
=
strings
.
Join
(
val
,
","
)
rep
.
replacements
[
headerReplacer
+
strings
.
ToLower
(
header
)
+
"}"
]
=
strings
.
Join
(
values
,
","
)
}
}
return
rep
return
rep
...
@@ -97,24 +97,39 @@ func NewReplacer(r *http.Request, rr *responseRecorder, emptyValue string) Repla
...
@@ -97,24 +97,39 @@ func NewReplacer(r *http.Request, rr *responseRecorder, emptyValue string) Repla
// Replace performs a replacement of values on s and returns
// Replace performs a replacement of values on s and returns
// the string with the replaced values.
// the string with the replaced values.
func
(
r
replacer
)
Replace
(
s
string
)
string
{
func
(
r
replacer
)
Replace
(
s
string
)
string
{
for
placeholder
,
replacement
:=
range
r
.
replacements
{
// Header replacements - these are case-insensitive, so we can't just use strings.Replace()
startPos
:=
strings
.
Index
(
s
,
headerReplacer
)
for
startPos
>
-
1
{
// carefully find end of placeholder
endOffset
:=
strings
.
Index
(
s
[
startPos
+
1
:
],
"}"
)
if
endOffset
==
-
1
{
startPos
=
strings
.
Index
(
s
[
startPos
+
len
(
headerReplacer
)
:
],
headerReplacer
)
continue
}
endPos
:=
startPos
+
len
(
headerReplacer
)
+
endOffset
// look for replacement, case-insensitive
placeholder
:=
strings
.
ToLower
(
s
[
startPos
:
endPos
])
replacement
:=
r
.
replacements
[
placeholder
]
if
replacement
==
""
{
if
replacement
==
""
{
replacement
=
r
.
emptyValue
replacement
=
r
.
emptyValue
}
}
s
=
strings
.
Replace
(
s
,
placeholder
,
replacement
,
-
1
)
// do the replacement manually
s
=
s
[
:
startPos
]
+
replacement
+
s
[
endPos
:
]
// move to next one
startPos
=
strings
.
Index
(
s
[
endOffset
:
],
headerReplacer
)
}
}
// Replace any header placeholders that weren't found
// Regular replacements - these are easier because they're case-sensitive
for
strings
.
Contains
(
s
,
headerReplacer
)
{
for
placeholder
,
replacement
:=
range
r
.
replacements
{
idxStart
:=
strings
.
Index
(
s
,
headerReplacer
)
if
replacement
==
""
{
endOffset
:=
idxStart
+
len
(
headerReplacer
)
replacement
=
r
.
emptyValue
idxEnd
:=
strings
.
Index
(
s
[
endOffset
:
],
"}"
)
if
idxEnd
>
-
1
{
s
=
s
[
:
idxStart
]
+
r
.
emptyValue
+
s
[
endOffset
+
idxEnd
+
1
:
]
}
else
{
break
}
}
s
=
strings
.
Replace
(
s
,
placeholder
,
replacement
,
-
1
)
}
}
return
s
return
s
}
}
...
...
middleware/replacer_test.go
View file @
e2a3ec4c
...
@@ -10,102 +10,104 @@ import (
...
@@ -10,102 +10,104 @@ import (
func
TestNewReplacer
(
t
*
testing
.
T
)
{
func
TestNewReplacer
(
t
*
testing
.
T
)
{
w
:=
httptest
.
NewRecorder
()
w
:=
httptest
.
NewRecorder
()
recordRequest
:=
NewResponseRecorder
(
w
)
recordRequest
:=
NewResponseRecorder
(
w
)
userJSON
:=
`{"username": "dennis"}`
reader
:=
strings
.
NewReader
(
`{"username": "dennis"}`
)
reader
:=
strings
.
NewReader
(
userJSON
)
//Convert string to reader
request
,
err
:=
http
.
NewRequest
(
"POST"
,
"http://localhost"
,
reader
)
request
,
err
:=
http
.
NewRequest
(
"POST"
,
"http://caddyserver.com"
,
reader
)
//Create request with JSON body
if
err
!=
nil
{
if
err
!=
nil
{
t
.
Fatal
f
(
"Request Formation Failed
\n
"
)
t
.
Fatal
(
"Request Formation Failed
\n
"
)
}
}
replaceValues
:=
NewReplacer
(
request
,
recordRequest
,
""
)
replaceValues
:=
NewReplacer
(
request
,
recordRequest
,
""
)
switch
v
:=
replaceValues
.
(
type
)
{
switch
v
:=
replaceValues
.
(
type
)
{
case
replacer
:
case
replacer
:
if
v
.
replacements
[
"{host}"
]
!=
"
caddyserver.com
"
{
if
v
.
replacements
[
"{host}"
]
!=
"
localhost
"
{
t
.
Error
f
(
"Expected host to be caddyserver.com
"
)
t
.
Error
(
"Expected host to be localhost
"
)
}
}
if
v
.
replacements
[
"{method}"
]
!=
"POST"
{
if
v
.
replacements
[
"{method}"
]
!=
"POST"
{
t
.
Error
f
(
"Expected request method to be POST"
)
t
.
Error
(
"Expected request method to be POST"
)
}
}
if
v
.
replacements
[
"{status}"
]
!=
"200"
{
if
v
.
replacements
[
"{status}"
]
!=
"200"
{
t
.
Error
f
(
"Expected status to be 200"
)
t
.
Error
(
"Expected status to be 200"
)
}
}
default
:
default
:
t
.
Fatal
f
(
"Return Value from New Replacer expected pass type assertion into a replacer type
\n
"
)
t
.
Fatal
(
"Return Value from New Replacer expected pass type assertion into a replacer type
\n
"
)
}
}
}
}
func
TestReplace
(
t
*
testing
.
T
)
{
func
TestReplace
(
t
*
testing
.
T
)
{
w
:=
httptest
.
NewRecorder
()
w
:=
httptest
.
NewRecorder
()
recordRequest
:=
NewResponseRecorder
(
w
)
recordRequest
:=
NewResponseRecorder
(
w
)
userJSON
:=
`{"username": "dennis"}`
reader
:=
strings
.
NewReader
(
`{"username": "dennis"}`
)
reader
:=
strings
.
NewReader
(
userJSON
)
//Convert string to reader
request
,
err
:=
http
.
NewRequest
(
"POST"
,
"http://
caddyserver.com"
,
reader
)
//Create request with JSON body
request
,
err
:=
http
.
NewRequest
(
"POST"
,
"http://
localhost"
,
reader
)
if
err
!=
nil
{
if
err
!=
nil
{
t
.
Fatal
f
(
"Request Formation Failed
\n
"
)
t
.
Fatal
(
"Request Formation Failed
\n
"
)
}
}
replaceValues
:=
NewReplacer
(
request
,
recordRequest
,
""
)
request
.
Header
.
Set
(
"Custom"
,
"fooBar"
)
repl
:=
NewReplacer
(
request
,
recordRequest
,
"-"
)
switch
v
:=
replaceValues
.
(
type
)
{
case
replacer
:
if
v
.
Replace
(
"This host is {host}"
)
!=
"This host is caddyserver.com"
{
if
expected
,
actual
:=
"This host is localhost."
,
repl
.
Replace
(
"This host is {host}."
);
expected
!=
actual
{
t
.
Errorf
(
"Expected host replacement failed"
)
t
.
Errorf
(
"{host} replacement: expected '%s', got '%s'"
,
expected
,
actual
)
}
if
expected
,
actual
:=
"This request method is POST."
,
repl
.
Replace
(
"This request method is {method}."
);
expected
!=
actual
{
t
.
Errorf
(
"{method} replacement: expected '%s', got '%s'"
,
expected
,
actual
)
}
}
if
v
.
Replace
(
"This request method is {method}"
)
!=
"This request method is POST"
{
if
expected
,
actual
:=
"The response status is 200."
,
repl
.
Replace
(
"The response status is {status}."
);
expected
!=
actual
{
t
.
Errorf
(
"Expected method replacement failed"
)
t
.
Errorf
(
"{status} replacement: expected '%s', got '%s'"
,
expected
,
actual
)
}
}
if
v
.
Replace
(
"The response status is {status}"
)
!=
"The response status is 200"
{
if
expected
,
actual
:=
"The Custom header is fooBar."
,
repl
.
Replace
(
"The Custom header is {>Custom}."
);
expected
!=
actual
{
t
.
Errorf
(
"Expected status replacement failed"
)
t
.
Errorf
(
"{>Custom} replacement: expected '%s', got '%s'"
,
expected
,
actual
)
}
}
default
:
// Test header case-insensitivity
t
.
Fatalf
(
"Return Value from New Replacer expected pass type assertion into a replacer type
\n
"
)
if
expected
,
actual
:=
"The cUsToM header is fooBar..."
,
repl
.
Replace
(
"The cUsToM header is {>cUsToM}..."
);
expected
!=
actual
{
t
.
Errorf
(
"{>cUsToM} replacement: expected '%s', got '%s'"
,
expected
,
actual
)
}
// Test non-existent header/value
if
expected
,
actual
:=
"The Non-Existent header is -."
,
repl
.
Replace
(
"The Non-Existent header is {>Non-Existent}."
);
expected
!=
actual
{
t
.
Errorf
(
"{>Non-Existent} replacement: expected '%s', got '%s'"
,
expected
,
actual
)
}
}
// Test bad placeholder
if
expected
,
actual
:=
"Bad {host placeholder..."
,
repl
.
Replace
(
"Bad {host placeholder..."
);
expected
!=
actual
{
t
.
Errorf
(
"bad placeholder: expected '%s', got '%s'"
,
expected
,
actual
)
}
// Test bad header placeholder
if
expected
,
actual
:=
"Bad {>Custom placeholder"
,
repl
.
Replace
(
"Bad {>Custom placeholder"
);
expected
!=
actual
{
t
.
Errorf
(
"bad header placeholder: expected '%s', got '%s'"
,
expected
,
actual
)
}
}
}
func
TestSet
(
t
*
testing
.
T
)
{
func
TestSet
(
t
*
testing
.
T
)
{
w
:=
httptest
.
NewRecorder
()
w
:=
httptest
.
NewRecorder
()
recordRequest
:=
NewResponseRecorder
(
w
)
recordRequest
:=
NewResponseRecorder
(
w
)
userJSON
:=
`{"username": "dennis"}`
reader
:=
strings
.
NewReader
(
`{"username": "dennis"}`
)
reader
:=
strings
.
NewReader
(
userJSON
)
//Convert string to reader
request
,
err
:=
http
.
NewRequest
(
"POST"
,
"http://localhost"
,
reader
)
request
,
err
:=
http
.
NewRequest
(
"POST"
,
"http://caddyserver.com"
,
reader
)
//Create request with JSON body
if
err
!=
nil
{
if
err
!=
nil
{
t
.
Fatalf
(
"Request Formation Failed
\n
"
)
t
.
Fatalf
(
"Request Formation Failed
\n
"
)
}
}
replaceValues
:=
NewReplacer
(
request
,
recordRequest
,
""
)
repl
:=
NewReplacer
(
request
,
recordRequest
,
""
)
replaceValues
.
Set
(
"host"
,
"getcaddy.com"
)
replaceValues
.
Set
(
"method"
,
"GET"
)
replaceValues
.
Set
(
"status"
,
"201"
)
replaceValues
.
Set
(
"variable"
,
"value"
)
switch
v
:=
replaceValues
.
(
type
)
{
repl
.
Set
(
"host"
,
"getcaddy.com"
)
case
replacer
:
repl
.
Set
(
"method"
,
"GET"
)
repl
.
Set
(
"status"
,
"201"
)
repl
.
Set
(
"variable"
,
"value"
)
if
v
.
Replace
(
"This host is {host}"
)
!=
"This host is getcaddy.com"
{
if
repl
.
Replace
(
"This host is {host}"
)
!=
"This host is getcaddy.com"
{
t
.
Errorf
(
"Expected host replacement failed"
)
t
.
Error
(
"Expected host replacement failed"
)
}
if
v
.
Replace
(
"This request method is {method}"
)
!=
"This request method is GET"
{
t
.
Errorf
(
"Expected method replacement failed"
)
}
}
if
v
.
Replace
(
"The response status is {status}"
)
!=
"The response status is 201
"
{
if
repl
.
Replace
(
"This request method is {method}"
)
!=
"This request method is GET
"
{
t
.
Errorf
(
"Expected status
replacement failed"
)
t
.
Error
(
"Expected method
replacement failed"
)
}
}
if
v
.
Replace
(
"The value of variable is {variable}"
)
!=
"The value of variable is value
"
{
if
repl
.
Replace
(
"The response status is {status}"
)
!=
"The response status is 201
"
{
t
.
Errorf
(
"Expected status replacement failed"
)
t
.
Error
(
"Expected status replacement failed"
)
}
}
if
repl
.
Replace
(
"The value of variable is {variable}"
)
!=
"The value of variable is value"
{
default
:
t
.
Error
(
"Expected variable replacement failed"
)
t
.
Fatalf
(
"Return Value from New Replacer expected pass type assertion into a replacer type
\n
"
)
}
}
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment