kaspad/util/amount_test.go
2023-12-15 00:58:05 +01:00

257 lines
5.1 KiB
Go

// Copyright (c) 2013, 2014 The btcsuite developers
// Use of this source code is governed by an ISC
// license that can be found in the LICENSE file.
package util_test
import (
"github.com/fabbez/topiad/domain/consensus/utils/constants"
"math"
"testing"
. "github.com/fabbez/topiad/util"
)
func TestAmountCreation(t *testing.T) {
tests := []struct {
name string
amount float64
valid bool
expected Amount
}{
// Positive tests.
{
name: "zero",
amount: 0,
valid: true,
expected: 0,
},
{
name: "max producible",
amount: 58e9,
valid: true,
expected: Amount(constants.MaxSompi),
},
{
name: "one hundred",
amount: 100,
valid: true,
expected: 100 * constants.SompiPerKaspa,
},
{
name: "fraction",
amount: 0.01234567,
valid: true,
expected: 1234567,
},
{
name: "rounding up",
amount: 54.999999999999943157,
valid: true,
expected: 55 * constants.SompiPerKaspa,
},
{
name: "rounding down",
amount: 55.000000000000056843,
valid: true,
expected: 55 * constants.SompiPerKaspa,
},
// Negative tests.
{
name: "not-a-number",
amount: math.NaN(),
valid: false,
},
{
name: "-infinity",
amount: math.Inf(-1),
valid: false,
},
{
name: "+infinity",
amount: math.Inf(1),
valid: false,
},
}
for _, test := range tests {
a, err := NewAmount(test.amount)
switch {
case test.valid && err != nil:
t.Errorf("%v: Positive test Amount creation failed with: %v", test.name, err)
continue
case !test.valid && err == nil:
t.Errorf("%v: Negative test Amount creation succeeded (value %v) when should fail", test.name, a)
continue
}
if a != test.expected {
t.Errorf("%v: Created amount %v does not match expected %v", test.name, a, test.expected)
continue
}
}
}
func TestAmountUnitConversions(t *testing.T) {
tests := []struct {
name string
amount Amount
unit AmountUnit
converted float64
s string
}{
{
name: "MKAS",
amount: Amount(constants.MaxSompi),
unit: AmountMegaKAS,
converted: 58000,
s: "58000 MKAS",
},
{
name: "kKAS",
amount: 44433322211100,
unit: AmountKiloKAS,
converted: 444.33322211100,
s: "444.333222111 kKAS",
},
{
name: "KAS",
amount: 44433322211100,
unit: AmountKAS,
converted: 444333.22211100,
s: "444333.222111 KAS",
},
{
name: "mKAS",
amount: 44433322211100,
unit: AmountMilliKAS,
converted: 444333222.11100,
s: "444333222.111 mKAS",
},
{
name: "μKAS",
amount: 44433322211100,
unit: AmountMicroKAS,
converted: 444333222111.00,
s: "444333222111 μKAS",
},
{
name: "sompi",
amount: 44433322211100,
unit: AmountSompi,
converted: 44433322211100,
s: "44433322211100 Sompi",
},
{
name: "non-standard unit",
amount: 44433322211100,
unit: AmountUnit(-1),
converted: 4443332.2211100,
s: "4443332.22111 1e-1 KAS",
},
}
for _, test := range tests {
f := test.amount.ToUnit(test.unit)
if f != test.converted {
t.Errorf("%v: converted value %v does not match expected %v", test.name, f, test.converted)
continue
}
s := test.amount.Format(test.unit)
if s != test.s {
t.Errorf("%v: format '%v' does not match expected '%v'", test.name, s, test.s)
continue
}
// Verify that Amount.ToKAS works as advertised.
f1 := test.amount.ToUnit(AmountKAS)
f2 := test.amount.ToKAS()
if f1 != f2 {
t.Errorf("%v: ToKAS does not match ToUnit(AmountKAS): %v != %v", test.name, f1, f2)
}
// Verify that Amount.String works as advertised.
s1 := test.amount.Format(AmountKAS)
s2 := test.amount.String()
if s1 != s2 {
t.Errorf("%v: String does not match Format(AmountKAS): %v != %v", test.name, s1, s2)
}
}
}
func TestAmountMulF64(t *testing.T) {
tests := []struct {
name string
amt Amount
mul float64
res Amount
}{
{
name: "Multiply 0.1 KAS by 2",
amt: 100e5, // 0.1 KAS
mul: 2,
res: 200e5, // 0.2 KAS
},
{
name: "Multiply 0.2 KAS by 0.02",
amt: 200e5, // 0.2 KAS
mul: 1.02,
res: 204e5, // 0.204 KAS
},
{
name: "Round down",
amt: 49, // 49 Sompi
mul: 0.01,
res: 0,
},
{
name: "Round up",
amt: 50, // 50 Sompi
mul: 0.01,
res: 1, // 1 Sompi
},
{
name: "Multiply by 0.",
amt: 1e8, // 1 KAS
mul: 0,
res: 0, // 0 KAS
},
{
name: "Multiply 1 by 0.5.",
amt: 1, // 1 Sompi
mul: 0.5,
res: 1, // 1 Sompi
},
{
name: "Multiply 100 by 66%.",
amt: 100, // 100 Sompi
mul: 0.66,
res: 66, // 66 Sompi
},
{
name: "Multiply 100 by 66.6%.",
amt: 100, // 100 Sompi
mul: 0.666,
res: 67, // 67 Sompi
},
{
name: "Multiply 100 by 2/3.",
amt: 100, // 100 Sompi
mul: 2.0 / 3,
res: 67, // 67 Sompi
},
}
for _, test := range tests {
a := test.amt.MulF64(test.mul)
if a != test.res {
t.Errorf("%v: expected %v got %v", test.name, test.res, a)
}
}
}