From 4969e33e28e09581a3b380dec7ebdc8594d67838 Mon Sep 17 00:00:00 2001 From: tjpcc Date: Wed, 11 Jan 2023 11:41:07 -0700 Subject: WIP improve test coverage There is a test of Response.Read that is failing and I haven't yet figured out why. --- gemini/request_test.go | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) (limited to 'gemini/request_test.go') diff --git a/gemini/request_test.go b/gemini/request_test.go index 1da24f7..c23d54b 100644 --- a/gemini/request_test.go +++ b/gemini/request_test.go @@ -3,6 +3,7 @@ package gemini_test import ( "bytes" "testing" + "net/url" "tildegit.org/tjp/gus/gemini" ) @@ -84,3 +85,19 @@ func TestParseRequest(t *testing.T) { }) } } + +func TestUnescapedQuery(t *testing.T) { + table := []string{ + "foo bar", + } + + for _, test := range table { + t.Run(test, func(t *testing.T) { + u, _ := url.Parse("gemini://domain.com/path?" + url.QueryEscape(test)) + result := gemini.Request{ URL: u }.UnescapedQuery() + if result != test { + t.Errorf("expected %q, got %q", test, result) + } + }) + } +} -- cgit v1.2.3