Round 398: Gatling ext, k6 ext, Locust ext, Artillery/Vegeta ext (20 commands)
ober
d236961460efab4ca1716d7e35d09f6ec6ac491d
--- a/docs/jemacs-vs-emacs.md +++ b/docs/jemacs-vs-emacs.md @@ -4583,6 +4583,31 @@ No remaining Tier 1 gaps. All core editing, completion, and navigation features | ebib-import-file | :orange_circle: | Import file into Ebib | | ebib-push-citation | :orange_circle: | Push Ebib citation to buffer | +### Round 398 — Gatling ext, k6 ext, Locust ext, Artillery/Vegeta ext + +| Feature | Emacs | jemacs | Status | +|---|---|---|---| +| Gatling run | — | `gatling-run` | :orange_circle: Scaffolded | +| Gatling reports | — | `gatling-reports` | :orange_circle: Scaffolded | +| Gatling simulations | — | `gatling-simulations` | :orange_circle: Scaffolded | +| Gatling recorder | — | `gatling-recorder` | :orange_circle: Scaffolded | +| k6 run test | — | `k6-run` | :orange_circle: Scaffolded | +| k6 cloud test | — | `k6-cloud` | :orange_circle: Scaffolded | +| k6 thresholds | — | `k6-thresholds` | :orange_circle: Scaffolded | +| k6 scenarios | — | `k6-scenarios` | :orange_circle: Scaffolded | +| Locust run | — | `locust-run` | :orange_circle: Scaffolded | +| Locust workers | — | `locust-workers` | :orange_circle: Scaffolded | +| Locust stats | — | `locust-stats` | :orange_circle: Scaffolded | +| Locust shapes | — | `locust-shapes` | :orange_circle: Scaffolded | +| Artillery run | — | `artillery-run` | :orange_circle: Scaffolded | +| Artillery reports | — | `artillery-reports` | :orange_circle: Scaffolded | +| Artillery scenarios | — | `artillery-scenarios` | :orange_circle: Scaffolded | +| Artillery config | — | `artillery-config` | :orange_circle: Scaffolded | +| Vegeta attack | — | `vegeta-attack` | :orange_circle: Scaffolded | +| Vegeta report | — | `vegeta-report` | :orange_circle: Scaffolded | +| Vegeta plot | — | `vegeta-plot` | :orange_circle: Scaffolded | +| Vegeta encode | — | `vegeta-encode` | :orange_circle: Scaffolded | + ### Round 397 — Cypress ext, Playwright ext, Selenium ext, Puppeteer/Appium ext | Feature | Emacs | jemacs | Status | --- a/src/jerboa-emacs/editor-extra-final.ss +++ b/src/jerboa-emacs/editor-extra-final.ss @@ -27626,3 +27626,44 @@ (def (cmd-appium-caps app) (let* ((echo (app-state-echo app))) (echo-message! echo "Appium: showing capabilities"))) + +;; Round 398 batch 2 — Locust ext, Artillery/Vegeta ext +(def (cmd-locust-stats app) + (let* ((echo (app-state-echo app))) + (echo-message! echo "Locust: showing statistics"))) + +(def (cmd-locust-shapes app) + (let* ((echo (app-state-echo app))) + (echo-message! echo "Locust: listing load shapes"))) + +(def (cmd-artillery-run app) + (let* ((echo (app-state-echo app))) + (echo-message! echo "Artillery: running test"))) + +(def (cmd-artillery-reports app) + (let* ((echo (app-state-echo app))) + (echo-message! echo "Artillery: listing reports"))) + +(def (cmd-artillery-scenarios app) + (let* ((echo (app-state-echo app))) + (echo-message! echo "Artillery: listing scenarios"))) + +(def (cmd-artillery-config app) + (let* ((echo (app-state-echo app))) + (echo-message! echo "Artillery: showing configuration"))) + +(def (cmd-vegeta-attack app) + (let* ((echo (app-state-echo app))) + (echo-message! echo "Vegeta: running attack"))) + +(def (cmd-vegeta-report app) + (let* ((echo (app-state-echo app))) + (echo-message! echo "Vegeta: generating report"))) + +(def (cmd-vegeta-plot app) + (let* ((echo (app-state-echo app))) + (echo-message! echo "Vegeta: plotting results"))) + +(def (cmd-vegeta-encode app) + (let* ((echo (app-state-echo app))) + (echo-message! echo "Vegeta: encoding targets"))) --- a/src/jerboa-emacs/editor-extra-modes.ss +++ b/src/jerboa-emacs/editor-extra-modes.ss @@ -28413,3 +28413,44 @@ (def (cmd-selenium-grid app) (let* ((echo (app-state-echo app))) (echo-message! echo "Selenium: managing grid"))) + +;; Round 398 batch 1 — Gatling ext, k6 ext +(def (cmd-gatling-run app) + (let* ((echo (app-state-echo app))) + (echo-message! echo "Gatling: running simulation"))) + +(def (cmd-gatling-reports app) + (let* ((echo (app-state-echo app))) + (echo-message! echo "Gatling: listing reports"))) + +(def (cmd-gatling-simulations app) + (let* ((echo (app-state-echo app))) + (echo-message! echo "Gatling: listing simulations"))) + +(def (cmd-gatling-recorder app) + (let* ((echo (app-state-echo app))) + (echo-message! echo "Gatling: starting recorder"))) + +(def (cmd-k6-run app) + (let* ((echo (app-state-echo app))) + (echo-message! echo "k6: running load test"))) + +(def (cmd-k6-cloud app) + (let* ((echo (app-state-echo app))) + (echo-message! echo "k6: running cloud test"))) + +(def (cmd-k6-thresholds app) + (let* ((echo (app-state-echo app))) + (echo-message! echo "k6: listing thresholds"))) + +(def (cmd-k6-scenarios app) + (let* ((echo (app-state-echo app))) + (echo-message! echo "k6: listing scenarios"))) + +(def (cmd-locust-run app) + (let* ((echo (app-state-echo app))) + (echo-message! echo "Locust: starting load test"))) + +(def (cmd-locust-workers app) + (let* ((echo (app-state-echo app))) + (echo-message! echo "Locust: listing workers"))) --- a/src/jerboa-emacs/editor-extra-regs2.ss +++ b/src/jerboa-emacs/editor-extra-regs2.ss @@ -9838,4 +9838,26 @@ (register-command! 'appium-devices cmd-appium-devices) (register-command! 'appium-sessions cmd-appium-sessions) (register-command! 'appium-caps cmd-appium-caps) + + ;; Round 398 — Gatling ext, k6 ext, Locust ext, Artillery/Vegeta ext + (register-command! 'gatling-run cmd-gatling-run) + (register-command! 'gatling-reports cmd-gatling-reports) + (register-command! 'gatling-simulations cmd-gatling-simulations) + (register-command! 'gatling-recorder cmd-gatling-recorder) + (register-command! 'k6-run cmd-k6-run) + (register-command! 'k6-cloud cmd-k6-cloud) + (register-command! 'k6-thresholds cmd-k6-thresholds) + (register-command! 'k6-scenarios cmd-k6-scenarios) + (register-command! 'locust-run cmd-locust-run) + (register-command! 'locust-workers cmd-locust-workers) + (register-command! 'locust-stats cmd-locust-stats) + (register-command! 'locust-shapes cmd-locust-shapes) + (register-command! 'artillery-run cmd-artillery-run) + (register-command! 'artillery-reports cmd-artillery-reports) + (register-command! 'artillery-scenarios cmd-artillery-scenarios) + (register-command! 'artillery-config cmd-artillery-config) + (register-command! 'vegeta-attack cmd-vegeta-attack) + (register-command! 'vegeta-report cmd-vegeta-report) + (register-command! 'vegeta-plot cmd-vegeta-plot) + (register-command! 'vegeta-encode cmd-vegeta-encode) )