Simple Google Cloud function tests

Beer van der Drift
2 min readDec 14, 2020
Get it? Photo by Tyler Nix on Unsplash

This post was original published on my blog here.

Ever started a new project quickly realizing you would love to re-use some code from another project? This happened to me during the development of functional tests for Google Cloud functions. Maybe it can be of help to you too.

The problem

Unreadable code can feel like untying your earplug wires after getting them out of your pocket. Take a look at how a test might’ve looked for a cloud function (feel free to skip it, I’m just trying to show this is a callback mess):

Don’t even start about if your function runs async 🤢 (which most do). Promise + callback hell it’ll be for you.

Solution

With some abstraction magic, this test became much more simple:

Let yourFunction go wild! It can .send, .write, .end and much more!

Now you go!

I’ve created a little npm package out of this; for you (and myself) to re-use! The Google Cloud Function handlers are actually just Express handlers. Did you know this is the same in Firebase Functions? So to test Firebase Functions locally works with this too!

npm install pify-express-handler --save-dev

Let me know your thoughts! I hope it helps you out :).

Alternatives

If you’re using Serverless Framework you might be better off using their testing infrastructure. But don’t use it for just testing, it’s very heavy.

Another option is using firebase-functions-test if you're using firebase. But, you still need to stub your own res object and do requires in funky locations. You can see an example test at work in their repo.

--

--