5f672c2ed0
Signed-off-by: Jakub Sztandera <kubuxu@protocol.ai>
41 lines
1.1 KiB
Go
41 lines
1.1 KiB
Go
package full
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
"github.com/filecoin-project/go-state-types/big"
|
|
|
|
"github.com/filecoin-project/lotus/build"
|
|
"github.com/filecoin-project/lotus/chain/types"
|
|
)
|
|
|
|
func TestMedian(t *testing.T) {
|
|
require.Equal(t, types.NewInt(5), medianGasPremium([]GasMeta{
|
|
{big.NewInt(5), build.BlockGasTarget},
|
|
}, 1))
|
|
|
|
require.Equal(t, types.NewInt(10), medianGasPremium([]GasMeta{
|
|
{big.NewInt(5), build.BlockGasTarget},
|
|
{big.NewInt(10), build.BlockGasTarget},
|
|
}, 1))
|
|
|
|
require.Equal(t, types.NewInt(15), medianGasPremium([]GasMeta{
|
|
{big.NewInt(10), build.BlockGasTarget / 2},
|
|
{big.NewInt(20), build.BlockGasTarget / 2},
|
|
}, 1))
|
|
|
|
require.Equal(t, types.NewInt(25), medianGasPremium([]GasMeta{
|
|
{big.NewInt(10), build.BlockGasTarget / 2},
|
|
{big.NewInt(20), build.BlockGasTarget / 2},
|
|
{big.NewInt(30), build.BlockGasTarget / 2},
|
|
}, 1))
|
|
|
|
require.Equal(t, types.NewInt(15), medianGasPremium([]GasMeta{
|
|
{big.NewInt(10), build.BlockGasTarget / 2},
|
|
{big.NewInt(20), build.BlockGasTarget / 2},
|
|
{big.NewInt(30), build.BlockGasTarget / 2},
|
|
}, 2))
|
|
}
|