diff options
author | Wolfy-J <[email protected]> | 2018-07-08 10:23:30 -0700 |
---|---|---|
committer | Wolfy-J <[email protected]> | 2018-07-08 10:23:30 -0700 |
commit | 3c3a7801100f29c99a5e446646c818bf16ccd5f0 (patch) | |
tree | 4d558ae6e799b5e76e8e56b192cf057d47f3527f /service/http/attributes/attributes_test.go | |
parent | 466383c72d921aba728de40b60910741e561c1d1 (diff) |
minor attributes refactoring
Diffstat (limited to 'service/http/attributes/attributes_test.go')
-rw-r--r-- | service/http/attributes/attributes_test.go | 67 |
1 files changed, 67 insertions, 0 deletions
diff --git a/service/http/attributes/attributes_test.go b/service/http/attributes/attributes_test.go new file mode 100644 index 00000000..a71d6542 --- /dev/null +++ b/service/http/attributes/attributes_test.go @@ -0,0 +1,67 @@ +package attributes + +import ( + "github.com/stretchr/testify/assert" + "net/http" + "testing" +) + +func TestAllAttributes(t *testing.T) { + r := &http.Request{} + r = Init(r) + + Set(r, "key", "value") + + assert.Equal(t, All(r), map[string]interface{}{ + "key": "value", + }) +} + +func TestAllAttributesNone(t *testing.T) { + r := &http.Request{} + r = Init(r) + + assert.Equal(t, All(r), map[string]interface{}{}) +} + +func TestAllAttributesNone2(t *testing.T) { + r := &http.Request{} + + assert.Equal(t, All(r), map[string]interface{}{}) +} + +func TestGetAttribute(t *testing.T) { + r := &http.Request{} + r = Init(r) + + Set(r, "key", "value") + assert.Equal(t, Get(r, "key"), "value") +} + +func TestGetAttributeNone(t *testing.T) { + r := &http.Request{} + r = Init(r) + + assert.Equal(t, Get(r, "key"), nil) +} + +func TestGetAttributeNone2(t *testing.T) { + r := &http.Request{} + + assert.Equal(t, Get(r, "key"), nil) +} + +func TestSetAttribute(t *testing.T) { + r := &http.Request{} + r = Init(r) + + Set(r, "key", "value") + assert.Equal(t, Get(r, "key"), "value") +} + +func TestSetAttributeNone(t *testing.T) { + r := &http.Request{} + + Set(r, "key", "value") + assert.Equal(t, Get(r, "key"), nil) +} |