Book Image

Designing Web APIs with Strapi

By : Khalid Elshafie, Mozafar Haider
4 (1)
Book Image

Designing Web APIs with Strapi

4 (1)
By: Khalid Elshafie, Mozafar Haider

Overview of this book

Strapi is a Node.js-based, flexible, open-source headless CMS with an integrated admin panel that anyone can use and helps save API development time. APIs built with Strapi can be consumed using REST or GraphQL from any client. With this book, you'll take a hands-on approach to exploring the capabilities of the Strapi platform and creating a custom API from scratch. This book will help JavaScript developers to put their knowledge to work by guiding them through building powerful backend APIs. You'll see how to effortlessly create content structures that can be customized according to your needs, and gain insights into how to write, edit, and manage your content seamlessly with Strapi. As you progress through the chapters, you'll discover a wide range of Strapi features, as well as understand how to add complex features to the API such as user authentication, data sorting, and pagination. You'll not only learn how to find and use existing plugins from the open-source community but also build your own plugins with custom functionality with the Strapi plugin API and add them to the admin panel. Finally, you'll learn how to deploy the API to Heroku and AWS. By the end of this book, you'll be able to build powerful, scalable, and secure APIs using Strapi.
Table of Contents (17 chapters)
1
Section 1: Understanding Strapi
6
Section 2: Diving Deeper into Strapi
11
Section 3: Running Strapi in Production

Writing and running tests

We are going to give a couple of examples of writing tests. First, we will use a public endpoint and see how we can write a test against our public routes, then we will see how to test a secure endpoint.

Testing a public endpoint

We will start by testing a public endpoint first; let's consider the GET /api/classrooms endpoint. We want to test the endpoint is working as expected—that is, it is accessible and returning the expected result.

Before we start writing the tests, let's make sure that we are allowing public access to this endpoint by updating the permissions. Update the bootstrap function in the src/index.js file, allowing public access to the classroom's find endpoint, as illustrated in the following code snippet:

await enablePermission("public", "classroom","classroom", "find");

We should be able to access the GET /api/classrooms endpoint without the need to authenticate...