[#198] sdk: Implement XHeader type

Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
This commit is contained in:
Leonard Lyubich 2020-11-16 12:30:46 +03:00 committed by Alex Vanin
parent 5f5e5ac5dd
commit 5452554b58
2 changed files with 72 additions and 0 deletions

25
pkg/xheader_test.go Normal file
View file

@ -0,0 +1,25 @@
package pkg
import (
"testing"
"github.com/stretchr/testify/require"
)
func TestXHeader(t *testing.T) {
x := NewXHeader()
key := "some key"
val := "some value"
x.SetKey(key)
x.SetValue(val)
require.Equal(t, key, x.Key())
require.Equal(t, val, x.Value())
xV2 := x.ToV2()
require.Equal(t, key, xV2.GetKey())
require.Equal(t, val, xV2.GetValue())
}