-
Book Overview & Buying
-
Table Of Contents
Rust Web Programming - Third Edition
By :
Unit testing gives us quick feedback on how our units of code work under a range of different inputs. However, how does the system work as a whole? Do all our units of code work when running together and communicating with each other? In this chapter, we are going to build end-to-end tests that automatically set up our system as a microservice cluster and perform a series of tests that make requests to the entire system running, and then inspect the responses. This chapter will cover the following:
By the end of this chapter, you will be able to build automated pipelines that construct a microservice cluster and run a series of tests where the outcome of those tests is written to individual log files for you to inspect. You will also know about the difference between atomic end-to-end...