summaryrefslogtreecommitdiff
path: root/modules/caddyhttp/replacer_test.go
diff options
context:
space:
mode:
authorGaurav Dhameeja <gdhameeja@gmail.com>2020-09-17 02:36:51 +0530
committerGitHub <noreply@github.com>2020-09-16 15:06:51 -0600
commitb01bb275b395643542ceca4fbc82bedea8e43937 (patch)
tree213f0a4c6b7fba4ccc0e3f41ea4306c695609aa6 /modules/caddyhttp/replacer_test.go
parent309c1fec622c08bdc68a43de64fc0777f590d309 (diff)
caddyhttp: New placeholder for PEM of client certificate (#3662)
* Fix-3585: added placeholder for a PEM encoded value of the certificate * Update modules/caddyhttp/replacer.go Change type of block and empty headers removed Co-authored-by: Matt Holt <mholt@users.noreply.github.com> * fixed tests Co-authored-by: Matt Holt <mholt@users.noreply.github.com>
Diffstat (limited to 'modules/caddyhttp/replacer_test.go')
-rw-r--r--modules/caddyhttp/replacer_test.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/modules/caddyhttp/replacer_test.go b/modules/caddyhttp/replacer_test.go
index 49167ee..486a8e3 100644
--- a/modules/caddyhttp/replacer_test.go
+++ b/modules/caddyhttp/replacer_test.go
@@ -171,6 +171,10 @@ eqp31wM9il1n+guTNyxJd+FzVAH+hCZE5K+tCgVDdVFUlDEHHbS/wqb2PSIoouLV
input: "{http.request.tls.client.san.ips.0}",
expect: "127.0.0.1",
},
+ {
+ input: "{http.request.tls.client.certificate_pem}",
+ expect: string(clientCert) + "\n", // returned value comes with a newline appended to it
+ },
} {
actual := repl.ReplaceAll(tc.input, "<empty>")
if actual != tc.expect {