How To: Add Test Coverage to your Serverless Applications

Writing serverless functions brings developers closer and closer to the stack that runs their code. While this gives them a tremendous amount of freedom, it also adds additional responsibility. Serverless applications require developers to think more about security and optimizations, as well as perform other tasks that were traditionally assigned to operations teams. And of course, code quality and proper testing continue to be at the top of the list for production-level applications. In this post, we’ll look at how to add test coverage to our Node.js applications and how we can apply it to our Serverless framework projects. ⚡️

What is Test Coverage and why should I care?

If you’re familiar with test coverage, you can skip this and go right to the Testing our Serverless functions section. If you’re new to test coverage, or are curious how to install it, then I suggest you read through this whole post.

Test coverage (or code coverage) is a measure used to describe the degree to which the source code of a program is executed when a particular test suite runs. ~ Wikipedia

I’m hoping that you are already writing a bunch of tests against your Serverless functions. It would be a little crazy not to be. 😳 But do you know how much of your code is actually being tested? Do you know which branches are executed? Which functions are run? That’s what test coverage can tell us. We can run reports that will show us all kinds of detailed information about just how comprehensive our tests are. Without test coverage, we have to do a lot of guessing (or some really tedious manual investigation).

Test Coverage Basics ✅

Before we jump in to adding code coverage to our Serverless functions, let’s take a minute to review the basics of test coverage and how to set up a Node.js project with all the necessary dependencies.

Let’s create a project directory and a package.json file.

Fill out the prompts (you can just accept the defaults for now):

Now install Mocha (test framework), Chai (assertion library) and Istanbul (test coverage tool) as dev dependencies. Note that we’ll be installing the nyc package instead of istanbul. nyc is Istanbul’s command line utility which we need to wrap our Mocha tests. You can also use several other test frameworks with Istanbul, but I prefer Mocha.

Great. Our package.json file should look something like this:

If everything looks good, we can start writing some code.

Writing our tests

Let’s create our index.js file and write a few functions to test.

If you are typically a TDD person (Test-Driven Development), then you’d write tests first. We’re going to write our code first so that we can show you how test coverage reporting works.

Let’s open our index.js file and add the following code:

These are obviously trivial functions, but we’re using them for illustration purposes.

Let’s write our first test:

Open sample-test.js and add the following code:

Here we’re requiring our assertion library (Chai) and our index.js file. We’ve also created a describe wrapper function to group tests. Note that we are not using arrow functions in our tests (e.g. () => {}). Arrow functions do not bind their own this object, so Mocha can’t access its own scope. For more information on writing Mocha tests, check out the documentation.

Now we’ll write a simple test against our times() function. This test should be nested inside our main describe function.

Awesome, now we can run Mocha to test our script:

We should get:

Perfect, now we have an assertion running against our index.js script. We’re obviously missing a lot of tests though. With such a simple script, it is probably fairly easy for us to figure out which parts of our code aren’t being tested. However, as our applications grow in complexity and scope, it will become an incredibly difficult challenge. That’s were test coverage comes in!

Running a test coverage report

We’ve already set up our project with nyc (Istanbul’s CLI), so all we need to do is run it with Mocha:

Now we should get something like this:

You can see from the output above that our index.js file only has 38.46% of its statements14.29% of its branches33.33% of its functions and 41.67% of its lines covered. We’ll discuss these more in a bit, but let’s talk about the report itself first. Even though it tells us the “Uncovered Line #s”, it doesn’t give us a lot of detail. Not a problem! Let’s use a reporter to generate a more comprehensive and useful report.

nyc comes with a built-in html reporter. We just need to run it with the --reporter=html flag:

This will create a coverage directory in your project folder. If we open coverage/index.html we get:

Here we’ll see a prettier version of our CLI report with a little more detail. Plus, if we have multiple files that we’re testing, we can use this interface to sort, which is a great feature.

But wait, there’s more! If we click on the file name, we get this:

This is a heck of a lot more useful! This detailed report will show our code (line-by-line) with execution counts and highlights showing us uncovered statements, branches, and functions.

Understanding the code coverage report

Istanbul reports on the number of StatementsBranchesFunctions and Lines that are covered in your code. Let’s look at what each one means and understand some of the limitations.

Statements: A statement is a syntactic unit of an imperative programming language that expresses some action to be carried out (Wikipedia). This would include things like ifs, calculations in your code, and any function with arguments. There are 13 statements in our code above. See if you can find them all. Note that the case statements aren’t consider statements.

Branches: A branch is an instruction in a computer program that can cause a computer to begin executing a different instruction sequence and thus deviate from its default behavior of executing instructions in order (Wikipedia). Basically these are if/else and switch statements. This would also count ternary operators. There are 7 branches in our script, an if/else and 5 cases in our switch.

Functions: Functions are, well functions. Any method or subroutine we define will be counted as a function. We obviously have 3 in our code above. Istanbul will count nested functions too.

