Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/seanhamlin/presto-smoke-test
https://github.com/seanhamlin/presto-smoke-test
Last synced: 12 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/seanhamlin/presto-smoke-test
- Owner: seanhamlin
- Created: 2016-06-04T10:29:16.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-06-05T18:04:57.000Z (over 8 years ago)
- Last Synced: 2024-11-07T22:06:29.799Z (2 months ago)
- Language: JavaScript
- Size: 267 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Presto smoke tests
General smoke tests for the www.presto.com.au site. The idea is to reduce manual effort by automating these checks as much as we can.
## Installation
First you will need to install PhantomJS, the [2.1.1 release](http://phantomjs.org/download.html) (or newer) is preferred. Once you have downloaded the binary, symlink this to
/usr/local/bin/phantomjs
.Next is CasperJS, you can git clone this repo
```
git clone https://github.com/n1k0/casperjs.git
git checkout 1.1.1
```Then symlink the bin/casperjs script to
/usr/local/bin/casperjs
.You can verify this works by running:
```
casperjs --version
phantomjs --version
```From anywhere (as these should now be on your path).
## Run the tests
This is simple.
```
./run.sh
```You can also test the TEST site instance with
```
./run.sh -e=TEST
```CasperJS will report success or failure at the end of the test run. Tests can take upwards of 1 minute to run (depending on site speed).
## Debug
You can run the script with an optional parameter to get CasperJS debug output.
```
./run.sh -v
```## Example output
![Example output from CasperJS](images/example-run.png)
## Read more
I wrote a [blog post](http://www.pixelite.co.nz/article/starter-regression-test-suite-powered-by-casperjs/) on this framework, where I attempt to explain some of the features of the testing framework and why you might want to use it.