forked from TrueCloudLab/frostfs-api-go
41307a5e00
Document that `XHeader.ToV2` method return `nil` when called on `nil`. Document that `NewXHeaderFromV2` function return `nil` when called on `nil`. Write corresponding unit tests. Signed-off-by: Pavel Karpy <carpawell@nspcc.ru>
42 lines
692 B
Go
42 lines
692 B
Go
package pkg
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/nspcc-dev/neofs-api-go/v2/session"
|
|
"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())
|
|
}
|
|
|
|
func TestNewXHeaderFromV2(t *testing.T) {
|
|
t.Run("from nil", func(t *testing.T) {
|
|
var x *session.XHeader
|
|
|
|
require.Nil(t, NewXHeaderFromV2(x))
|
|
})
|
|
}
|
|
|
|
func TestXHeader_ToV2(t *testing.T) {
|
|
t.Run("nil", func(t *testing.T) {
|
|
var x *XHeader
|
|
|
|
require.Nil(t, x.ToV2())
|
|
})
|
|
}
|