NativeScript Testing: Unit Testing

ns-road-signsI got to give a talk on NativeScript testing to a great group of people at NativeScript Developer Days.  20160920_190247Despite my silly technical problems at the beginning, we managed to get back on track and I was able to present all the critical information that was needed to get everyone up and running.  I did manage to miss my last slide; so I will make sure to have all that information at the end of this post.

For those who are interested in doing testing and weren't there; or those who were in the talk, and just want to get a quick refresh, or if you just prefer the information written down; then this set of blog posts is for you.   I plan on doing a multi-part series on this as I want to cover what I did in my talk in the first two blog posts; but then expand the series to show Angular Native unit testing, how to unit test controls, and how to write unit tests for the NativeScript core.

You can view the #NSDevDay video here .  You can download my slide deck from the talk here.  And you can download the entire app that I wrote for my talk, including all the tests from here.

The posts currently planned in this series are:

Unit Testing

So our first type of testing we will discuss is Unit testing.   Unit testing, for those of you that are un-aware of what it is -- it allows you to take a part of your code (typically a class or module) and you test it.  The best way is to treat it like a black box.  You don't care how it is implemented internally; you only care about the interface it exposes (i.e. inputs and the results).  By treating it as a black box; this allows you to re-implement/rewrite/refactor/fix it or do any other internal things to the class without the rest of your real or test code caring about the actual internal implementation.  Because your class is self contained it makes your code a lot more de-coupled and stand alone.  This typically means the code is better engineered and more maintainable.  In a nutshell, unit testing, is basically throwing as many different types of inputs and then verifying all the outputs and/or execution of your class is correct.

Now some people like to develop the tests before the code; this way they think of the scenarios that they need to handle; create all the tests (which of course at this point will all fail) and then implement the code.   Others build the code and build the tests along side the code, or build them after the code is complete.   There are pro's and con's for all sides; and that is really a whole different blog post.   In my opinion it is better to just make sure you do it; not the when of doing it.  One other recommendation is that when you get a bug report; you write a test for it. This way once you fix it; then in the future that specific bug will never happen again as your tests will always be checking for it.  Remember the idea is to test for everything you can think of, if a bug slipped through -- that means you failed to test everything and so by adding those "bug" tests, now hopefully you are actually testing everything the class can do...

The really cool thing is NativeScript actually has built in unit testing.   The neat thing about the built in unit testing, is it actually runs fully inside your NativeScript application.   This allows you to test anything that you have in your application including any added plugins, or custom code.   To install it, you just do tns test init.  This will ask you which testing framework to use and will install it.   I prefer using Mocha, and so the tests examples will all be mocha based; but again the framework you use is your choice.   One thing to note is that the assert functionality is actually provided by the Chia library in each of the testing frameworks supported by NativeScript.  If you really prefer a different assert library there are ways you can change it, but that is out side of the scope of this blog post.

For all your unit tests in NativeScript, they are all located in the /app/tests folder.  To then run all your cool tests  you will type tns test android or tns test ios.  TNS will then build your app and launch it in test mode.   Once each test completes; your console will tell you which tests passed/failed and then finally how many passed/failed like this.

