3 releases
0.1.2 | Mar 8, 2020 |
---|---|
0.1.1 | Mar 8, 2020 |
0.1.0 | Mar 8, 2020 |
#537 in Cargo plugins
27KB
576 lines
cargo-ngrok
Use ngrok traces to drive your development process.
This is heavily inspired by Dark's concept of "Trace Driven Development", as described at https://darklang.github.io/docs/trace-driven-development.
It's is only a sketch at the moment, but this is what I'm expecting the mvp command-line to look like:
USAGE:
cargo ngrok <SUBCOMMAND>
FLAGS:
-h, --help Prints help information
-V, --version Prints version information
SUBCOMMANDS:
404s list requests for turning into new handlers
500s list requests for turning into regression tests
develop run your project with tracing (TODO)
help Prints this message or the help of the given subcommand(s)
new-handler make a new route handler from the latest 404 error
new-test make a regression test from the latest 500 error
replay-404 replay the latest 404 error (TODO)
replay-500 replay the latest 500 error (TODO)
The following subcommands are forwarded to ngrok for convenience:
authtoken
credits
http
start
tcp
tls
update
version
help
The MVP will only support generating actix-web request handlers of the form:
#[get("/")]
async fn no_params() -> &'static str {
"Hello world!\r\n"
}
Hacking
Progress towards MVP can be tracked at https://github.com/alsuren/cargo-ngrok/projects/1
I'm still trying to decide what to do after MVP. If you have any suggestions, please comment on https://github.com/alsuren/cargo-ngrok/issues/2 or poke me on gitter. Alternatively, just hack your ideas up and send me patches. I'm reasonably open to the idea of giving people merge permissions if they're enthusiastic about the project.
In my current development workflow, I have the following tabs open:
~/src/actix/examples/template_yarte$ cargo watch -x test -x run
- Run the tests whenever anything changes
- When they pass, bring up the webserver until we next make a change (it's possible to do this with less downtime if you need).
$ ngrok http 8080
- Bring up the tunnel, and point it at the webserver.
$ curl https://xyz.ngrok.io/whatever
to cause a 404 error.~/src/cargo-ngrok$ cargo watch -x help -x fmt -x test -x build
- watch the cargo-ngrok repo and test/build it
-x help
adds a block of grey text, so you can tell where one set of compiler output stops and the next starts.- tests must pass before I make a new cargo-ngrok debug binary (this is useful for the below step).
~/src/actix/examples/template_yarte$ watchexec --no-ignore --verbose --watch ~/src/cargo-ngrok/target/debug/cargo-ngrok -- "git stash && cargo ngrok new-handler && cargo fmt && GIT_PAGER=cat git diff && cargo test"
- whenever I have a new cargo-ngrok build (from the previous step):
- clean the working directory
- make a new skeleton
/whatever
- show the diff and run the tests.
- Note that this only works because I have symlinked ~/src/cargo-ngrok/target/debug/cargo-ngrok into my $PATH.
- whenever I have a new cargo-ngrok build (from the previous step):
I find that this allows me to prototype pretty quickly. I have also been trying out cargo-fixeq
, which is why some of my tests jump through hoops to let the second assert_eq!()
argument be a string literal.
Dependencies
~11–16MB
~303K SLoC