DEV Community

Diego (Relatable Code)
Diego (Relatable Code)

Posted on • Originally published at relatablecode.com on

How to mock the Webshare API for a Cypress Test

Spider web

Cypress is a very robust testing framework with a ton of utilities. It has been my go-to option for all my side projects where I think extensive integration testing is necessary. In one of my apps, I offer the ability to share images using the WebShare API. In order to properly test this, I decided to investigate how to test this using Cypress!

Brief rundown

The WebShare looks up native sharing functionalities the device may have for the selected data type. This could be anything ranging from text, URLs, images, or any number of other files. The application or method which will be used for sharing is called the share target.

Before validating if the selected data/file can be shared there is an additional function available in the navigator called canShare. This function will be the crux of our test as will test if this can be shared and validate what changes in UI are visible.

However, the results of the WebShare API would not be something I would personally test for as it is outside the scope of the app. As a result, I much prefer mocking the desired results and checking what should happen in the UI!

Setting up Cypress

Cypress offers a way to access resources before it even loads with the onBeforeLoad utility. We can access this as we are visiting the main site. Let's look at this example below:

Mock Success

Firstly as it is not currently available in Firefox we only run the test on different browsers. Afterward in the onBeforeLoad function, we access the window object and completely replace the two functions we are attempting to mock. In this case the share and canShare. This way we can test the expected result with what should be displayed in the UI!

Below is a similar test but for the opposite case, for when a test fails:

Mock Error

Bonus tip: In earlier versions the canShare utility was not defined in the Navigator Type and if for some reason you receive some error using Typescript and canShare, you can go ahead and extend it and brute force the type for the purposes of testing.

Example:

Typescript Tip

Small disclaimer, the Webshare API and several of its utility functions do not have widespread compatibility.

Leave any questions or alternative implementations in the comments below!

More content at Relatable Code

Originally published at https://relatablecode.com on December 5, 2021.

Top comments (0)