Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
drortirosh committed May 8, 2024
1 parent 25c8120 commit 4a84229
Show file tree
Hide file tree
Showing 37 changed files with 61,052 additions and 572 deletions.
7,581 changes: 7,581 additions & 0 deletions v06/history/history.json

Large diffs are not rendered by default.

7,581 changes: 7,581 additions & 0 deletions v06/history/script-history.js

Large diffs are not rendered by default.

899 changes: 899 additions & 0 deletions v06/runs/20240508/125616/aabundler.json

Large diffs are not rendered by default.

2,813 changes: 2,813 additions & 0 deletions v06/runs/20240508/125616/aabundler.log

Large diffs are not rendered by default.

275 changes: 275 additions & 0 deletions v06/runs/20240508/125616/aabundler.txt

Large diffs are not rendered by default.

65 changes: 65 additions & 0 deletions v06/runs/20240508/125616/aabundler.xml

Large diffs are not rendered by default.

899 changes: 899 additions & 0 deletions v06/runs/20240508/125616/alto.json

Large diffs are not rendered by default.

2,384 changes: 2,384 additions & 0 deletions v06/runs/20240508/125616/alto.log

Large diffs are not rendered by default.

248 changes: 248 additions & 0 deletions v06/runs/20240508/125616/alto.txt

Large diffs are not rendered by default.

41 changes: 41 additions & 0 deletions v06/runs/20240508/125616/alto.xml

Large diffs are not rendered by default.

123 changes: 123 additions & 0 deletions v06/runs/20240508/125616/html/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,123 @@
<head>
<style>
#results {
font-family: Arial, Helvetica, sans-serif;
border-collapse: collapse;
/*width: 100%;*/
}

#results td, #results th {
border: 1px solid #ddd;
padding: 8px;
}

#results tr:nth-child(even){background-color: #f2f2f2;}

#results tr:hover {background-color: #ddd;}

#results th {
padding-top: 12px;
padding-bottom: 12px;
text-align: left;
background-color: #04AA6D;
color: white;
}
</style>
</head>

<h1>EIP-4337 Bundlers Spec Test Results</h1>
<div id=output >
</div>

<p>

This page was generated by <a href="https://github.com/eth-infinitism/bundler-test-results">bundler-test-results</a>


<script>

okmark = '&#9989;'
errmark = '&#10060;'
const dir = './out/'
async function getList() {
list = await fetch(dir+'index.txt').then(r=>r.text())
return list.split('\n').filter(line=>line.endsWith('json')).map(line=>dir+line)
}

async function getJson(path) {
return await fetch(path).then(r=>r.json())
}

function mapTests(testcases) {
return testcases.map(t=>({
name: t['@name'],
classname: t['@classname'],
time: t['@time'],
skipped: t['skipped'],
error: t['error'],
failure: t['failure'],
}))
}

async function load() {
list = await getList()
out=[]
for ( fname of list ) {
const j = await getJson(fname)
test = j.testsuites.testsuite
res = {
name: test['@name'],
fname, //: fname.replace(/.*\/(.*.json)$/,'$1'),
skipped: test['@skipped'],
failures: test['@failures'],
errors: test['@errors'],
time: test['@time'],
tests: mapTests(test.testcase)
}
console.log('res=',JSON.stringify(res,null,2))
out.push(res)
}

return out
}

function ref(data,link) {
if ( !link) return data
return `<a href="${link}">${data}</a>`
}

function tr(...data) {
return `<tr>${data.join(' ')}</tr>`
}

function th(data) {
// return td(data)
return `<th>${data}</th>`
}

function td(data,link) {
return `<td>${ref(data,link)}</td>`
}

async function init() {
data = await load()
console.log(data)
rows = document.querySelector('#output')

rows.innerHTML = '<table id="results"><tbody>\n' +
tr(th('Name'),th('Total'),th('Errors'),th('Failures'),th('Skipped'),th('Time')) +
data.map(line=>{
const {name, fname, skipped, errors,failures, time, tests} = line
link = fname.replace('json', 'txt')
ok = failures== '0' && errors == '0'
return tr(td(name, link),td(tests.length),td(errors),td(failures),td(skipped),td(time))
}).join('\n')
'</tbody></table>'

console.log(rows.innerHTML)

}
init()

</script>

32 changes: 32 additions & 0 deletions v06/runs/20240508/125616/index.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
aabundler.json
aabundler.log
aabundler.txt
aabundler.xml
alto.json
alto.log
alto.txt
alto.xml
html/
index.txt
okbund.json
okbund.log
okbund.txt
okbund.xml
silius.json
silius.log
silius.txt
silius.xml
skandha.log
skandha.txt
stackup.json
stackup.log
stackup.txt
stackup.xml
transeptor.json
transeptor.log
transeptor.txt
transeptor.xml
voltaire.json
voltaire.log
voltaire.txt
voltaire.xml
1,877 changes: 1,877 additions & 0 deletions v06/runs/20240508/125616/okbund.json

