mirror of https://github.com/ethereum/go-ethereum
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
90 lines
2.5 KiB
90 lines
2.5 KiB
10 years ago
|
package common
|
||
11 years ago
|
|
||
|
import (
|
||
10 years ago
|
"bytes"
|
||
11 years ago
|
"math/big"
|
||
10 years ago
|
"os"
|
||
10 years ago
|
"testing"
|
||
10 years ago
|
|
||
|
checker "gopkg.in/check.v1"
|
||
11 years ago
|
)
|
||
|
|
||
10 years ago
|
type CommonSuite struct{}
|
||
10 years ago
|
|
||
10 years ago
|
var _ = checker.Suite(&CommonSuite{})
|
||
|
|
||
|
func (s *CommonSuite) TestOS(c *checker.C) {
|
||
|
expwin := (os.PathSeparator == '\\' && os.PathListSeparator == ';')
|
||
|
res := IsWindows()
|
||
10 years ago
|
|
||
10 years ago
|
if !expwin {
|
||
|
c.Assert(res, checker.Equals, expwin, checker.Commentf("IsWindows is", res, "but path is", os.PathSeparator))
|
||
|
} else {
|
||
|
c.Assert(res, checker.Not(checker.Equals), expwin, checker.Commentf("IsWindows is", res, "but path is", os.PathSeparator))
|
||
10 years ago
|
}
|
||
|
}
|
||
|
|
||
10 years ago
|
func (s *CommonSuite) TestWindonziePath(c *checker.C) {
|
||
|
iswindowspath := os.PathSeparator == '\\'
|
||
10 years ago
|
path := "/opt/eth/test/file.ext"
|
||
|
res := WindonizePath(path)
|
||
10 years ago
|
ressep := string(res[0])
|
||
10 years ago
|
|
||
10 years ago
|
if !iswindowspath {
|
||
|
c.Assert(ressep, checker.Equals, "/")
|
||
|
} else {
|
||
|
c.Assert(ressep, checker.Not(checker.Equals), "/")
|
||
10 years ago
|
}
|
||
|
}
|
||
|
|
||
10 years ago
|
func (s *CommonSuite) TestCommon(c *checker.C) {
|
||
10 years ago
|
douglas := CurrencyToString(BigPow(10, 43))
|
||
|
einstein := CurrencyToString(BigPow(10, 22))
|
||
11 years ago
|
ether := CurrencyToString(BigPow(10, 19))
|
||
10 years ago
|
finney := CurrencyToString(BigPow(10, 16))
|
||
11 years ago
|
szabo := CurrencyToString(BigPow(10, 13))
|
||
10 years ago
|
shannon := CurrencyToString(BigPow(10, 10))
|
||
|
babbage := CurrencyToString(BigPow(10, 7))
|
||
|
ada := CurrencyToString(BigPow(10, 4))
|
||
11 years ago
|
wei := CurrencyToString(big.NewInt(10))
|
||
|
|
||
10 years ago
|
c.Assert(douglas, checker.Equals, "10 Douglas")
|
||
|
c.Assert(einstein, checker.Equals, "10 Einstein")
|
||
|
c.Assert(ether, checker.Equals, "10 Ether")
|
||
|
c.Assert(finney, checker.Equals, "10 Finney")
|
||
|
c.Assert(szabo, checker.Equals, "10 Szabo")
|
||
|
c.Assert(shannon, checker.Equals, "10 Shannon")
|
||
|
c.Assert(babbage, checker.Equals, "10 Babbage")
|
||
|
c.Assert(ada, checker.Equals, "10 Ada")
|
||
|
c.Assert(wei, checker.Equals, "10 Wei")
|
||
11 years ago
|
}
|
||
10 years ago
|
|
||
10 years ago
|
func (s *CommonSuite) TestLarge(c *checker.C) {
|
||
10 years ago
|
douglaslarge := CurrencyToString(BigPow(100000000, 43))
|
||
|
adalarge := CurrencyToString(BigPow(100000000, 4))
|
||
|
weilarge := CurrencyToString(big.NewInt(100000000))
|
||
|
|
||
10 years ago
|
c.Assert(douglaslarge, checker.Equals, "10000E298 Douglas")
|
||
|
c.Assert(adalarge, checker.Equals, "10000E7 Einstein")
|
||
|
c.Assert(weilarge, checker.Equals, "100 Babbage")
|
||
10 years ago
|
}
|
||
10 years ago
|
|
||
|
//fromHex
|
||
|
func TestFromHex(t *testing.T) {
|
||
|
input := "0x01"
|
||
|
expected := []byte{1}
|
||
|
result := FromHex(input)
|
||
|
if bytes.Compare(expected, result) != 0 {
|
||
|
t.Errorf("Expected % x got % x", expected, result)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func TestFromHexOddLength(t *testing.T) {
|
||
|
input := "0x1"
|
||
|
expected := []byte{1}
|
||
|
result := FromHex(input)
|
||
|
if bytes.Compare(expected, result) != 0 {
|
||
|
t.Errorf("Expected % x got % x", expected, result)
|
||
|
}
|
||
|
}
|