0.0
Repository is archived
No commit activity in last 3 years
No release in over 3 years
A flexible means of configuration for cucumber tests.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.5
~> 0.7
~> 1.3
~> 10.1
~> 2.14
 Project Readme

This gem is being deprecated in favor of Accessible

No further development will be carried out on the TestConfig gem. Please consider migrating to the Accessible gem.


TestConfig

Gem Version Build Status Coverage Status

TestConfig provides flexible cross-environment configuration management for your test suites by allowing you to store configuration data in YAML files and accessing that data through methods on the TestConfig module matching the desired key.

Installation

Add this line to your application's Gemfile:

gem 'test_config'

And then execute:

$ bundle

Or install it yourself as:

$ gem install test_config

Then be sure to require 'test_config' in your project.

Usage

By default, TestConfig looks in a config/environments directory to load a default.yml file containing configuration data. It also loads and merges in any additional configuration data from files listed in a TEST_ENV environment variable, if present. You can then access this data in your tests by calling methods on the TestConfig module matching the desired key (i.e. TestConfig.base_url).

Each of these names and locations are options that can be configured.

Example

Let's say you are testing a web application and you want to keep certain test data in configuration files that you can access from your tests, thus allowing your tests to run more seamlessly in different environments. If we are using TestConfig's default settings, we would first create a file named default.yml with the following data and place it in config/environments:

base_url: http://www.dev.example.com
username: testuser
password: Pa55w0rd

At this point, you can access this data in your tests by calling methods on the TestConfig module that match your keys*.

*Note: For this reason, you should name your keys according to the same syntactic rules as those for method names in Ruby. (although if you really need to, you can use the #send method to get around this: TestConfig.send('key-name-with-dashes').

TestConfig.base_url # => "http://www.dev.example.com"
TestConfig.username # => "testuser"
TestConfig.password # => "Pa55w0rd"

If you aren't sure a key exists, you can check if it exists or even provide default values like so:

TestConfig.has_key?('nonexistent_key') # => false
TestConfig.nonexistent_key(:or => "my default value") # => "my default value"

Now, in order to run tests on your local machine with an updated base_url, you can create another file (let's call it local.yml) in your config/environments directory with the following:

base_url: http://localhost:1234

You'd then run tests against your local machine with a TEST_ENV environment variable set to local.yml. The data from that file will get merged in with the data from default.yml, giving you the same configuration data as before, but with the base_url updated for your local machine:

TestConfig.base_url # => "http://localhost:1234"
TestConfig.username # => "testuser"
TestConfig.password # => "Pa55w0rd"

This works particularly well with Cucumber since you can set this environment variable in your cucumber.yml profiles for each environment:

default: --format pretty
local: TEST_ENV=local.yml --format pretty
joes_machine: TEST_ENV=joes_machine.yml --format pretty
ci: TEST_ENV=ci.yml --format pretty

Configuration Options

TestConfig is itself, configurable by calling the configure! method with any of the optional parameters found in the example below:

TestConfig.configure!(
    :source_directory => 'my/custom/location',
    :base_config      => 'my_base_config.yml',
    :env_variable     => 'MY_TEST_ENV_VAR'
)

Alternatively, you can set these options by placing a test_config_options.yml file in the root of your project. It might look like this:

source_directory: my/custom/location
base_config: my_base_config.yml
env_variable: MY_TEST_ENV_VAR

Here is a breakdown of each option:

:source_directory

  • Tells TestConfig where to find your configuration files (starting from the root of your project).
  • Set to config/environments by default.

:base_config

  • Tells TestConfig which file from your source_directory to use for "base configuration" (i.e. configuration data common to all test environments).
  • Set to default.yml by default.
  • Can be set to nil to prevent TestConfig from looking for a base configuration file.

:env_variable

  • Tells TestConfig which environment variable (if present) to use for determining which additional configuration files to load. The environment variable should contain a filename (or comma separated list of multiple filenames) to load from the :source_directory and merge in with the data from your base_config.
  • Set to TEST_ENV by default.
  • Can be set to nil to prevent TestConfig from looking for additional configuration files.

TODO

  • Add support for automatically loading files according to hostname

Contributing

  1. Fork it ( https://github.com/saclark/test_config/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request