forked from TrueCloudLab/frostfs-sdk-go
[#327] nns: Support Null
returned value
Signed-off-by: Pavel Karpy <carpawell@nspcc.ru>
This commit is contained in:
parent
d808f72c38
commit
71891029da
2 changed files with 21 additions and 11 deletions
12
ns/nns.go
12
ns/nns.go
|
@ -2,6 +2,7 @@ package ns
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
"net/url"
|
"net/url"
|
||||||
|
|
||||||
|
@ -11,6 +12,7 @@ import (
|
||||||
"github.com/nspcc-dev/neo-go/pkg/rpcclient/invoker"
|
"github.com/nspcc-dev/neo-go/pkg/rpcclient/invoker"
|
||||||
"github.com/nspcc-dev/neo-go/pkg/rpcclient/unwrap"
|
"github.com/nspcc-dev/neo-go/pkg/rpcclient/unwrap"
|
||||||
"github.com/nspcc-dev/neo-go/pkg/util"
|
"github.com/nspcc-dev/neo-go/pkg/util"
|
||||||
|
"github.com/nspcc-dev/neo-go/pkg/vm/stackitem"
|
||||||
"github.com/nspcc-dev/neofs-contract/nns"
|
"github.com/nspcc-dev/neofs-contract/nns"
|
||||||
cid "github.com/nspcc-dev/neofs-sdk-go/container/id"
|
cid "github.com/nspcc-dev/neofs-sdk-go/container/id"
|
||||||
)
|
)
|
||||||
|
@ -82,13 +84,20 @@ func (n *NNS) Dial(address string) error {
|
||||||
//
|
//
|
||||||
// See also https://docs.neo.org/docs/en-us/reference/nns.html.
|
// See also https://docs.neo.org/docs/en-us/reference/nns.html.
|
||||||
func (n *NNS) ResolveContainerName(name string) (cid.ID, error) {
|
func (n *NNS) ResolveContainerName(name string) (cid.ID, error) {
|
||||||
arr, err := unwrap.Array(n.invoker.Call(n.nnsContract, "resolve",
|
item, err := unwrap.Item(n.invoker.Call(n.nnsContract, "resolve",
|
||||||
name+".container", int64(nns.TXT),
|
name+".container", int64(nns.TXT),
|
||||||
))
|
))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return cid.ID{}, fmt.Errorf("contract invocation: %w", err)
|
return cid.ID{}, fmt.Errorf("contract invocation: %w", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if _, ok := item.(stackitem.Null); !ok {
|
||||||
|
arr, ok := item.Value().([]stackitem.Item)
|
||||||
|
if !ok {
|
||||||
|
// unexpected for types from stackitem package
|
||||||
|
return cid.ID{}, errors.New("invalid cast to stack item slice")
|
||||||
|
}
|
||||||
|
|
||||||
var id cid.ID
|
var id cid.ID
|
||||||
|
|
||||||
for i := range arr {
|
for i := range arr {
|
||||||
|
@ -102,6 +111,7 @@ func (n *NNS) ResolveContainerName(name string) (cid.ID, error) {
|
||||||
return id, nil
|
return id, nil
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return cid.ID{}, errNotFound
|
return cid.ID{}, errNotFound
|
||||||
}
|
}
|
||||||
|
|
|
@ -112,7 +112,7 @@ func TestNNS_ResolveContainerName(t *testing.T) {
|
||||||
testC.res.Stack[0] = stackitem.Null{}
|
testC.res.Stack[0] = stackitem.Null{}
|
||||||
|
|
||||||
_, err := n.ResolveContainerName(testContainerName)
|
_, err := n.ResolveContainerName(testContainerName)
|
||||||
require.Error(t, err)
|
require.ErrorIs(t, err, errNotFound)
|
||||||
})
|
})
|
||||||
|
|
||||||
t.Run("array stack item with non-slice value", func(t *testing.T) {
|
t.Run("array stack item with non-slice value", func(t *testing.T) {
|
||||||
|
|
Loading…
Reference in a new issue