diff options
author | Taylor Gerring <taylor.gerring@gmail.com> | 2014-11-12 03:37:18 +0800 |
---|---|---|
committer | Taylor Gerring <taylor.gerring@gmail.com> | 2014-11-12 03:37:18 +0800 |
commit | 1d866b5e579e06d00ab63cf8899a47e08b95b232 (patch) | |
tree | 022955dec7ef6527a6f30d3adb82ce4671e111a2 /ethutil/common_test.go | |
parent | f59a3b67f69b26f969084e0de165435e80bd8e12 (diff) | |
parent | 5c5df21e3d8768481c2bc1b6e9475099590e10be (diff) | |
download | dexon-1d866b5e579e06d00ab63cf8899a47e08b95b232.tar dexon-1d866b5e579e06d00ab63cf8899a47e08b95b232.tar.gz dexon-1d866b5e579e06d00ab63cf8899a47e08b95b232.tar.bz2 dexon-1d866b5e579e06d00ab63cf8899a47e08b95b232.tar.lz dexon-1d866b5e579e06d00ab63cf8899a47e08b95b232.tar.xz dexon-1d866b5e579e06d00ab63cf8899a47e08b95b232.tar.zst dexon-1d866b5e579e06d00ab63cf8899a47e08b95b232.zip |
Merge pull request #1 from tgerring/tests
Initial tests based on check framework
Diffstat (limited to 'ethutil/common_test.go')
-rw-r--r-- | ethutil/common_test.go | 73 |
1 files changed, 64 insertions, 9 deletions
diff --git a/ethutil/common_test.go b/ethutil/common_test.go index 2667eaf3a..056676765 100644 --- a/ethutil/common_test.go +++ b/ethutil/common_test.go @@ -2,18 +2,55 @@ package ethutil import ( "math/big" + "os" "testing" ) +func TestOS(t *testing.T) { + res := IsWindows() + + if res && (os.PathSeparator != '\\' || os.PathListSeparator != ';') { + t.Error("IsWindows is", res, "but path is", os.PathSeparator) + } + + if !res && (os.PathSeparator == '\\' && os.PathListSeparator == ';') { + t.Error("IsWindows is", res, "but path is", os.PathSeparator) + } +} + +func TestWindonziePath(t *testing.T) { + path := "/opt/eth/test/file.ext" + res := WindonizePath(path) + iswindowspath := os.PathSeparator == '\\' + + if !iswindowspath && string(res[0]) != "/" { + t.Error("Got", res) + } + + if iswindowspath && string(res[0]) == "/" { + t.Error("Got", res) + } +} + func TestCommon(t *testing.T) { + douglas := CurrencyToString(BigPow(10, 43)) + einstein := CurrencyToString(BigPow(10, 22)) ether := CurrencyToString(BigPow(10, 19)) finney := CurrencyToString(BigPow(10, 16)) szabo := CurrencyToString(BigPow(10, 13)) - vito := CurrencyToString(BigPow(10, 10)) - turing := CurrencyToString(BigPow(10, 7)) - eins := CurrencyToString(BigPow(10, 4)) + shannon := CurrencyToString(BigPow(10, 10)) + babbage := CurrencyToString(BigPow(10, 7)) + ada := CurrencyToString(BigPow(10, 4)) wei := CurrencyToString(big.NewInt(10)) + if douglas != "10 Douglas" { + t.Error("Got", douglas) + } + + if einstein != "10 Einstein" { + t.Error("Got", einstein) + } + if ether != "10 Ether" { t.Error("Got", ether) } @@ -26,19 +63,37 @@ func TestCommon(t *testing.T) { t.Error("Got", szabo) } - if vito != "10 Shannon" { - t.Error("Got", vito) + if shannon != "10 Shannon" { + t.Error("Got", shannon) } - if turing != "10 Babbage" { - t.Error("Got", turing) + if babbage != "10 Babbage" { + t.Error("Got", babbage) } - if eins != "10 Ada" { - t.Error("Got", eins) + if ada != "10 Ada" { + t.Error("Got", ada) } if wei != "10 Wei" { t.Error("Got", wei) } } + +func TestLarge(t *testing.T) { + douglaslarge := CurrencyToString(BigPow(100000000, 43)) + adalarge := CurrencyToString(BigPow(100000000, 4)) + weilarge := CurrencyToString(big.NewInt(100000000)) + + if douglaslarge != "10000E298 Douglas" { + t.Error("Got", douglaslarge) + } + + if adalarge != "10000E7 Einstein" { + t.Error("Got", adalarge) + } + + if weilarge != "100 Babbage" { + t.Error("Got", weilarge) + } +} |