go_study/fabric-main/internal/pkg/txflags/validation_flags_test.go

27 lines
629 B
Go

/*
Copyright IBM Corp. All Rights Reserved.
SPDX-License-Identifier: Apache-2.0
*/
package txflags
import (
"testing"
"github.com/hyperledger/fabric-protos-go/peer"
"github.com/stretchr/testify/require"
)
func TestTransactionValidationFlags(t *testing.T) {
txFlags := NewWithValues(10, peer.TxValidationCode_VALID)
require.Equal(t, 10, len(txFlags))
txFlags.SetFlag(0, peer.TxValidationCode_VALID)
require.Equal(t, peer.TxValidationCode_VALID, txFlags.Flag(0))
require.Equal(t, true, txFlags.IsValid(0))
txFlags.SetFlag(1, peer.TxValidationCode_MVCC_READ_CONFLICT)
require.Equal(t, true, txFlags.IsInvalid(1))
}