Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
N
nebula
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
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
exchain
nebula
Commits
2199f863
Commit
2199f863
authored
Nov 05, 2021
by
George Hotz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add simple memory fuzzing test
parent
ee199fe7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
43 additions
and
1 deletion
+43
-1
mips_test_memory.js
test/mips_test_memory.js
+43
-1
No files found.
test/mips_test_memory.js
View file @
2199f863
...
...
@@ -8,10 +8,13 @@ async function write(mm, root, addr, data) {
root
=
l
.
data
}
}
console
.
log
(
"
new hash
"
,
root
)
return
root
}
function
randint
(
n
)
{
return
Math
.
floor
(
Math
.
random
()
*
n
)
}
describe
(
"
MIPSMemory contract
"
,
function
()
{
beforeEach
(
async
function
()
{
const
MIPSMemory
=
await
ethers
.
getContractFactory
(
"
MIPSMemory
"
)
...
...
@@ -22,7 +25,9 @@ describe("MIPSMemory contract", function () {
let
root
=
"
0x56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421
"
root
=
await
write
(
mm
,
root
,
0
,
1
)
console
.
log
(
"
new hash
"
,
root
)
root
=
await
write
(
mm
,
root
,
4
,
2
)
console
.
log
(
"
new hash
"
,
root
)
expect
(
await
mm
.
ReadMemory
(
root
,
0
)).
to
.
equal
(
1
)
expect
(
await
mm
.
ReadMemory
(
root
,
4
)).
to
.
equal
(
2
)
...
...
@@ -32,8 +37,11 @@ describe("MIPSMemory contract", function () {
let
root
=
"
0x56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421
"
root
=
await
write
(
mm
,
root
,
0
,
1
)
console
.
log
(
"
new hash
"
,
root
)
root
=
await
write
(
mm
,
root
,
4
,
2
)
console
.
log
(
"
new hash
"
,
root
)
root
=
await
write
(
mm
,
root
,
0x40
,
3
)
console
.
log
(
"
new hash
"
,
root
)
expect
(
await
mm
.
ReadMemory
(
root
,
0
)).
to
.
equal
(
1
)
expect
(
await
mm
.
ReadMemory
(
root
,
4
)).
to
.
equal
(
2
)
...
...
@@ -44,11 +52,45 @@ describe("MIPSMemory contract", function () {
let
root
=
"
0x56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421
"
root
=
await
write
(
mm
,
root
,
0x7fffd00c
,
1
)
console
.
log
(
"
new hash
"
,
root
)
root
=
await
write
(
mm
,
root
,
0x7fffd010
,
2
)
console
.
log
(
"
new hash
"
,
root
)
root
=
await
write
(
mm
,
root
,
0x7fffcffc
,
3
)
console
.
log
(
"
new hash
"
,
root
)
expect
(
await
mm
.
ReadMemory
(
root
,
0x7fffd00c
)).
to
.
equal
(
1
)
expect
(
await
mm
.
ReadMemory
(
root
,
0x7fffd010
)).
to
.
equal
(
2
)
expect
(
await
mm
.
ReadMemory
(
root
,
0x7fffcffc
)).
to
.
equal
(
3
)
})
it
(
"
fuzzing should be okay
"
,
async
function
()
{
await
mm
.
AddTrieNode
(
new
Uint8Array
([
0x80
]))
let
root
=
"
0x56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421
"
let
keys
=
[]
let
values
=
[]
for
(
var
i
=
0
;
i
<
100
;
i
++
)
{
const
choice
=
Math
.
random
()
if
(
choice
<
0.5
||
keys
.
length
==
0
)
{
// write new key
const
key
=
randint
(
0x4000
)
*
4
const
value
=
randint
(
0x100000000
)
root
=
await
write
(
mm
,
root
,
key
,
value
)
keys
.
push
(
key
)
values
.
push
(
value
)
}
else
if
(
choice
>
0.7
)
{
// read old key
const
idx
=
randint
(
keys
.
length
)
const
key
=
keys
[
idx
]
const
value
=
values
[
idx
]
expect
(
await
mm
.
ReadMemory
(
root
,
key
)).
to
.
equal
(
value
)
}
else
{
// rewrite old key
const
idx
=
randint
(
keys
.
length
)
const
key
=
keys
[
idx
]
const
value
=
randint
(
0x100000000
)
root
=
await
write
(
mm
,
root
,
key
,
value
)
values
[
idx
]
=
value
}
}
})
})
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