Skip to content
This repository has been archived by the owner on Jun 28, 2021. It is now read-only.

functional tests #401

Merged
merged 8 commits into from
Jul 25, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions .babelrc
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,6 @@
"transform-react-display-name"
],
"env": {
"test": {
"plugins": [
"rewire"
]
},
"development": {
"plugins": [
"typecheck"
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

we don't have rewire in package.json.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

+1

Expand Down
4 changes: 3 additions & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,8 @@
"webpackIsomorphicTools": true,
ga: true,
Raven: true,
mixpanel: true
mixpanel: true,
"expect": true,
"browser": true
}
}
11 changes: 0 additions & 11 deletions nightwatch.js

This file was deleted.

78 changes: 0 additions & 78 deletions nightwatch.json

This file was deleted.

13 changes: 10 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,15 @@
"private": false,
"scripts": {
"test": "npm run test:dev:unit",
"test:ci:unit": "./node_modules/karma/bin/karma start --browsers PhantomJS --single-run; npm run test:ci:lint",
"test:ci:functional": "BROWSER=phantomjs bash tests/functional/test.sh start-ci",
"posttest:ci:functional": "bash tests/functional/test.sh stop",
"test:ci:unit": "karma start --browsers PhantomJS --single-run; npm run test:ci:lint",
"test:ci:functional": "node ./nightwatch.js -c ./nightwatch.json -e production",
"test:dev:unit": "karma start",
"test:dev:functional": "node ./nightwatch.js -c ./nightwatch.json",
"test:ci:lint": "eslint ./src/**/*.js",
"test:dev:unit": "./node_modules/karma/bin/karma start",
"test:dev:functional": "BROWSER=chrome bash tests/functional/test.sh start",
"posttest:dev:functional": "bash tests/functional/test.sh stop",
"test:dev:lint": "eslint ./src/scripts/**/*.js",
"test:stylelint": "stylelint './src/**/*.scss' --config webpack/.stylelintrc",
"dev": "node webpack/dev-server.js & PORT=8000 node start.js",
Expand Down Expand Up @@ -135,9 +139,9 @@
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.6.0",
"mocha": "^2.2.5",
"nightwatch": "^0.8.6",
"nodemon": "^1.7.1",
"path": "^0.11.14",
"phantomjs": "^1.9.20",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

probably should use phantomjs 2

"phantomjs-polyfill": "0.0.1",
"piping": "^0.3.0",
"pre-commit": "^1.1.3",
Expand All @@ -152,6 +156,9 @@
"sinon": "^1.15.3",
"sinon-chai": "^2.8.0",
"stylelint-webpack-plugin": "^0.2.0",
"wdio-mocha-framework": "^0.3.7",
"wdio-spec-reporter": "0.0.3",
"webdriverio": "4.2.1",
"webpack-dev-server": "^1.6.5"
},
"pre-commit": [
Expand Down
1 change: 0 additions & 1 deletion tests/functional/assertions/default.js

This file was deleted.

1 change: 0 additions & 1 deletion tests/functional/commands/default.js

This file was deleted.

16 changes: 16 additions & 0 deletions tests/functional/pageobjects/BasePage.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
export default class BasePage {
constructor(selectors) {
this.selectors = Object.assign(selectors, {
SURAH_PAGE_SURAH_NAME: '.surah-body .navbar-text.surah-name'
});
}

getSurahName() {
return browser.getText(this.selectors.SURAH_PAGE_SURAH_NAME);
}

goHome() {
browser.url('http://quran.com');
}

};
33 changes: 33 additions & 0 deletions tests/functional/pageobjects/HomePage.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
import BasePage from './BasePage';
import selectors from './selectors';

export default class HomePage extends BasePage {
constructor() {
super(selectors);
this.selectors = selectors;
}

getLandingText() {
const landingText = browser.getText(this.selectors.LANDING_TEXT);
return landingText;
}

getNumberOfSurahs() {
const surahs = browser.elements(this.selectors.SURAH_LIST);
return surahs.value.length;
}

searchForSurahAndGoToSurahPage(searchQuery) {
browser.setValue(this.selectors.SEARCH_FORM, searchQuery);
browser.waitForVisible(this.selectors.SEARCH_RESULT_LIST);
browser.click(this.selectors.SEARCH_RESULT_LIST);
return this.getSurahName();
}

clickOntheSurahByNumber(number) {
const surahs = browser.elements('.row .col-xs-7 span');
const surahID = surahs.value[number].ELEMENT;
browser.elementIdClick(surahID);
return browser.getUrl();
}
}
10 changes: 10 additions & 0 deletions tests/functional/pageobjects/selectors.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
export default {
LANDING_TEXT: 'h4.title',
NEXT: 'a[data-direction="next"]',
PREVIOUS: 'a[data-direction="previous"]',
SURAH_LIST: '.row .col-md-4 li',
SEARCH_FORM: '.searchinput input',
SEARCH_RESULT_LIST: '.searchinput a',
SURAH_PAGE: '.surah-body .surah-title',
SURAH_NAME: '.navbar-text.surah-name'
};
20 changes: 0 additions & 20 deletions tests/functional/pages/index.js

This file was deleted.

27 changes: 27 additions & 0 deletions tests/functional/specs/HomePageTests.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
import Homepage from '../pageobjects/HomePage';
const homePage = new Homepage(browser);

describe('Home Page', () => {

it('Should Have English Heading', () => {
homePage.goHome();
const text = homePage.getLandingText();
expect(text).to.equal('THE NOBLE QUR\'AN');
});

it('Should have 114 surahs', () => {
const numberSurahs = homePage.getNumberOfSurahs();
expect(numberSurahs).to.equal(114);
});

it('Should search for surah, click the first result item and land on the surah page', () => {
const surahName = homePage.searchForSurahAndGoToSurahPage('ya-sin');
expect(surahName).to.equal('YA-SIN (YA SIN) - سورة يس');
});

it('Should click a surah from the list of surahs and land on the surah page', () => {
homePage.goHome();
const url = homePage.clickOntheSurahByNumber(1);
expect(url).to.contain('/1');
});
});
32 changes: 0 additions & 32 deletions tests/functional/specs/Index.spec.js

This file was deleted.

26 changes: 26 additions & 0 deletions tests/functional/test.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@

#!/bin/bash
if [ "$1" == 'stop' ]; then
echo "Stopping selenium server..."
pid=`ps -eo pid,args | grep selenium-server-standalone | grep -v grep | cut -c1-6`
echo $pid
kill $pid
elif [ "$1" == 'start' ]; then
echo "Starting selenium server..."
PATH="./node_modules/phantomjs/bin:$PATH" java -jar ./node_modules/selenium-server/lib/runner/selenium-server-standalone-2.53.0.jar &> /dev/null &
sleep 2
BROWSERNAME=$BROWSER ./node_modules/.bin/wdio ./tests/functional/wdio.conf.js
elif [ "$1" == 'start-ci' ]; then
echo "[CI] Starting selenium server..."

if [ ! -f selenium-server-standalone-2.53.1.jar ]; then
echo "selenium jar File not found!"
wget https://selenium-release.storage.googleapis.com/2.53/selenium-server-standalone-2.53.1.jar
fi

PATH="./node_modules/phantomjs/bin:$PATH" java -jar selenium-server-standalone-2.53.1.jar &> /dev/null &
sleep 5
BROWSERNAME=$BROWSER ./node_modules/.bin/wdio ./tests/functional/wdio.conf.js
else
echo "Nothing to do!"
fi
44 changes: 44 additions & 0 deletions tests/functional/wdio.conf.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
const browser = process.env.BROWSERNAME || 'phantomjs';

exports.config = {

maxInstances: 4,
sync: true,
specs: [
'./tests/functional/specs/**/*.js'
],
exclude: [
],

capabilities: [
{
browserName: browser
}
],

logLevel: 'error',
coloredLogs: true,
screenshotPath: './errorShots/',

waitforTimeout: 10000,
framework: 'mocha',
reporters: ['dot', 'spec'],
onPrepare: () => {
},
before: () => {

const chai = require('chai'); // eslint-disable-line global-require
global.chai = chai;
global.expect = chai.expect;

process.on('unhandledRejection', (e) => {
console.error(e);
if (e.stack) {
console.error(e.stack);
}
});

require('babel-core/register'); // eslint-disable-line global-require
require('babel-polyfill'); // eslint-disable-line global-require
}
};