Automating automated testing

Using Python and APIs to automate CI at Runscope

Dave Dash
4 min readSep 22, 2014

Runscope is a tool that let’s me inspect what’s going on when one service talks to another service over an API. I used this tool in the past to inspect interactions with Github Enterprise and various CI tools/services. So when Runscope told me they wanted to shore up their continuous integration, I jumped at the opportunity.

code → commit → test → build → deploy → monitor

Runscope uses a service oriented architecture (SOA). One of the pains with SOA is that for each service you need to think about the following: code → commit → test → build → deploy → monitor. In terms of setup this means:

  1. Writing code.
  2. Creating a new repository in source control.
  3. Creating a related CI task.
  4. Configuring deployment.
  5. Setting up monitoring.

So my assignment was to help automate some of this flow. When a new project is made in Github (their source control system), that a corresponding Jenkins job is created.

A Jenkins Job

Runscope engineers primarily write Python and Go. One standardization they made is that every Python build could run the same run_python.sh script. This script would run linting, nosetests and handle python packaging. It intelligently “sniffed” the project to determine what things needed to happen. This made all the Jenkins jobs uniform.

An alternative to a magic-build scripts, is makefiles. You can use a common entry point and abstract away whatever project specific tasks you might have. For example you can have this task in Python:

test:
pip install -qr requirements.txt
py.test tests/

You can do this in Go:

test:
go get ./...
go test

Then all your Jenkins jobs look like this:

make test

A script or a Makefile doesn’t matter, any type of standardization here will help.

Creating the Jobs

We ran across a fabulous tool, Jenkins Job Builder, that could take some YAML templates and turn them into Jenkins jobs. It had a fairly robust inheritance system that worked well for the Python projects, but fell short when it came to Go. The Go projects at Runscope all were unique in some way: some triggered other builds; some built releases; and some created artifacts.

The Runscope team also wanted each of their pull requests to be tested. So we setup a small service called Leeroy, which served as an intermediary between Github pull requests and Jenkins jobs. Leeroy had it’s own configuration needed for each Github repository. We decided that when Jenkins was testing pull requests we needed a separate set of notification rules. We didn’t want to clutter the Hipchat channels with each pull request. To handle this Leeroy talked to a separate job for pull requests.

I wrote a script that did three things:

  1. It queried Github for all the Go and Python projects at Runscope.
  2. It used Jinja 2 to generate config files for the Jenkins Job Builder to create two jobs: the standard “something new in master” job; and the pull request job that Leeroy uses.
  3. It generated a configuration for Leeroy to link repositories to jobs in Jenkins.

Handling the Go Projects

Go was difficult, because each job had some unique property. After an assessment I discovered that those unique properties fell into a few buckets:

  1. Each build had a fairly unique build script.
  2. Some jobs built releases.
  3. Some jobs uploaded artifacts to s3.
  4. Some jobs triggered other builds.

We did the following to handle this:

  1. We required each “Go” project to have a jenkins.sh file and defined what would normally go in a “Execute Shell” section of Jenkins.
  2. Any project that made a release needed a jenkins_release.sh file. If that file was present we would define the job as having a release build and run that script on success.
  3. We moved artifact uploads into the jenkins.sh script rather than defining them in Jenkins.
  4. We stored builds to be triggered in a jenkins.yml file.

By doing these four things I was able to still run a single command and build out the templates that the Jenkins Job Builder needed to create jobs in Jenkins. I also took advantage of Jinja2's rich templating features which let us do a few things that we couldn’t easily do with the Jenkins Job Builder alone.

Automating it all

With all the pieces in place we could automate this easily with a cron job that:

  1. Ran the custom script to create our job configurations.
  2. Run the Jenkins Job Builder to create or update.
  3. Restarted Leeroy as needed if there are new Github projects.

This ensured that all new jobs were getting tested before and after pull-requests got merged, without too much work on the service creator.

If you like companies that prioritize internal dev-tools, Runscope might be a fabulous fit. Additionally they make one of the best developer tools for working with APIs which came in quite handy. I create 4 or 5 buckets to keep track of the calls I was making.

If you don’t want to work at Runscope, but want to get your continuous integration in shape, get in touch with me.

@davedash.

--

--

Dave Dash

DadOps 24/7 and DevOps Consultant. Formerly @Pinterest and @Mozilla