forked from TrueCloudLab/frostfs-api-go
63 lines
1.3 KiB
Go
63 lines
1.3 KiB
Go
|
package state
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/nspcc-dev/neofs-api-go/service"
|
||
|
"github.com/nspcc-dev/neofs-crypto/test"
|
||
|
"github.com/stretchr/testify/require"
|
||
|
)
|
||
|
|
||
|
func TestRequestSign(t *testing.T) {
|
||
|
sk := test.DecodeKey(0)
|
||
|
|
||
|
type sigType interface {
|
||
|
service.SignedDataWithToken
|
||
|
service.SignKeyPairAccumulator
|
||
|
service.SignKeyPairSource
|
||
|
SetToken(*service.Token)
|
||
|
}
|
||
|
|
||
|
items := []struct {
|
||
|
constructor func() sigType
|
||
|
payloadCorrupt []func(sigType)
|
||
|
}{
|
||
|
{ // NetmapRequest
|
||
|
constructor: func() sigType {
|
||
|
return new(NetmapRequest)
|
||
|
},
|
||
|
},
|
||
|
}
|
||
|
|
||
|
for _, item := range items {
|
||
|
{ // token corruptions
|
||
|
v := item.constructor()
|
||
|
|
||
|
token := new(service.Token)
|
||
|
v.SetToken(token)
|
||
|
|
||
|
require.NoError(t, service.SignDataWithSessionToken(sk, v))
|
||
|
|
||
|
require.NoError(t, service.VerifyAccumulatedSignaturesWithToken(v))
|
||
|
|
||
|
token.SetSessionKey(append(token.GetSessionKey(), 1))
|
||
|
|
||
|
require.Error(t, service.VerifyAccumulatedSignaturesWithToken(v))
|
||
|
}
|
||
|
|
||
|
{ // payload corruptions
|
||
|
for _, corruption := range item.payloadCorrupt {
|
||
|
v := item.constructor()
|
||
|
|
||
|
require.NoError(t, service.SignDataWithSessionToken(sk, v))
|
||
|
|
||
|
require.NoError(t, service.VerifyAccumulatedSignaturesWithToken(v))
|
||
|
|
||
|
corruption(v)
|
||
|
|
||
|
require.Error(t, service.VerifyAccumulatedSignaturesWithToken(v))
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|