aboutsummaryrefslogtreecommitdiffstats
path: root/ethutil/common_test.go
diff options
context:
space:
mode:
authorTaylor Gerring <taylor.gerring@gmail.com>2014-11-15 05:01:52 +0800
committerTaylor Gerring <taylor.gerring@gmail.com>2014-11-15 05:01:52 +0800
commit2a9fc7baa908d64ff1ddae44641024114d3ec88d (patch)
tree7b94082bd16765984046fa3c04c2ed57812d8c89 /ethutil/common_test.go
parent56aa24002de357c24a9644a49d5702c8d4663909 (diff)
downloaddexon-2a9fc7baa908d64ff1ddae44641024114d3ec88d.tar
dexon-2a9fc7baa908d64ff1ddae44641024114d3ec88d.tar.gz
dexon-2a9fc7baa908d64ff1ddae44641024114d3ec88d.tar.bz2
dexon-2a9fc7baa908d64ff1ddae44641024114d3ec88d.tar.lz
dexon-2a9fc7baa908d64ff1ddae44641024114d3ec88d.tar.xz
dexon-2a9fc7baa908d64ff1ddae44641024114d3ec88d.tar.zst
dexon-2a9fc7baa908d64ff1ddae44641024114d3ec88d.zip
Merge branch 'develop' of https://github.com/tgerring/go-ethereum
Diffstat (limited to 'ethutil/common_test.go')
-rw-r--r--ethutil/common_test.go73
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)
+ }
+}