[#302] pkg/owner: Document default values set in `NewID`

Document field values of instance constructed via `NewID`.
Assert the values in corresponding unit test.

Signed-off-by: Pavel Karpy <carpawell@nspcc.ru>
remotes/KirillovDenis/feature/refactor-sig-rpc
Pavel Karpy 2021-06-08 19:51:34 +03:00 committed by Alex Vanin
parent 12574469e5
commit c00cdd407d
2 changed files with 22 additions and 0 deletions

View File

@ -25,6 +25,9 @@ func NewIDFromV2(idV2 *refs.OwnerID) *ID {
// NewID creates and initializes blank ID.
//
// Works similar as NewIDFromV2(new(OwnerID)).
//
// Defaults:
// - value: nil.
func NewID() *ID {
return NewIDFromV2(new(refs.OwnerID))
}

View File

@ -116,3 +116,22 @@ func TestID_ToV2(t *testing.T) {
require.Nil(t, x.ToV2())
})
}
func TestID_String(t *testing.T) {
t.Run("nil", func(t *testing.T) {
id := NewID()
require.Empty(t, id.String())
})
}
func TestNewID(t *testing.T) {
t.Run("default values", func(t *testing.T) {
id := NewID()
// convert to v2 message
idV2 := id.ToV2()
require.Nil(t, idV2.GetValue())
})
}