Large diffs are not rendered by default.

18,864 changes: 18,864 additions & 0 deletions v06/runs/20240508/125616/okbund.log

Large diffs are not rendered by default.

2,775 changes: 2,775 additions & 0 deletions v06/runs/20240508/125616/okbund.txt

Large diffs are not rendered by default.

2,584 changes: 2,584 additions & 0 deletions v06/runs/20240508/125616/okbund.xml

Large diffs are not rendered by default.

899 changes: 899 additions & 0 deletions v06/runs/20240508/125616/silius.json

Large diffs are not rendered by default.

170 changes: 170 additions & 0 deletions v06/runs/20240508/125616/silius.log

Large diffs are not rendered by default.

544 changes: 544 additions & 0 deletions v06/runs/20240508/125616/silius.txt

Large diffs are not rendered by default.

184 changes: 184 additions & 0 deletions v06/runs/20240508/125616/silius.xml

Large diffs are not rendered by default.

19 changes: 19 additions & 0 deletions v06/runs/20240508/125616/skandha.log
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
Attaching to bundler-test-executor_bundler-waiter_1, bundler-test-executor_bundler_1, bundler-test-executor_deployer_1, bundler-test-executor_funder_1, geth-1.13
bundler-waiter_1 | 2024-05-08T12:50:51.687344899Z wait for: http://bundler:3000/rpc
bundler-waiter_1 | 2024-05-08T12:50:52.694058439Z wait for: http://bundler:3000/rpc
bundler-waiter_1 | 2024-05-08T12:50:53.700363998Z wait for: http://bundler:3000/rpc
bundler-waiter_1 | 2024-05-08T12:50:54.706579218Z wait for: http://bundler:3000/rpc
bundler-waiter_1 | 2024-05-08T12:50:55.712484395Z wait for: http://bundler:3000/rpc
bundler-waiter_1 | 2024-05-08T12:50:56.719007349Z wait for: http://bundler:3000/rpc
bundler-waiter_1 | 2024-05-08T12:50:57.725144052Z wait for: http://bundler:3000/rpc
bundler-waiter_1 | 2024-05-08T12:50:58.731525561Z wait for: http://bundler:3000/rpc
bundler-waiter_1 | 2024-05-08T12:50:59.737764043Z wait for: http://bundler:3000/rpc
bundler-waiter_1 | 2024-05-08T12:51:00.743890359Z wait for: http://bundler:3000/rpc
deployer_1 | 2024-05-08T12:50:38.104823190Z Deploying entrypoint at 0x5FF137D4b0FDCD49DcA30c7CF57E578a026d2789
deployer_1 | 2024-05-08T12:50:44.200616153Z deploying:
bundler_1 | 2024-05-08T12:51:00.035684042Z (node:1) ExperimentalWarning: The Node.js specifier resolution flag is experimental. It could change or be removed at any time.
bundler_1 | 2024-05-08T12:51:00.035737902Z (Use `node --trace-warnings ...` to show where the warning was created)
funder_1 | 2024-05-08T12:50:37.528345713Z funded: 0x43378ff8C70109Ee4Dbe85aF34428ab0615EBd23
funder_1 | 2024-05-08T12:50:37.549334880Z funded: 0x43378ff8C70109Ee4Dbe85aF34428ab0615EBd23
funder_1 | 2024-05-08T12:50:37.570637480Z funded: 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266
funder_1 | 2024-05-08T12:50:37.592623868Z funded: 0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266
9 changes: 9 additions & 0 deletions v06/runs/20240508/125616/skandha.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
Wed May 8 12:50:21 UTC 2024: starting bundler /home/runner/work/bundler-test-executor/bundler-test-executor/bundlers/skandha/skandha.yml, name=skandha
Wed May 8 12:51:00 UTC 2024: done bundler /home/runner/work/bundler-test-executor/bundler-test-executor/bundlers/skandha/skandha.yml, name=skandha
Container Repository Tag Image Id Size
--------------------------------------------------------------------------------------------------------------
bundler-test-executor_bundler-waiter_1 curlimages/curl latest 79009b90fb07 17.29 MB
bundler-test-executor_bundler_1 etherspot/skandha latest dd4d26af7d2a 485.4 MB
bundler-test-executor_deployer_1 accountabstraction/deployer 0.6 7e3c6d5f0f4d 143.1 MB
bundler-test-executor_funder_1 bundler-test-executor_funder latest 7cfa092c2000 164.3 MB
geth-1.13 ethereum/client-go release-1.13 ef31eb599a3f 66.72 MB
Loading

0 comments on commit 4a84229

Please sign in to comment.