-
Notifications
You must be signed in to change notification settings - Fork 25
Unit testing and E2E Testing
The ionic-quickstarter
project contains two types of tests:
- Unit tests implemented using Karma and Jasmine. The unit tests are in the test/unit folder.
- End-to-end (e2e) tests implemented using Protractor. The e2e tests are in the test/e2e folder.
For both types of tests (unit and e2e) we created only a very limited number of tests, these represent in no way a complete test suite for the app. The goal is just to show how to set up the tooling (Protractor, Karma etc) and to demonstrate some best practices for structuring the test code.
The project is set up for basic end to end (E2E) testing via Protractor. You can read more about Protractor here.
Make sure your machine has python installed. Type python in the command line you use for building, and if it is not found, please install python from python.org.
Note that you may also need to add python to your path, especially if you are installing on Windows and running from PowerShell.
You will also need the Java Runtime Environment. Web driver will prompt you to install it, if you don't have it already installed.
If you're on a Mac, make sure you install the JRE from Apple, not Oracle. See here: https://support.apple.com/kb/DL1572
The tests use Google Chrome by default. You can change what browser you use in the protractor.conf.js file, or just make sure you have the Chrome browser installed on the machine you are using to test.
Finally, you don't need to install Protractor globally. The provided Protractor configuration will install a local copy of Protractor, along with any necessary web driver plugins.
To run the e2e tests, you need a running instance of your app. By default, the e2e tests currently run against a locally hosted instance of your app i.e. at http://localhost:8100. This can be changed in the protractor.conf.js file.
A typical workflow to run the e2e tests would be to first run the app by calling:
ionic serve
Next, you might want to create a new shell instance (since ionic serve will take over the first shell that you used to serve your app). From the second shell, call:
npm run protractor
Protractor will run all the tests as referenced in protractor.conf.js and will print the results to the console. You will see the browser launch (chrome by default), and all your test scenarios played out just like a user would by interacting with the browser.
The e2e tests are in the test/e2e folder. The recommended approach to write e2e tests is to organize them by user scenario, rather than modules in your code. The e2e tests should emulate user behavior for your most critical scenarios.
Under the test/e2e folder, .
- https://docs.angularjs.org/guide/unit-testing
- http://gonehybrid.com/how-to-write-automated-tests-for-your-ionic-app-part-1/
- http://gonehybrid.com/how-to-write-automated-tests-for-your-ionic-app-part-2/
- http://www.sitepoint.com/unit-testing-angularjs-services-controllers-providers/
- http://www.syntaxsuccess.com/viewarticle/comprehensive-guide-to-unit-testing-in-angularjs
- http://angular.github.io/protractor/#/tutorial
- http://learn.ionicframework.com/formulas/Protractor/
- http://gonehybrid.com/how-to-write-automated-tests-for-your-ionic-app-part-3/
- https://www.thoughtworks.com/insights/blog/using-page-objects-overcome-protractors-shortcomings
- http://moduscreate.com/protractor-and-page-objects/ 6 http://engineering.wingify.com/posts/angularapp-e2e-testing-with-protractor/
- http://stackoverflow.com/questions/31662828/how-to-access-chromedriver-logs-for-protractor-test/31662935
- https://spin.atomicobject.com/2014/12/17/asynchronous-testing-protractor-angular/
- http://pavelbogomolenko.github.io/dry-principles-with-protractor.html
- http://bridge360blog.com/2015/05/05/improving-protractor-tests-using-shared-functions-and-promises/