No More Mocking! Write Better Tests For Your Nuxt Application With Contract Tests

Rate this content
Bookmark

Let's explore how to create more resilient software systems employing API-first techniques. By utilizing the contract testing tool Specmatic and the Playwright test runner, we can develop tests that ensure our Nuxt applications work perfectly and communicate correctly with Microservices they rely on to get data.

We will take a closer look at how to write OpenAPI specifications that aid us in documenting our APIs and enable us to ensure they work correctly. Furthermore, we can use those specifications to automatically spin up a stub server, which we can use to test our application in a controlled environment with Playwright.

The techniques I'll show you will help you write tests that enable you to rapidly iterate without fearing regressions.

Learning Outcomes:

1. You know about the basic principles of Contract Testing and how it also helps drive our E2E tests.
2. You know to opt for Contract Testing when working with Microservices and BFFs, database seeding when using Nuxt with a database, and mocking when dealing with SPAs.
3. You know the steps to create your first OpenAPI specification and integrate Specmatic with Playwright or Cypress, and you are keen to apply this technique to your projects.

This talk has been presented at Vue.js Live 2024, check out the latest edition of this Tech Conference.

FAQ

The primary challenge is that requests made from the server-side to other server-side applications (microservices) cannot be easily mocked using tools like Playwright and Cypress, complicating end-to-end testing.

Adding a BFF layer simplifies authentication by avoiding the need to expose an access token to the client-side. It also allows the tailoring of data from microservices to meet the specific needs of the client-side application, reducing the need for data conversion logic on the client-side.

Contract testing helps ensure that the client-side and server-side parts of the application correctly interact with each other and with microservices. It verifies that the data exchanged between these components adheres to predefined contracts, ensuring compatibility and reducing integration issues.

Playwright and Cypress are designed to intercept and mock requests made from the client-side (browser) to the server-side. They do not support intercepting or mocking server-to-server requests, which are common in a BFF-based architecture.

A monolithic architecture combines the UI layer, business logic, and data layer in a single application, typically using frameworks like Ruby on Rails or Next.js. Testing often involves techniques like database seeding to ensure the application has the correct data for tests.

Single-page applications can be tested in isolation by mocking all the requests made to the services. Tools like Playwright allow intercepting requests and returning predefined responses, enabling end-to-end testing without relying on the actual services.

Database seeding involves populating the database with a specific dataset before running tests. This ensures that the application has the necessary data to perform the tests accurately. It is commonly used in monolithic applications to set up the test environment.

A stub server simulates the behavior of microservices by providing predefined responses to server-side requests. This allows testing the entire application, including both client-side and server-side components, without relying on the actual microservices.

Testing the border crossing ensures that the client-side and server-side components correctly interact with each other. Without such tests, there is a risk that these parts may not work together as expected, despite having individual tests.

The main challenge is that there are two types of requests to handle: browser-to-server and server-to-server. While browser-to-server requests can be mocked, server-to-server requests cannot be easily intercepted or mocked, complicating comprehensive testing.

Markus Oberlehner
Markus Oberlehner
21 min
25 Apr, 2024

Comments

Sign in or register to post your comment.

Video Summary and Transcription

A single-page application utilized a server-side BFF layer to simplify authentication and data customization. Testing a BFF-based architecture involves contract testing and tool usage. Challenges arise when mocking server-to-server requests in a client-side and server-side architecture. Separate tests should be written for client-side and server-side components, with contract testing to ensure compatibility. Integration testing for the front-end and server-side can be done by replacing microservices with a sub-server.

1. Building a Single-Page Application with BFF Layer

Short description:

A couple of years ago, my colleagues and I built a single-page application that obtained data from microservices. While testing was easy, getting data directly from the microservices was complicated. To address this, we added a server-side BFF layer, allowing the client-side application to fetch data from the BFF. This approach simplified authentication and data customization without relying on the client-side.

A couple of years ago, my colleagues and I had to build a new application from scratch. And we decided we wanted to build a single-page application. So our architecture looked some like what you can see here. We had our application, which was a single-page application, which got its data from a couple of microservices.

