amber-spec
System Test Framework
A Crystal library to perform system and controller tests for Amber Web Applications.
System Testing is a level of the software testing where a complete and integrated software is tested. The purpose of a system test is to evaluate the system’s compliance with the specified requirements.
When is it performed?
System Testing is performed after Integration Testing and before Acceptance Testing.
Installation
Add this to your application's shard.yml
:
dependencies:
amber_spec:
github: amberframework/amber-spec
Usage
Before running your tests ensure you have installed the chromedriver in your system path
For MacOS you can install the driver using Homebrew with the following command:
brew install chromedriver
This will install the chrome driver on the system path /usr/local/bin/chromedriver
If you're running in a different OS such a Linux you can specify the chromedriver path as such
# spec/spec_helper.cr
require "amber"
require "amber_spec"
module SystemTest
DRIVER = :chrome
PATH = "/usr/local/bin/chromedriver"
end
Writing SystemTests
require "spec_helper"
class SomeFeatureSpec < Spec::SystemTestCase
describe "Some Feature test" do
it "works" do
visit "http://crystal-lang.org/api"
fill "", "Client", "search"
types_list = page.find_element(:id, "types-list")
types = types_list.find_elements(:css, "li:not([class~='hide'])")
types.size.should eq 512
end
end
end
Run your crystal spec
crystal spec
Development
- [ ] Add support for other webdrivers
- [ ] Add more dsl methods similar to https://gist.github.com/zhengjia/428105
- [ ] Add support for Chrome webdriver Desired Capabilities
- [ ] Add support for headless chrome
- [ ] Make it more configurable
Contributing
- Fork it ( https://github.com/amberframework/amber-spec/fork )
- Create your feature branch (git checkout -b my-new-feature)
- Commit your changes (git commit -am 'Add some feature')
- Push to the branch (git push origin my-new-feature)
- Create a new Pull Request
Contributors
amber-spec
- 0
- 0
- 0
- 0
- 1
- about 7 years ago
- October 28, 2017
MIT License
Fri, 22 Nov 2024 07:10:40 GMT