2018-08-06 12:00:49 -07:00
|
|
|
package types
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestGasMeter(t *testing.T) {
|
|
|
|
cases := []struct {
|
|
|
|
limit Gas
|
|
|
|
usage []Gas
|
|
|
|
}{
|
|
|
|
{10, []Gas{1, 2, 3, 4}},
|
|
|
|
{1000, []Gas{40, 30, 20, 10, 900}},
|
|
|
|
{100000, []Gas{99999, 1}},
|
|
|
|
{100000000, []Gas{50000000, 40000000, 10000000}},
|
|
|
|
{65535, []Gas{32768, 32767}},
|
|
|
|
{65536, []Gas{32768, 32767, 1}},
|
|
|
|
}
|
|
|
|
|
|
|
|
for tcnum, tc := range cases {
|
|
|
|
meter := NewGasMeter(tc.limit)
|
2018-11-19 09:13:45 -08:00
|
|
|
used := uint64(0)
|
2018-08-06 12:00:49 -07:00
|
|
|
|
|
|
|
for unum, usage := range tc.usage {
|
|
|
|
used += usage
|
|
|
|
require.NotPanics(t, func() { meter.ConsumeGas(usage, "") }, "Not exceeded limit but panicked. tc #%d, usage #%d", tcnum, unum)
|
|
|
|
require.Equal(t, used, meter.GasConsumed(), "Gas consumption not match. tc #%d, usage #%d", tcnum, unum)
|
2018-11-20 20:07:30 -08:00
|
|
|
require.Equal(t, used, meter.GasConsumedToLimit(), "Gas consumption (to limit) not match. tc #%d, usage #%d", tcnum, unum)
|
|
|
|
require.False(t, meter.IsPastLimit(), "Not exceeded limit but got IsPastLimit() true")
|
|
|
|
if unum < len(tc.usage)-1 {
|
|
|
|
require.False(t, meter.IsOutOfGas(), "Not yet at limit but got IsOutOfGas() true")
|
|
|
|
} else {
|
|
|
|
require.True(t, meter.IsOutOfGas(), "At limit but got IsOutOfGas() false")
|
|
|
|
}
|
2018-08-06 12:00:49 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
require.Panics(t, func() { meter.ConsumeGas(1, "") }, "Exceeded but not panicked. tc #%d", tcnum)
|
2018-11-20 20:07:30 -08:00
|
|
|
require.Equal(t, meter.GasConsumedToLimit(), meter.Limit(), "Gas consumption (to limit) not match limit")
|
|
|
|
require.Equal(t, meter.GasConsumed(), meter.Limit()+1, "Gas consumption not match limit+1")
|
2018-08-06 12:00:49 -07:00
|
|
|
break
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|