Lines: Lines are like statements, but will count a single line with multiple statements as just one line. Line counts are no longer as relevant as they once were, but are maintained for backwards compatibility. Statements are a much more accurate and useful metric.

Execution counts: In the report above, you’ll notice the  1x  in the margins. This means that the corresponding function, statement, or branch was executed one time. Each time they are run, the count goes up. This useful for seeing how many tests we run against a function.

Completing our test coverage

Let’s add a few more tests to complete our test coverage. We’ll update our sample-test.js file with the following code:

Now we’ve added a test for each one of our functions with several tests to cover possible branches. Let’s run our tests and coverage report again.

And now our test report looks like this:

Uh oh, we’re not covering all of our branches! This is one of the benefits of test coverage. We can immediately see that we’re not testing a piece of our code. Let’s add in a test that will execute that branch:

And when we run it again:

And now we’ve got full test coverage, sort of. This report gives us a really good indication that we are testing all aspects of our script, but it doesn’t tell us everything. What happens if we send a string into the pow() function? What other types of inputs could break our code?

Test coverage reports don’t give us information like that. However, we can use the execution counts to give us a good idea of how many times a block was tested. You can see from the report above that line 5 was executed 4 times, with the first branch executing only once and the else block 3 times. The switch statement was evaluated 5 times and then each return statement was executed once. If we have a complex function, we can get an idea of how many tests are being run against it. We should always write defensive code and make sure we create several tests to try and break it.

Testing our Serverless functions

Okay, now that we understand the basics of test coverage, let’s see how we can apply it to our Serverless functions. First we need to turn our project into a Serverless project.

Let’s make sure we have the Serverless framework installed globally:

Now let’s initialize a project in our test-coverage-sample directory:

This will generate our boilerplate code. Let’s go into our newly created serverless.yml file and swap out the default code with the following:

Now let’s open up the handler.js file that was created and update the code with the following:

Now we can invoke the function locally to quickly test it:

Using the -d flag allows us to send in the body. We can manually test all of our code branches like this:

Of course, we don’t want to have to test this all manually, so let’s write some Mocha tests.

Writing our Serverless Unit Tests

First, let’s get rid of the old tests and the index.js script we wrote:

Now let’s create a new test file for our hello function. We’re going to create a new directory called “unit” under our test directory first. I like to separate my tests. You’ll see why in a minute.

Open our new hello.unit.js unit test file and let’s paste in the following code:

We’ve only written one test for our hello method because we’re only using it for illustration purposes. Let’s run Mocha and see if our tests pass. Note that we need to use the --recursive flag if we don’t specify the path:

We should get this:

So far so good. We can even run our coverage report:

And we get:

Sweet, so now we have 100% test coverage of our Serveless function. Now let’s take advantage of some of the great features of Serverless. Let’s add an environment variable. We’ll update our serverless.yml:

Now let’s use it in our hello() function:

And we need to update our test:

Now let’s run our tests:

Hmm, it looks like our process.env.TEST is undefined. That’s because Serverless is managing our environment variables for us. If we just run the function using node, the environment variables don’t exist. No problem, there is a plugin for that!

Using the Serverless Mocha Plugin

There is a great plugin that allows us to run Mocha tests against our Serverless handler functions called the serverless-mocha-plugin. We just need to install it and add it as a plugin in our serverless.yml file. The easiest way is just to use the built in plugin functionality:

This will install the node module as a dependency and add it to our package.json file. It will also add a plugins section to our serverless.yml file like this:

Now let’s create a test for our hello function using the new command line features that the serverless-mocha-plugin adds to Serverless:

This will create a new file named hello.js in our /test directory. The file looks like this:

Let’s clean up this test and copy our hello() unit test in. We’ll also remove the hello() test from our /test/unit/helo.unit.js file while we’re at it.

Much better. Now let’s run a Mocha test:

Hmm, that’s not good. We’re getting this error because we need to bootstrap the function using Serverless first. The serverless-mocha-plugin adds a CLI command for us to do just that:

And now we get:

Notice that it not only ran our hello.js tests, but it also ran our hello.unit.js tests as well. This is because the plugin runs Mocha with the --recursive flag for us. When we start to add several more functions, it can get a bit overwhelming to run all these tests at once. If we want to limit it to just a single function’s tests, we can run:

If we want to include our unit tests, we can simply require them in our hello.js test script by adding this to the end of our script:

Now if we run the test with the -f hello flag or not, we’ll get the same result:

Node is pretty good about remembering and caching dependencies, so it will only run our “unit” tests once. If we had multiple functions in our project, we could run all of our tests (handler, unit, etc.) for that function at once. Pretty cool.

Running our test coverage report

We saw earlier that we can’t run mocha directly on our Serverless tests. In order to run our test coverage report, we just need to use our new CLI command in combination with Istanbul:

Our tests will all run and we’ll get this:

Amazing! Now we can add all kinds of tests that call our hello() function and include the benefits of bootstrapping our functions with Serverless.

Some additional tips

Notice in our handler.js file that we used exports.switch to make our switch() function public. Since no other function uses this switch() function, it doesn’t make a lot of sense to export it just so we can test it.  Let’s update our handler function and just make switch a variable. We’ll use the __ (double underscore) convention since it is a private variable and switch is a reserved word in JavaScript:

That looks much nicer! Only problem is, our tests will now fail since switch is not longer a public function. Let’s install rewire, an NPM module that let’s us monkey patch dependencies as well as retrieve private variables:

And now we’ll update our unit test script:

Instead of requireing our handler script, we’ll rewire it instead. Now we can use the .__get__('__switch') api to retrieve a reference to the private __switch method. When we run our tests, all is well.

You can also add shortcuts to your package.json file so you don’t have to type out the test commands each time. For example, you could add the following to your package.json‘s scripts section:

Now you can run the following as shortcuts for the above tests:

Have fun testing!

Adding tests to your Serverless functions gives you confidence that your application is going to perform as expected. Adding test coverage reporting makes indentifying untested or under-tested sections of your code much easier. You can also add a number of configurations to your package.json file that will let you include/exclude certain files, fail tests if code coverage doesn’t meet a certain threshold, and much more. Check out the nyc Github repo for all the options.

☝️ REMEMBER: Test coverage is NOT a silver bullet. It will certainly help us make sure all our functions, statements and branches are run as part of our test suites, but it won’t tell us if we’re covering every possible scenario.

I hope you found this post useful. Good luck and have fun testing your Serverless functions. 😜

 

Tags: , , ,


Did you like this post? 👍  Do you want more? 🙌  Follow me on Twitter or check out some of the projects I’m working on.

14 thoughts on “How To: Add Test Coverage to your Serverless Applications”

    1. Hi JT,

      I always recommend creating a full set of unit tests that “stub” connections to external services. I have a post that shows you how to do that with AWS services: https://www.jeremydaly.com/stub-aws-services-lambda-functions-using-serverless-sinon-js-promises/.

      This allows you to unit test all of your functions locally and with a CI/CD without requiring permissions or live connections to external services. However, you should write integration tests that will connect to live versions as well. You can update credentials used with the aws-sdk with the following:

      AWS.config.credentials = new AWS.SharedIniFileCredentials({profile: 'YOUR-PROFILE-NAME'});

      This should allow you to run local tests against remote services. If you are using a VPC, you can access remote resources using this technique: https://www.jeremydaly.com/access-aws-vpc-based-elasticsearch-cluster-locally/.

      Hope that helps,
      Jeremy

  1. Hi,On running the tests I am getting the error
    ” await is only valid in async function”,I am not sure why?

    The function is async only.

  2. Hi Jeremy,

    Thanks for the response,the issue got resolved,async was missing in the code below this line “Open our new hello.unit.js unit test file and let’s paste in the following code:” , its working when I added it but now I am facing another issue, when I am running the command “sls plugin install -n serverless-mocha-plugin” I am getting this error:

    request to https://raw.githubusercontent.com/serverless/plugins/master/plugins.json failed, reason: connect ECONNREFUSED 151.101.0.133:443

    I am behind a corporate proxy,not sure how to make it work.I tried to set the proxy on terminal but still it doesnt work.

    I tried downloading the plugin manually and adding it to .serverless folder and added the plugin in serverless.yml also but still I am unable to run any mocha plugin commands.

    Thanks for the help.

  3. Hey Jeremy,
    I got the proxy setup done and now the plugin is also getting installed,but no test command is running even now.
    On running sls create test -f hello nothing happens , I created the test folder manually and added the hello.js file to it,but still it doesnt run sls invoke command.:(
    I can share the screenshot and the code if required.
    Thanks already for the help.

  4. Jeremy, great article — thanks.

    Is the only advantage to using the serverless-mocha-plugin over mocha that we can make assertions involving environment variables declared in serverless.yaml?

    Are there other advantages?

    1. I think that’s the primary advantage. I like being able to run and test my functions locally (without running something like serverless-offline) with the ability to stub services if necessary. It gives me a better idea of end-to-end and gives me additional flexibility.

  5. How to get test coverage of integration test cases. In our case it is calling API gateway and api gateway’s handler is lambda function.
    How to get test coverage in this scenario.

  6. Hi Jeremy,

    What i notice on running all typescript is that the tests (and then also the coverage) ran using the “sls test” command are located under “.webpack” folder.
    This means that my coverage report is looking strange since it has the files but also the files below all compiled functions. Is there a way to merge those outputs together ?
    I’m using mocha / chai and nyc for coverage creation. the sls test command does fire execute a “serverless-offline”

Leave a Reply

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.