| 
									
										
										
										
											2015-07-07 02:54:22 +02:00
										 |  |  | // Copyright 2014 The go-ethereum Authors | 
					
						
							| 
									
										
										
										
											2015-07-22 18:48:40 +02:00
										 |  |  | // This file is part of the go-ethereum library. | 
					
						
							| 
									
										
										
										
											2015-07-07 02:54:22 +02:00
										 |  |  | // | 
					
						
							| 
									
										
										
										
											2015-07-23 18:35:11 +02:00
										 |  |  | // The go-ethereum library is free software: you can redistribute it and/or modify | 
					
						
							| 
									
										
										
										
											2015-07-07 02:54:22 +02:00
										 |  |  | // it under the terms of the GNU Lesser General Public License as published by | 
					
						
							|  |  |  | // the Free Software Foundation, either version 3 of the License, or | 
					
						
							|  |  |  | // (at your option) any later version. | 
					
						
							|  |  |  | // | 
					
						
							| 
									
										
										
										
											2015-07-22 18:48:40 +02:00
										 |  |  | // The go-ethereum library is distributed in the hope that it will be useful, | 
					
						
							| 
									
										
										
										
											2015-07-07 02:54:22 +02:00
										 |  |  | // but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							| 
									
										
										
										
											2015-07-22 18:48:40 +02:00
										 |  |  | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 
					
						
							| 
									
										
										
										
											2015-07-07 02:54:22 +02:00
										 |  |  | // GNU Lesser General Public License for more details. | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // You should have received a copy of the GNU Lesser General Public License | 
					
						
							| 
									
										
										
										
											2015-07-22 18:48:40 +02:00
										 |  |  | // along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>. | 
					
						
							| 
									
										
										
										
											2015-07-07 02:54:22 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-03-16 11:27:38 +01:00
										 |  |  | package common | 
					
						
							| 
									
										
										
										
											2014-02-15 13:21:11 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | import ( | 
					
						
							| 
									
										
										
										
											2014-02-16 20:30:33 +01:00
										 |  |  | 	"math/big" | 
					
						
							| 
									
										
										
										
											2014-11-15 20:21:55 -06:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	checker "gopkg.in/check.v1" | 
					
						
							| 
									
										
										
										
											2014-02-15 13:21:11 +01:00
										 |  |  | ) | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-14 15:01:52 -06:00
										 |  |  | type ValueSuite struct{} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | var _ = checker.Suite(&ValueSuite{}) | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | func (s *ValueSuite) TestValueCmp(c *checker.C) { | 
					
						
							| 
									
										
										
										
											2014-02-15 13:21:11 +01:00
										 |  |  | 	val1 := NewValue("hello") | 
					
						
							|  |  |  | 	val2 := NewValue("world") | 
					
						
							| 
									
										
										
										
											2014-11-14 15:01:52 -06:00
										 |  |  | 	c.Assert(val1.Cmp(val2), checker.Equals, false) | 
					
						
							| 
									
										
										
										
											2014-02-15 13:21:11 +01:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	val3 := NewValue("hello") | 
					
						
							|  |  |  | 	val4 := NewValue("hello") | 
					
						
							| 
									
										
										
										
											2014-11-14 15:01:52 -06:00
										 |  |  | 	c.Assert(val3.Cmp(val4), checker.Equals, true) | 
					
						
							| 
									
										
										
										
											2014-02-15 13:21:11 +01:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-14 15:01:52 -06:00
										 |  |  | func (s *ValueSuite) TestValueTypes(c *checker.C) { | 
					
						
							| 
									
										
										
										
											2014-02-15 13:21:11 +01:00
										 |  |  | 	str := NewValue("str") | 
					
						
							|  |  |  | 	num := NewValue(1) | 
					
						
							|  |  |  | 	inter := NewValue([]interface{}{1}) | 
					
						
							| 
									
										
										
										
											2014-02-16 20:30:33 +01:00
										 |  |  | 	byt := NewValue([]byte{1, 2, 3, 4}) | 
					
						
							|  |  |  | 	bigInt := NewValue(big.NewInt(10)) | 
					
						
							| 
									
										
										
										
											2014-02-15 13:21:11 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-14 15:01:52 -06:00
										 |  |  | 	strExp := "str" | 
					
						
							|  |  |  | 	numExp := uint64(1) | 
					
						
							| 
									
										
										
										
											2014-02-16 20:30:33 +01:00
										 |  |  | 	interExp := []interface{}{1} | 
					
						
							|  |  |  | 	bytExp := []byte{1, 2, 3, 4} | 
					
						
							|  |  |  | 	bigExp := big.NewInt(10) | 
					
						
							| 
									
										
										
										
											2014-11-14 15:01:52 -06:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	c.Assert(str.Str(), checker.Equals, strExp) | 
					
						
							|  |  |  | 	c.Assert(num.Uint(), checker.Equals, numExp) | 
					
						
							| 
									
										
										
										
											2015-03-20 13:33:11 +01:00
										 |  |  | 	c.Assert(NewValue(inter.Val).Cmp(NewValue(interExp)), checker.Equals, true) | 
					
						
							| 
									
										
										
										
											2014-11-14 15:01:52 -06:00
										 |  |  | 	c.Assert(byt.Bytes(), checker.DeepEquals, bytExp) | 
					
						
							|  |  |  | 	c.Assert(bigInt.BigInt(), checker.DeepEquals, bigExp) | 
					
						
							| 
									
										
										
										
											2014-02-15 13:21:11 +01:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2014-03-05 10:42:51 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-14 15:01:52 -06:00
										 |  |  | func (s *ValueSuite) TestIterator(c *checker.C) { | 
					
						
							| 
									
										
										
										
											2014-03-05 10:42:51 +01:00
										 |  |  | 	value := NewValue([]interface{}{1, 2, 3}) | 
					
						
							| 
									
										
										
										
											2014-11-14 15:01:52 -06:00
										 |  |  | 	iter := value.NewIterator() | 
					
						
							| 
									
										
										
										
											2014-03-05 10:42:51 +01:00
										 |  |  | 	values := []uint64{1, 2, 3} | 
					
						
							|  |  |  | 	i := 0 | 
					
						
							| 
									
										
										
										
											2014-11-14 15:01:52 -06:00
										 |  |  | 	for iter.Next() { | 
					
						
							|  |  |  | 		c.Assert(values[i], checker.Equals, iter.Value().Uint()) | 
					
						
							| 
									
										
										
										
											2014-03-05 10:42:51 +01:00
										 |  |  | 		i++ | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2014-07-29 10:33:30 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-14 15:01:52 -06:00
										 |  |  | func (s *ValueSuite) TestMath(c *checker.C) { | 
					
						
							|  |  |  | 	data1 := NewValue(1) | 
					
						
							|  |  |  | 	data1.Add(1).Add(1) | 
					
						
							|  |  |  | 	exp1 := NewValue(3) | 
					
						
							|  |  |  | 	data2 := NewValue(2) | 
					
						
							|  |  |  | 	data2.Sub(1).Sub(1) | 
					
						
							|  |  |  | 	exp2 := NewValue(0) | 
					
						
							| 
									
										
										
										
											2014-07-29 10:33:30 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-14 15:01:52 -06:00
										 |  |  | 	c.Assert(data1.DeepCmp(exp1), checker.Equals, true) | 
					
						
							|  |  |  | 	c.Assert(data2.DeepCmp(exp2), checker.Equals, true) | 
					
						
							| 
									
										
										
										
											2014-07-29 10:33:30 +02:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2014-09-13 13:14:24 +02:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-14 15:01:52 -06:00
										 |  |  | func (s *ValueSuite) TestString(c *checker.C) { | 
					
						
							|  |  |  | 	data := "10" | 
					
						
							|  |  |  | 	exp := int64(10) | 
					
						
							|  |  |  | 	c.Assert(NewValue(data).Int(), checker.DeepEquals, exp) | 
					
						
							| 
									
										
										
										
											2014-09-13 13:14:24 +02:00
										 |  |  | } |