2021-07-23 09:07:30 +00:00
|
|
|
package pool
|
|
|
|
|
|
|
|
import (
|
2022-07-12 18:57:33 +00:00
|
|
|
"context"
|
|
|
|
"crypto/ecdsa"
|
|
|
|
"errors"
|
|
|
|
|
|
|
|
"github.com/google/uuid"
|
|
|
|
sessionv2 "github.com/nspcc-dev/neofs-api-go/v2/session"
|
|
|
|
"github.com/nspcc-dev/neofs-sdk-go/accounting"
|
2022-07-13 06:57:04 +00:00
|
|
|
apistatus "github.com/nspcc-dev/neofs-sdk-go/client/status"
|
2022-07-12 18:57:33 +00:00
|
|
|
"github.com/nspcc-dev/neofs-sdk-go/container"
|
|
|
|
cid "github.com/nspcc-dev/neofs-sdk-go/container/id"
|
|
|
|
neofsecdsa "github.com/nspcc-dev/neofs-sdk-go/crypto/ecdsa"
|
|
|
|
"github.com/nspcc-dev/neofs-sdk-go/eacl"
|
|
|
|
"github.com/nspcc-dev/neofs-sdk-go/netmap"
|
|
|
|
"github.com/nspcc-dev/neofs-sdk-go/object"
|
|
|
|
oid "github.com/nspcc-dev/neofs-sdk-go/object/id"
|
|
|
|
"github.com/nspcc-dev/neofs-sdk-go/session"
|
2021-07-23 09:07:30 +00:00
|
|
|
)
|
|
|
|
|
2022-07-12 18:57:33 +00:00
|
|
|
type mockClient struct {
|
2022-07-13 06:57:04 +00:00
|
|
|
key ecdsa.PrivateKey
|
2022-07-18 08:42:29 +00:00
|
|
|
clientStatusMonitor
|
2021-07-23 09:07:30 +00:00
|
|
|
|
2022-07-12 18:57:33 +00:00
|
|
|
errorOnCreateSession bool
|
|
|
|
errorOnEndpointInfo bool
|
|
|
|
errorOnNetworkInfo bool
|
2022-07-13 06:57:04 +00:00
|
|
|
stOnGetObject apistatus.Status
|
2021-07-23 09:07:30 +00:00
|
|
|
}
|
|
|
|
|
2022-07-12 18:57:33 +00:00
|
|
|
func newMockClient(addr string, key ecdsa.PrivateKey) *mockClient {
|
|
|
|
return &mockClient{
|
2022-07-13 06:57:04 +00:00
|
|
|
key: key,
|
|
|
|
clientStatusMonitor: newTestStatusMonitor(addr),
|
2022-07-12 18:57:33 +00:00
|
|
|
}
|
2021-07-23 09:07:30 +00:00
|
|
|
}
|
|
|
|
|
2022-07-13 06:57:04 +00:00
|
|
|
func (m *mockClient) setThreshold(threshold uint32) {
|
|
|
|
m.errorThreshold = threshold
|
|
|
|
}
|
|
|
|
|
2022-07-12 18:57:33 +00:00
|
|
|
func (m *mockClient) errOnCreateSession() {
|
|
|
|
m.errorOnCreateSession = true
|
2021-07-23 09:07:30 +00:00
|
|
|
}
|
|
|
|
|
2022-07-12 18:57:33 +00:00
|
|
|
func (m *mockClient) errOnEndpointInfo() {
|
|
|
|
m.errorOnEndpointInfo = true
|
2021-11-25 08:28:23 +00:00
|
|
|
}
|
|
|
|
|
2022-07-12 18:57:33 +00:00
|
|
|
func (m *mockClient) errOnNetworkInfo() {
|
|
|
|
m.errorOnEndpointInfo = true
|
2021-07-23 09:07:30 +00:00
|
|
|
}
|
|
|
|
|
2022-07-13 06:57:04 +00:00
|
|
|
func (m *mockClient) statusOnGetObject(st apistatus.Status) {
|
|
|
|
m.stOnGetObject = st
|
2021-11-25 08:28:23 +00:00
|
|
|
}
|
|
|
|
|
2022-07-12 18:57:33 +00:00
|
|
|
func newToken(key ecdsa.PrivateKey) *session.Object {
|
|
|
|
var tok session.Object
|
|
|
|
tok.SetID(uuid.New())
|
|
|
|
pk := neofsecdsa.PublicKey(key.PublicKey)
|
|
|
|
tok.SetAuthKey(&pk)
|
2021-11-25 08:28:23 +00:00
|
|
|
|
2022-07-12 18:57:33 +00:00
|
|
|
return &tok
|
2021-07-23 09:07:30 +00:00
|
|
|
}
|
|
|
|
|
2022-07-12 18:57:33 +00:00
|
|
|
func (m *mockClient) balanceGet(context.Context, PrmBalanceGet) (*accounting.Decimal, error) {
|
|
|
|
return nil, nil
|
2021-11-25 08:28:23 +00:00
|
|
|
}
|
|
|
|
|
2022-07-12 18:57:33 +00:00
|
|
|
func (m *mockClient) containerPut(context.Context, PrmContainerPut) (*cid.ID, error) {
|
|
|
|
return nil, nil
|
2021-11-25 08:28:23 +00:00
|
|
|
}
|
|
|
|
|
2022-07-12 18:57:33 +00:00
|
|
|
func (m *mockClient) containerGet(context.Context, PrmContainerGet) (*container.Container, error) {
|
|
|
|
return nil, nil
|
2021-11-25 08:28:23 +00:00
|
|
|
}
|
|
|
|
|
2022-07-12 18:57:33 +00:00
|
|
|
func (m *mockClient) containerList(context.Context, PrmContainerList) ([]cid.ID, error) {
|
|
|
|
return nil, nil
|
2021-07-23 09:07:30 +00:00
|
|
|
}
|
|
|
|
|
2022-07-12 18:57:33 +00:00
|
|
|
func (m *mockClient) containerDelete(context.Context, PrmContainerDelete) error {
|
|
|
|
return nil
|
2021-11-25 08:28:23 +00:00
|
|
|
}
|
|
|
|
|
2022-07-12 18:57:33 +00:00
|
|
|
func (m *mockClient) containerEACL(context.Context, PrmContainerEACL) (*eacl.Table, error) {
|
|
|
|
return nil, nil
|
2021-07-23 09:07:30 +00:00
|
|
|
}
|
|
|
|
|
2022-07-12 18:57:33 +00:00
|
|
|
func (m *mockClient) containerSetEACL(context.Context, PrmContainerSetEACL) error {
|
|
|
|
return nil
|
2021-11-25 08:28:23 +00:00
|
|
|
}
|
|
|
|
|
2022-07-12 18:57:33 +00:00
|
|
|
func (m *mockClient) endpointInfo(context.Context, prmEndpointInfo) (*netmap.NodeInfo, error) {
|
|
|
|
if m.errorOnEndpointInfo {
|
2022-07-13 06:57:04 +00:00
|
|
|
return nil, m.handleError(nil, errors.New("error"))
|
2022-07-12 18:57:33 +00:00
|
|
|
}
|
2021-07-23 09:07:30 +00:00
|
|
|
|
2022-07-12 18:57:33 +00:00
|
|
|
var ni netmap.NodeInfo
|
|
|
|
ni.SetNetworkEndpoints(m.addr)
|
|
|
|
return &ni, nil
|
2021-07-23 09:07:30 +00:00
|
|
|
}
|
|
|
|
|
2022-07-12 18:57:33 +00:00
|
|
|
func (m *mockClient) networkInfo(context.Context, prmNetworkInfo) (*netmap.NetworkInfo, error) {
|
|
|
|
if m.errorOnNetworkInfo {
|
2022-07-13 06:57:04 +00:00
|
|
|
return nil, m.handleError(nil, errors.New("error"))
|
2022-07-12 18:57:33 +00:00
|
|
|
}
|
2021-07-23 09:07:30 +00:00
|
|
|
|
2022-07-12 18:57:33 +00:00
|
|
|
var ni netmap.NetworkInfo
|
|
|
|
return &ni, nil
|
2021-11-25 08:28:23 +00:00
|
|
|
}
|
|
|
|
|
2022-07-12 18:57:33 +00:00
|
|
|
func (m *mockClient) objectPut(context.Context, PrmObjectPut) (*oid.ID, error) {
|
|
|
|
return nil, nil
|
2021-07-23 09:07:30 +00:00
|
|
|
}
|
|
|
|
|
2022-07-12 18:57:33 +00:00
|
|
|
func (m *mockClient) objectDelete(context.Context, PrmObjectDelete) error {
|
|
|
|
return nil
|
2021-11-25 08:28:23 +00:00
|
|
|
}
|
|
|
|
|
2022-07-12 18:57:33 +00:00
|
|
|
func (m *mockClient) objectGet(context.Context, PrmObjectGet) (*ResGetObject, error) {
|
2022-07-13 06:57:04 +00:00
|
|
|
if m.stOnGetObject == nil {
|
|
|
|
return &ResGetObject{}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
status := apistatus.ErrFromStatus(m.stOnGetObject)
|
|
|
|
return &ResGetObject{}, m.handleError(status, nil)
|
2021-07-23 09:07:30 +00:00
|
|
|
}
|
|
|
|
|
2022-07-12 18:57:33 +00:00
|
|
|
func (m *mockClient) objectHead(context.Context, PrmObjectHead) (*object.Object, error) {
|
|
|
|
return nil, nil
|
2021-11-25 08:28:23 +00:00
|
|
|
}
|
|
|
|
|
2022-07-12 18:57:33 +00:00
|
|
|
func (m *mockClient) objectRange(context.Context, PrmObjectRange) (*ResObjectRange, error) {
|
|
|
|
return nil, nil
|
2021-07-23 09:07:30 +00:00
|
|
|
}
|
|
|
|
|
2022-07-12 18:57:33 +00:00
|
|
|
func (m *mockClient) objectSearch(context.Context, PrmObjectSearch) (*ResObjectSearch, error) {
|
|
|
|
return nil, nil
|
2021-11-25 08:28:23 +00:00
|
|
|
}
|
|
|
|
|
2022-07-12 18:57:33 +00:00
|
|
|
func (m *mockClient) sessionCreate(context.Context, prmCreateSession) (*resCreateSession, error) {
|
|
|
|
if m.errorOnCreateSession {
|
2022-07-13 06:57:04 +00:00
|
|
|
return nil, m.handleError(nil, errors.New("error"))
|
2022-07-12 18:57:33 +00:00
|
|
|
}
|
2021-07-23 09:07:30 +00:00
|
|
|
|
2022-07-12 18:57:33 +00:00
|
|
|
tok := newToken(m.key)
|
2021-07-23 09:07:30 +00:00
|
|
|
|
2022-07-12 18:57:33 +00:00
|
|
|
var v2tok sessionv2.Token
|
|
|
|
tok.WriteToV2(&v2tok)
|
2021-07-23 09:07:30 +00:00
|
|
|
|
2022-07-12 18:57:33 +00:00
|
|
|
return &resCreateSession{
|
|
|
|
id: v2tok.GetBody().GetID(),
|
|
|
|
sessionKey: v2tok.GetBody().GetSessionKey(),
|
|
|
|
}, nil
|
2021-11-25 08:28:23 +00:00
|
|
|
}
|