And so far so good. This had some benefits, like testing was very easy. For testing our whole application in isolation, we could simply mock all the requests to the microservices. But there were also some downsides with this architecture, because we noticed that in some scenarios, getting the data from the microservices directly was rather complicated, because the microservices weren't tailored to the needs of our single-page application. And this is why we decided to adapt our architecture a little bit.

So what we did is, instead of only having a client-side application, we also added a server-side layer, a BFF layer. And now our client-side single-page application didn't get the data directly from microservices, but the client-side piece of our application got its data from the BFF. And the BFF made requests to the services. And this had some benefits. Mostly authentication was easier, for example, because we didn't have to expose an access token to the client-side. And also, we could tailor the data we got from the microservices for the needs of the client-side application, without having to do a lot of data conversion logic on the client-side.

2. Testing BFF-based Architecture

Short description:

Testing a BFF-based architecture has its pros and cons. In this talk, we will explore the differences in testing between monolithic architectures, single-page applications, and full-stack applications with microservices. We will discuss using an API-first approach with contract testing and tools like Playwright and Spagmatic's stub server feature. Additionally, we will compare test writing techniques, including database seeding, for monolithic applications.

But there was also a downside, because now we couldn't just test our whole application, because when testing our application with Playwright, for example, we can only mock requests made from the client-side in the browser to the server-side. So we could only mock those requests, but we couldn't mock those requests anymore, because those requests are made from the server-side to other server-side applications. And this is not possible with tools like Playwright and Cypress.

So there were some pros and some cons to this approach. And in this talk, I want to show you what are the differences regarding testing when we have, for example, a monolithic architecture, single-page applications like we saw in the first slide, and also single-page applications or full-stack applications in combination with microservices, as we saw in the second slide. We will take a look at how we can use an API-first approach with contract testing to fix the problem we faced when switching to a BFF-based architecture, with not being able anymore to mock the request of the microservices. And we will see how we can do this using Playwright and a tool called Spagmatic and the feature it has, which is a stub server feature.

But first, let's take a look at how we wrote tests or how we write tests when we have a monolithic application so that we can see the differences between the different architectures. So with a monolithic application, typically a LRL, a Ruby on Rails, or for example a Nuxt or Next.js application talking to a database. Monolithic application I would define as having UI layer, business logic, and data layer all in one. So with those kinds of applications, we can use a technique like database seeding to write tests or to have the correct data for our tests.

Check out more articles and videos

We constantly think of articles and videos that might spark Git people interest / skill us up or help building a stellar career

