erigon-pulse/gointerfaces/remote/sort_test.go
2022-07-26 10:14:58 +07:00

57 lines
1.2 KiB
Go

package remote_test
import (
"testing"
"github.com/ledgerwatch/erigon-lib/gointerfaces/remote"
"github.com/ledgerwatch/erigon-lib/gointerfaces/types"
"github.com/stretchr/testify/assert"
"golang.org/x/exp/slices"
)
func TestSort(t *testing.T) {
tests := []struct {
name string
got *remote.NodesInfoReply
want *remote.NodesInfoReply
}{
{
name: "sort by name",
got: &remote.NodesInfoReply{
NodesInfo: []*types.NodeInfoReply{
{Name: "b", Enode: "c"},
{Name: "a", Enode: "d"},
},
},
want: &remote.NodesInfoReply{
NodesInfo: []*types.NodeInfoReply{
{Name: "a", Enode: "d"},
{Name: "b", Enode: "c"},
},
},
},
{
name: "sort by enode",
got: &remote.NodesInfoReply{
NodesInfo: []*types.NodeInfoReply{
{Name: "a", Enode: "d"},
{Name: "a", Enode: "c"},
},
},
want: &remote.NodesInfoReply{
NodesInfo: []*types.NodeInfoReply{
{Name: "a", Enode: "c"},
{Name: "a", Enode: "d"},
},
},
},
}
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
slices.SortFunc(tt.got.NodesInfo, remote.NodeInfoReplyLess)
assert.Equal(t, tt.want, tt.got)
})
}
}