Symbiont

Build Status Gem Version Dependency Status Code Climate

Symbiont provides a semantic domain-specific language that can be used to construct a fluent interface for test execution libraries. The initial focus will be on using the watir-webdriver API as the underlying driver library.

Gitter chat endorse

What is this?

Symbiont is a test solution micro-framework.

A micro-framework provides a focused solution, which means it does one thing and one thing only, instead of trying to solve each and every problem. While doing that one thing it does well, the micro-framework should do it while being expressive yet concise. Further, it should be able to serve as one component of your own custom modularized framework, allowing you to compose solutions. To that end, you can use Symbiont directly as an automated test library or you can use it with other tools such as RSpec, Cucumber, or my own Specify tool.

In terms of what Symbiont does, it provides a way to describe your application in terms of activity and page definitions. Those definitions can then be referenced as part of the DSL that Symbiont provides. This DSL can be utilized in the context of the Watir-WebDriver test library.

The DSL provides a fluent interface that can be used for constructing test execution logic. This fluent interface promotes the idea of compressibility of your test logic, allowing for more factoring, more reuse, and less repetition.

Installation

To get the latest stable release, add this line to your application's Gemfile:

gem 'symbiont'

To get the latest code:

gem 'symbiont', git: https://github.com/jnyman/symbiont

After doing one of the above, execute the following command:

$ bundle

You can also install Symbiont just as you would any other gem:

$ gem install symbiont

Usage

To learn how to use the framework, you can check out my blog posts on Symbiont and for the most up to date information, you can check out the Symbiont Wiki.

You can check out the Symbiont test script for an idea of how the library can be interacted with. Do note that the test script requires a local copy of Symbiote to be running. To execute the test script:

$ rake test:script

Why call it Symbiont?

If you are a comic book reader, particularly in the Marvel Universe, you will know of the Klyntar, a race of symbiotic creatures. While those creatures have been a mixed bag in terms of good and evil, they are symbionts, which are organisms that exist in a partnership with something else. The terms comes from the Greek symbiōtēs ("companion"), from an earlier term symbioun ("to live together").

A "symbiont" is an organism in a symbiotic (mutually beneficial) relationship. Some of these relationships are called obligate, which means that both organisms need each other in order to survive. Other such relationships are called facultative, meaning that both organisms don't strictly need each other to survive, but they stand a better chance if they do.

Symbiotic relationships include associations in which one organism lives on another organism -- ectosymbiosis -- or where one organism lives inside the other -- endosymbiosis.

So, with that bit of context, think of this library as a facultative, endosymbiotic organism that lives within your test logic, giving it strength and sustenance.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/jnyman/symbiont. The testing ecosystem of Ruby is very large and this project is intended to be a welcoming arena for collaboration on yet another testing tool. As such, contributors are very much welcome but are expected to adhere to the Contributor Covenant code of conduct.

To contribute to Symbiont:

  1. Fork the project.
  2. Create your feature branch. (git checkout -b my-new-feature)
  3. Commit your changes. (git commit -am 'new feature')
  4. Push the branch. (git push origin my-new-feature)
  5. Create a new pull request.

Author

License

Symbiont is distributed under the MIT license. See the LICENSE file for details.

Credits

Thanks to Jeff Morgan (http://www.cheezyworld.com/) for his page-object gem, Alister Scott (http://watirmelon.com) for his watir-page-helper gem, Alex Rodionov (http://p0deje.blogspot.com/) for his watirsome gem, and Nat Ritmeyer (http://www.natritmeyer.com/) for his SitePrism gem.