Welcome to Nuxt 3
Vue.js London Live 2021Vue.js London Live 2021
29 min
Welcome to Nuxt 3
Top Content
Nux3 has made significant improvements in performance, output optimization, and serverless support. Nuxt Bridge brings the Nitro engine for enhanced performance and easier transition between Nuxt 2 and Nuxt Read. Nuxt 3 supports Webpack 5, Bytes, and Vue 3. NextLab has developed brand new websites using Docus technology. Nuxt.js is recommended for building apps faster and simpler, and Nuxt 2 should be used before migrating to Nuxt 3 for stability. DOCUS is a new project that combines Nuxt with additional features like content modules and an admin panel.
Network Requests with Cypress
TestJS Summit 2021TestJS Summit 2021
33 min
Network Requests with Cypress
Top Content
Cecilia Martinez, a technical account manager at Cypress, discusses network requests in Cypress and demonstrates commands like cydot request and SCI.INTERCEPT. She also explains dynamic matching and aliasing, network stubbing, and the pros and cons of using real server responses versus stubbing. The talk covers logging request responses, testing front-end and backend API, handling list length and DOM traversal, lazy loading, and provides resources for beginners to learn Cypress.
Testing Pyramid Makes Little Sense, What We Can Use Instead
TestJS Summit 2021TestJS Summit 2021
38 min
Testing Pyramid Makes Little Sense, What We Can Use Instead
Top Content
Featured Video
Gleb Bahmutov
Roman Sandler
2 authors
The testing pyramid - the canonical shape of tests that defined what types of tests we need to write to make sure the app works - is ... obsolete. In this presentation, Roman Sandler and Gleb Bahmutov argue what the testing shape works better for today's web applications.
Testing Web Applications with Playwright
TestJS Summit 2022TestJS Summit 2022
20 min
Testing Web Applications with Playwright
Top Content
Testing web applications with Playwright, a reliable end-to-end testing tool. Playwright offers fast execution, powerful tooling, and support for multiple languages. It provides precise selectors, web-first assertions, and code generation for easy testing. Playwright also offers features like live debugging, tracing, and running tests on CI. The future of Playwright aims to make testing easy and fun, with a focus on creating frustration-free web experiences.
Full-Circle Testing With Cypress
TestJS Summit 2022TestJS Summit 2022
27 min
Full-Circle Testing With Cypress
Top Content
Cypress is a powerful tool for end-to-end testing and API testing. It provides instant feedback on test errors and allows tests to be run inside the browser. Cypress enables testing at both the application and network layers, making it easier to reach different edge cases. With features like AppActions and component testing, Cypress allows for comprehensive testing of individual components and the entire application. Join the workshops to learn more about full circle testing with Cypress.
Test Effective Development
TestJS Summit 2021TestJS Summit 2021
31 min
Test Effective Development
Top Content
This Talk introduces Test Effective Development, a new approach to testing that aims to make companies more cost-effective. The speaker shares their personal journey of improving code quality and reducing bugs through smarter testing strategies. They discuss the importance of finding a balance between testing confidence and efficiency and introduce the concepts of isolated and integrated testing. The speaker also suggests different testing strategies based on the size of the application and emphasizes the need to choose cost-effective testing approaches based on the specific project requirements.

Workshops on related topic

