Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
Geth-Modification
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
张蕾
Geth-Modification
Commits
0a3a148e
Commit
0a3a148e
authored
Nov 06, 2014
by
Taylor Gerring
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added more byte tests
parent
48a3f098
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
37 additions
and
0 deletions
+37
-0
bytes_test.go
ethutil/bytes_test.go
+37
-0
No files found.
ethutil/bytes_test.go
View file @
0a3a148e
...
...
@@ -16,6 +16,43 @@ func TestByteString(t *testing.T) {
}
}
/*
func TestDeleteFromByteSlice(t *testing.T) {
data := []byte{1, 2, 3, 4}
slice := []byte{1, 2, 3, 4}
exp := []byte{1, 4}
res := DeleteFromByteSlice(data, slice)
if bytes.Compare(res, exp) != 0 {
t.Errorf("Expected % x Got % x", exp, res)
}
}
func TestNumberToBytes(t *testing.T) {
data := int(1)
exp := []byte{0, 0, 0, 0, 0, 0, 0, 1}
// TODO this fails. why?
res := NumberToBytes(data, 16)
if bytes.Compare(res, exp) != 0 {
t.Errorf("Expected % x Got % x", exp, res)
}
}
*/
func
TestBytesToNumber
(
t
*
testing
.
T
)
{
datasmall
:=
[]
byte
{
0
,
1
}
datalarge
:=
[]
byte
{
1
,
2
,
3
}
expsmall
:=
uint64
(
0
)
explarge
:=
uint64
(
0
)
// TODO this fails. why?
ressmall
:=
BytesToNumber
(
datasmall
)
reslarge
:=
BytesToNumber
(
datalarge
)
if
ressmall
!=
expsmall
{
t
.
Errorf
(
"Expected %d Got %d"
,
expsmall
,
ressmall
)
}
if
reslarge
!=
explarge
{
t
.
Errorf
(
"Expected %d Got %d"
,
explarge
,
reslarge
)
}
}
func
TestReadVarInt
(
t
*
testing
.
T
)
{
data8
:=
[]
byte
{
1
,
2
,
3
,
4
,
5
,
6
,
7
,
8
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment