Skip to content

Latest commit

 

History

History
37 lines (24 loc) · 1.88 KB

notes_on_resources.md

File metadata and controls

37 lines (24 loc) · 1.88 KB

This is information mainly from Arlin's colleague Casey, with a few bits contributed by Matt Yoder.

Cucumber

For a fun way to experiment, here’s a minimal version that can be installed with Node.js https://github.com/cucumber/microcuke

Browser automation

  • Selenium - browser functional tests

Some various monitoring tools:

I have heard of OpenNMS, but confess that’s about as far as my knowledge of it goes:

And I’ve never heard of either Icenga or Sensu until today, but in some ways they may be other options as well. Sensu seems to be good at monitoring and notification, but I didn’t see capabilities to fire simple scripts.

Continuous integration

There are also continuous integration (CI) tools which perform the act of building and running unit tests immediately upon any commit. This can also take the place of using something like cucumber, but can entail a larger learning curve. Examples of these might be

In the latter case, you can implement TravisCI for any GitHub project, public or private, by registering with TravisCI, and placing a .travis.yml file which configures the build steps into your root.

Matt adds:

  • CircleCI alternative to TravisCI, with higher learning curve but ability to SSH into test build