Jasmine Test Cases-Part 1: Unit testing JavaScript in Phonegap Application

Table of contents
Reading Time: 3 minutes

For PhoneGap applications, we can write unit tests that evaluate our JavaScript logic to verify proper behavior in our apps using a number of tools, but these only test JS execution and logic.

In this blog, I discuss some of the basics for writing JavaScript unit tests using Jasmine. Then, you can apply that information to writing and running JavaScript unit tests with Jasmine.

What is Jasmine:

Jasmine is a behavior-driven development (BDD) JavaScript testing framework. Pivotal Labs maintains it and makes it available on GitHub under the MIT license. Jasmine allows tests to be written independent of the DOM or other JavaScript frameworks. And it has a clean, obvious syntax so that you can easily write tests. Jasmine is an open source testing framework for JavaScript. It aims to run on any JavaScript-enabled platform, to not intrude on the application nor the IDE, and to have easy-to-read syntax.
Jasmine has a number of other features, such as custom matchers, spies, and support for asynchronous specifications.

Setting up jasmine in Phonegap Application:

Clone the project from here or download the zip, and unpacked in some folder you will find a folder called spec and  a file called spec.html. This is the file containing everything we need to setup Jasmine and get started with testing.
Let’s have a closer look:

This basically imports Jasmine itself with relative css to make the result’s report looking prettier. It includes all required jasmine js file, that needs to test jquery and html code.

Then we find the files containing the code we want to test, which placed in the js folder:

And finally the tests are imported

Following the head section, in the body you will just find few lines, responsible to actually run the rest:

Jasmine Test Syntax:

To create a suite of tests we basically need 2 functions:
describe(): groups tests together providing also setup and teardown hooks.
it(): contains the test itself

Suites: describe Tests:

A test suite begins with a call to the global Jasmine function describe with two parameters: a string and a function. The string is a name or title for a spec suite – usually what is under test. The function is a block of code that implements the suite.

Specs:

Specs are defined by calling the global Jasmine function it, which, like describe takes a string and a function. The string is a title for this spec and the function is the spec, or test. A spec contains one or more expectations that test the state of the code under test.

Expectation:

An expectation in Jasmine is an assertion that can be either true or false. A spec with all true expectations is a passing spec. A spec with one or more expectations that evaluate to false is a failing spec. Expectations are built with the function expect which takes a value, called the actual. It is chained with a Matcher function, which takes the expected value.

Syntax:

So let’s write a simple unit test for a function validating an email address. Let’s write the tests first.
Edit a file under the spec folder called index.js, with:

As you can see I used one of the built in expectations called toBe() with the relative not.toBe(), which is the logical not. It checks the return value from the isEmail_valid() function.

And finally load spec.html and see the results:

Selection_001

Just for curiosity let’s change the second test to:

Now, the second test should fail:

Selection_002

And in fact it does!

To know more about jasmine click here.

2 thoughts on “Jasmine Test Cases-Part 1: Unit testing JavaScript in Phonegap Application5 min read

Comments are closed.

Discover more from Knoldus Blogs

Subscribe now to keep reading and get access to the full archive.

Continue reading