Last updated

Testing $HOME with Cucumber and Aruba

Cucumber and Aruba are awesome tools to write acceptance tests for your command line application. The allow you to do things like this:

1Scenario: Exit with 0 when no examples are run
2    Given a file named "a_no_examples_spec.rb" with:
3        """ruby
4        """
5    When I run `rspec a_no_examples_spec.rb`
6    Then the exit status should be 0
7    And the output should contain "0 examples"

This example was taken from rspec-core.

Aruba basically does three things for you:

  • Create and inspect files and directories
  • Run commands
  • Inspect output and exit status

The problem

Now, if you are writing a CLI that interacts with a configuration file in the user’s home directory, you’d write a cucumber like this:

1Scenario: use .my-app configuration
2    Given a file named "~/.my-app" with:
3        """
4        awesome_enabled: true
5        """
6    When I run `my-app`
7    Then the output should contain "AWESOME"

But how does your app and Aruba differentiate between this generated test file and your actual configration file in your home directory? It doens’t.

The answer

The solution is quite easy and elegant, in your Before set the $HOME environment variable to a custom location inside the tmp/aruba directory.

In features/support/env.rb:

1Before do
2  set_env 'HOME', File.expand_path(File.join(current_dir, 'home'))
3  FileUtils.mkdir_p ENV['HOME']
4end

This will set $HOME to tmp/aruba/home in the context of your cucumbers (and execute binary). current_dir automatically points to the right location for the aruba temporary directory.