forked from hyperledger-cacti/cacti
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test jmeter benchmarking Signed-off-by: ruzell22 <[email protected]>
- Loading branch information
Showing
5 changed files
with
99 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
name: Benchmark.js Example | ||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
branches: | ||
- main | ||
|
||
permissions: | ||
contents: write | ||
deployments: write | ||
|
||
jobs: | ||
benchmark: | ||
name: Run JavaScript benchmark example | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-node@v1 | ||
- name: Run benchmark | ||
run: cd packages/cactus-plugin-ledger-connector-besu/src/test/benchmarkjs && npm install && node bench.js | tee output.txt | ||
|
||
- name: Commit changes | ||
run: | | ||
git add packages/cactus-plugin-ledger-connector-besu/src/test/benchmarkjs/package.json | ||
git commit -s -m "Committing changes to package.json" | ||
if: github.event_name == 'push' | ||
|
||
- name: Stash changes | ||
run: git stash | ||
if: github.event_name == 'pull_request' | ||
|
||
- name: Store benchmark result | ||
uses: benchmark-action/github-action-benchmark@v1 | ||
with: | ||
tool: 'benchmarkjs' | ||
output-file-path: packages/cactus-plugin-ledger-connector-besu/src/test/benchmarkjs/output.txt | ||
github-token: ${{ secrets.GITHUB_TOKEN }} | ||
auto-push: true | ||
# Show alert with commit comment on detecting possible performance regression | ||
alert-threshold: '200%' | ||
comment-on-alert: true | ||
fail-on-alert: true | ||
|
||
# - name: Store benchmark result - separate results repo | ||
# uses: benchmark-action/github-action-benchmark@v1 | ||
# with: | ||
# name: Benchmark.js Benchmark | ||
# tool: 'benchmarkjs' | ||
# output-file-path: packages/cactus-plugin-ledger-connector-besu/src/test/benchmarkjs/output.txt | ||
# github-token: ${{ secrets.BENCHMARK_ACTION_BOT_TOKEN }} | ||
# auto-push: true | ||
# # Show alert with commit comment on detecting possible performance regression | ||
# alert-threshold: '200%' | ||
# comment-on-alert: true | ||
# fail-on-alert: true | ||
# gh-repository: 'github.com/benchmark-action/github-action-benchmark-results' |
2 changes: 2 additions & 0 deletions
2
packages/cactus-plugin-ledger-connector-besu/src/test/benchmarkjs/.gitignore
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
/node_modules | ||
/package-lock.json |
31 changes: 31 additions & 0 deletions
31
packages/cactus-plugin-ledger-connector-besu/src/test/benchmarkjs/bench.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
const Benchmark = require('benchmark'); | ||
const suite = new Benchmark.Suite(); | ||
const { exec } = require('child_process'); | ||
const benchmarkBesu = "benchmark-besu"; | ||
|
||
suite | ||
exec(`npm run ${benchmarkBesu}`, (error, stdout) => { | ||
if (error) { | ||
console.error(); | ||
return; | ||
} | ||
|
||
on("cycle", (event) => { | ||
console.log(String(event.target)); | ||
}) | ||
.run(); | ||
|
||
// console.log(`Script output:\n${stdout}`); | ||
}); | ||
|
||
// suite | ||
// .add("fib(10)", () => { | ||
// fib(10); | ||
// }) | ||
// .add("fib(20)", () => { | ||
// fib(20); | ||
// }) | ||
// .on("cycle", (event) => { | ||
// console.log(String(event.target)); | ||
// }) | ||
// .run(); |
8 changes: 8 additions & 0 deletions
8
packages/cactus-plugin-ledger-connector-besu/src/test/benchmarkjs/index.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
function fib(n) { | ||
if (n <= 1) { | ||
return 1; | ||
} | ||
return fib(n - 2) + fib(n - 1); | ||
} | ||
|
||
exports.fib = fib; |
Empty file.