Designing Effective Tests With React Testing Library
React Summit 2023React Summit 2023
151 min
Designing Effective Tests With React Testing Library
Top Content
Featured Workshop
Josh Justice
Josh Justice
React Testing Library is a great framework for React component tests because there are a lot of questions it answers for you, so you don’t need to worry about those questions. But that doesn’t mean testing is easy. There are still a lot of questions you have to figure out for yourself: How many component tests should you write vs end-to-end tests or lower-level unit tests? How can you test a certain line of code that is tricky to test? And what in the world are you supposed to do about that persistent act() warning?
In this three-hour workshop we’ll introduce React Testing Library along with a mental model for how to think about designing your component tests. This mental model will help you see how to test each bit of logic, whether or not to mock dependencies, and will help improve the design of your components. You’ll walk away with the tools, techniques, and principles you need to implement low-cost, high-value component tests.
Table of contents- The different kinds of React application tests, and where component tests fit in- A mental model for thinking about the inputs and outputs of the components you test- Options for selecting DOM elements to verify and interact with them- The value of mocks and why they shouldn’t be avoided- The challenges with asynchrony in RTL tests and how to handle them
Prerequisites- Familiarity with building applications with React- Basic experience writing automated tests with Jest or another unit testing framework- You do not need any experience with React Testing Library- Machine setup: Node LTS, Yarn
How to Start With Cypress
TestJS Summit 2022TestJS Summit 2022
146 min
How to Start With Cypress
Featured WorkshopFree
Filip Hric
Filip Hric
The web has evolved. Finally, testing has also. Cypress is a modern testing tool that answers the testing needs of modern web applications. It has been gaining a lot of traction in the last couple of years, gaining worldwide popularity. If you have been waiting to learn Cypress, wait no more! Filip Hric will guide you through the first steps on how to start using Cypress and set up a project on your own. The good news is, learning Cypress is incredibly easy. You'll write your first test in no time, and then you'll discover how to write a full end-to-end test for a modern web application. You'll learn the core concepts like retry-ability. Discover how to work and interact with your application and learn how to combine API and UI tests. Throughout this whole workshop, we will write code and do practical exercises. You will leave with a hands-on experience that you can translate to your own project.
Detox 101: How to write stable end-to-end tests for your React Native application
React Summit 2022React Summit 2022
117 min
Detox 101: How to write stable end-to-end tests for your React Native application
Top Content
WorkshopFree
Yevheniia Hlovatska
Yevheniia Hlovatska
Compared to unit testing, end-to-end testing aims to interact with your application just like a real user. And as we all know it can be pretty challenging. Especially when we talk about Mobile applications.
Tests rely on many conditions and are considered to be slow and flaky. On the other hand - end-to-end tests can give the greatest confidence that your app is working. And if done right - can become an amazing tool for boosting developer velocity.
Detox is a gray-box end-to-end testing framework for mobile apps. Developed by Wix to solve the problem of slowness and flakiness and used by React Native itself as its E2E testing tool.
Join me on this workshop to learn how to make your mobile end-to-end tests with Detox rock.
Prerequisites- iOS/Android: MacOS Catalina or newer- Android only: Linux- Install before the workshop
API Testing with Postman Workshop
TestJS Summit 2023TestJS Summit 2023
48 min
API Testing with Postman Workshop
Top Content
WorkshopFree
Pooja Mistry
Pooja Mistry
In the ever-evolving landscape of software development, ensuring the reliability and functionality of APIs has become paramount. "API Testing with Postman" is a comprehensive workshop designed to equip participants with the knowledge and skills needed to excel in API testing using Postman, a powerful tool widely adopted by professionals in the field. This workshop delves into the fundamentals of API testing, progresses to advanced testing techniques, and explores automation, performance testing, and multi-protocol support, providing attendees with a holistic understanding of API testing with Postman.
1. Welcome to Postman- Explaining the Postman User Interface (UI)2. Workspace and Collections Collaboration- Understanding Workspaces and their role in collaboration- Exploring the concept of Collections for organizing and executing API requests3. Introduction to API Testing- Covering the basics of API testing and its significance4. Variable Management- Managing environment, global, and collection variables- Utilizing scripting snippets for dynamic data5. Building Testing Workflows- Creating effective testing workflows for comprehensive testing- Utilizing the Collection Runner for test execution- Introduction to Postbot for automated testing6. Advanced Testing- Contract Testing for ensuring API contracts- Using Mock Servers for effective testing- Maximizing productivity with Collection/Workspace templates- Integration Testing and Regression Testing strategies7. Automation with Postman- Leveraging the Postman CLI for automation- Scheduled Runs for regular testing- Integrating Postman into CI/CD pipelines8. Performance Testing- Demonstrating performance testing capabilities (showing the desktop client)- Synchronizing tests with VS Code for streamlined development9. Exploring Advanced Features - Working with Multiple Protocols: GraphQL, gRPC, and more
Join us for this workshop to unlock the full potential of Postman for API testing, streamline your testing processes, and enhance the quality and reliability of your software. Whether you're a beginner or an experienced tester, this workshop will equip you with the skills needed to excel in API testing with Postman.
Using Nitro – Building an App with the Latest Nuxt Rendering Engine
Vue.js London Live 2021Vue.js London Live 2021
117 min
Using Nitro – Building an App with the Latest Nuxt Rendering Engine
Top Content
Workshop
Daniel Roe
Daniel Roe
We'll build a Nuxt project together from scratch using Nitro, the new Nuxt rendering engine, and Nuxt Bridge. We'll explore some of the ways that you can use and deploy Nitro, whilst building a application together with some of the real-world constraints you'd face when deploying an app for your enterprise. Along the way, fire your questions at me and I'll do my best to answer them.
Monitoring 101 for React Developers
React Summit US 2023React Summit US 2023
107 min
Monitoring 101 for React Developers
Top Content
WorkshopFree
Lazar Nikolov
Sarah Guthals
2 authors
If finding errors in your frontend project is like searching for a needle in a code haystack, then Sentry error monitoring can be your metal detector. Learn the basics of error monitoring with Sentry. Whether you are running a React, Angular, Vue, or just “vanilla” JavaScript, see how Sentry can help you find the who, what, when and where behind errors in your frontend project. 
Workshop level: Intermediate