Book Image

Drupal 10 Development Cookbook - Third Edition

By : Matt Glaman, Kevin Quillen
Book Image

Drupal 10 Development Cookbook - Third Edition

By: Matt Glaman, Kevin Quillen

Overview of this book

This new and improved third edition cookbook is packed with the latest Drupal 10 features such as a new, flexible default frontend theme - Olivero, and improved administrative experience with a new theme - Claro. This comprehensive recipe book provides updated content on the WYSIWYG (What You See Is What You Get) editing experience, improved core code performance, and code cleanup. Drupal 10 Development Cookbook begins by helping you create and manage a Drupal site. Next, you’ll get acquainted with configuring the content structure and editing content. You’ll also get to grips with all new updates of this edition, such as creating custom pages, accessing and working with entities, running and writing tests with Drupal, migrating external data into Drupal, and turning Drupal into an API platform. As you advance, you’ll learn how to customize Drupal’s features with out-of-the-box modules, contribute extensions, and write custom code to extend Drupal. By the end of this book, you’ll be able to create and manage Drupal sites, customize them to your requirements, and build custom code to deliver your projects.
Table of Contents (17 chapters)

Writing a unit test

Let’s write our first test. As previously mentioned, a unit test is the lowest-level type of test you can write. It only executes and tests raw PHP code that has no dependencies on services such as a connected database or other integrated APIs. This means the test can execute using PHP only.

Getting ready

Let’s create a scenario that will help you think about when and how to apply unit testing. Imagine you have to provide data to a frontend component. The frontend developer has requested that you provide all JSON keys in camelCase format in the API response. camelCase would turn strings such as field_event_date into fieldEventDate.

snake_case is used in many places in Drupal; the most common place you will see this is with machine names (such as on the preceding event date field). All machine names in Drupal are in snake_case.

This is a very simple example but perfect to illustrate how we can wield a unit test to test our class.

How...