diff options
author | 🚀 Steven Ewing 🌌 <steven.ewing@coinbase.com> | 2022-05-20 14:05:47 -0700 |
---|---|---|
committer | Máximo Cuadros <mcuadros@gmail.com> | 2022-09-22 10:21:19 +0200 |
commit | 36e1f5b74cb7fc57e6bbbcfeca66eb79a644c86b (patch) | |
tree | 896e134b87ba349c4a99b3f6f4f819baff1d368b /plumbing/protocol/packp/capability/capability_test.go | |
parent | c35b8082c863f2106de1c3c95ba9ed21d30f9371 (diff) | |
download | go-git-36e1f5b74cb7fc57e6bbbcfeca66eb79a644c86b.tar.gz |
plumbing: packp and server, Include the contents of `GO_GIT_USER_AGENT_EXTRA` as the git user agent. Fixes #529
Diffstat (limited to 'plumbing/protocol/packp/capability/capability_test.go')
-rw-r--r-- | plumbing/protocol/packp/capability/capability_test.go | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/plumbing/protocol/packp/capability/capability_test.go b/plumbing/protocol/packp/capability/capability_test.go new file mode 100644 index 0000000..f1fd028 --- /dev/null +++ b/plumbing/protocol/packp/capability/capability_test.go @@ -0,0 +1,22 @@ +package capability + +import ( + "fmt" + "os" + + check "gopkg.in/check.v1" +) + +var _ = check.Suite(&SuiteCapabilities{}) + +func (s *SuiteCapabilities) TestDefaultAgent(c *check.C) { + os.Unsetenv("GO_GIT_USER_AGENT_EXTRA") + ua := DefaultAgent() + c.Assert(ua, check.Equals, userAgent) +} + +func (s *SuiteCapabilities) TestEnvAgent(c *check.C) { + os.Setenv("GO_GIT_USER_AGENT_EXTRA", "abc xyz") + ua := DefaultAgent() + c.Assert(ua, check.Equals, fmt.Sprintf("%s %s", userAgent, "abc xyz")) +} |