NativeScript / 19 (4.4.4; Samsung Galaxy S5 - 4.4.4 - API 19): Executed 0 of 6 SUCCESS (0 secs / 0 secs)
NativeScript / 19 (4.4.4; Samsung Galaxy S5 - 4.4.4 - API 19): Executed 1 of 6 SUCCESS (0 secs / 0.005 secs)
NativeScript / 19 (4.4.4; Samsung Galaxy S5 - 4.4.4 - API 19): Executed 2 of 6 SUCCESS (0 secs / 0.007 secs)
NativeScript / 19 (4.4.4; Samsung Galaxy S5 - 4.4.4 - API 19): Executed 3 of 6 SUCCESS (0 secs / 0.008 secs)
NativeScript / 19 (4.4.4; Samsung Galaxy S5 - 4.4.4 - API 19): Executed 4 of 6 SUCCESS (0 secs / 0.009 secs)
NativeScript / 19 (4.4.4; Samsung Galaxy S5 - 4.4.4 - API 19): Executed 5 of 6 SUCCESS (0 secs / 0.083 secs)
NativeScript / 19 (4.4.4; Samsung Galaxy S5 - 4.4.4 - API 19): Executed 6 of 6 SUCCESS (0 secs / 0.085 secs)
NativeScript / 19 (4.4.4; Samsung Galaxy S5 - 4.4.4 - API 19): Executed 6 of 6 SUCCESS (0.217 secs / 0.089 secs

Lets get to the actual creating of tests in Mocha.  In my sample carder app; I provided a sample test file. So lets look at the unit test file I provided. The file is located /app/test/carderUnitTest.js.  The first thing you will see is that I include the class I plan on testing.

var cards = require('../cards.js');

Pretty hard to test it, without requiring it.   So in case it isn't obvious you still need to require the file(s) that contain any plugins/classes/module you need to test.

Then the next part of the code you will see is;

describe('Cards', function() {
    describe("current card", function() { 
        it ('should return ace of spades', function() {

The first line of this, we use the describe command to give the test a name, this allows you to know which test group passed or failed.  You can also nest describe's inside of describe's to allow you to have sub-groups of tests.   Finally you will see the it command, which is the actual test. You can have as many it's as you need in a group to test the full functionality.  So walking specifically through this test; we are saying the main test group is Cards (I name it after the class I'm testing); the following describe is I'm testing functionality I'm testing the current card function; and finally what my expectation of my test, which in this case is that it should return ace of spade card.

Then next we add our add my actual test code;

// Reset Card deck to known state
cards.resetDeck();
            
// The get "Current Card" function
var result = cards.getCurrentCard();
            
// My Expectations, that it should be
// a Ace of Spades on a reset card deck
assert.equal(result.suit, "Spade"); 
assert.equal(result.value, "Ace");

If either of the last two lines are false, then the test will fail and it will then mark this test as a failure in the log.

As you can see creating this test was fairly simple; Reset deck, grab the card and then verify it.  If you scroll down in the test file to the end of it; you will see the random cards test.  As you can see that test is a bit more complex.  Your tests can be as simple or complex as you need.  Typically the simpler your tests are the better, as then it is less likely that your test is actually the broken part of the code if it fails.

One other feature of Mocha is you can actually do ASYNC tests; so if your code is promise or callback based; you can also test it.  By doing this:

it ("Test promise", function(done) {
  call().some().cool().func()
  .then(done).catch(function() { done(false); });
});

// or

it ("test callback", function(done) {
  someFunc(function(err, results) {
     if (results) done()
     else done(false);
  }
});

Notice in the it function, it has a done parameter now.  The done() function is passed in for you to call when the async code has completed.  The mocha unit test detects if you tell it to have a done parameter and will switch that test to be fully async.

Note: If you are using my NativeScript-LiveEdit plugin, the watcher has had the ability to start these tests instantly on Android (Without having to use the slow `tns test android` command) for quite some time.  So anytime you change any of the /app/tests/ files; it will automatically launch the tests and you will see the results almost immediately.  However, I have recently added a couple new features to the watcher; you can hit inside the watcher window a "t" to start testing immediately; or the "m" to switch modes (i.e. default-auto-test, always test, and never test), and the "n" to force it to launch the app in normal mode.

Now all of this can be totally automated and it is highly recommended to be completely automated in something like local git hooks or some CI environment so that when you commit a change the unit tests are done.  The sooner your tests run the quicker you find any breaking code after you make any changes.  It is always very re-assuring when you have to fix a bug in your class and then  re-run your tests and everything passes...

Depending on your CI environment and how frequently you commit, you might consider having the heavier tests run once every three commits or based on a keyword put in the commit or in a issue tracking system.  Again, the idea is the more tests you can do and the more testing coverage you have the better off you are.

If you need help setting up a automatic testing and/or CI environment or you would like some training, please contact me.

Resources:

Leave a comment

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.