Which Environments Should We Be Testing In? CI/CD

Hi guys,

We currently have 4 environments for our new web application which is currently in the beta stage. Development, QA, Staging and Production.

My question is; what type of tests should we/would you be carrying out in each environment?

Both myself and the engineering department as a whole are new to CI/CD, so weā€™re trying to work this out together.

At the moment:

Dev - only sanity checks are carried out by developers here
QA - this is where we check all functional code changes. Regression will be carried out here.
Staging - performance tests will be carried out here, since it is a mirror of our Production environment (ideally we would create and then tear down a temporary environment for this). This is where Product Management will ā€˜sign offā€™ any features tested by us.
Production - weā€™ll be testing SQL database updates (that donā€™t require a code change) here. These tests will be non-intrusive. Should we be carrying out smoke tests here? To make sure the main pages are loading etc?

Weā€™ve only recently created these environments(as Iā€™ve mentioned, weā€™re at the beta stage) so any hints/tips and useful articles would be really helpful.

Thanks guys.

2 Likes

Hi, and what is your git flow? To me its not so much important what env you test in but if testing envs follows your development in most effective way possible.

In my company we basically use the same envs with few changes. QA is more production like than other environments, staging is for final light weight check before signing off release.

Thanks for your reply!

By git flow, do you mean where do code changes get deployed to first?

Dev > QA > Staging > Production

  1. Dev is for developers to sanity check their changes, make sure it hasnā€™t ā€˜brokenā€™ anything major. Devs approve their changes to move intoā€¦
  2. QA is where we test the changes functionally. We then sign off and the changes are automatically deployed toā€¦
  3. Staging which is where product management ā€˜sign offā€™ the changes (either demonstrated by us or quickly checked by them) and then these are signed off by Product Management to move ontoā€¦
  4. Production. The environment the clients will be using.

The reason I ask this question is because we were getting some push back into the types of tests we were carrying out in each environment. E.g. why would you test data deployment on production and not on QA? Our answer was that code changes and data changes should be tested separately.

Weā€™d also like to perform smoke tests here (e.g. are apis responding, can all UI pages be loaded), at least whilst our deployment methods are in their early stages.

Weā€™re also getting push back on performing performance tests on Staging. My argument for doing this is that it is an exact replica of our production environment in terms of resources. Of course, we have to be responsible and carry out these tests outwith working hours.

A bit of a ramble thereā€¦ but hopefully you guys get the picture?

An excellent question, and one I often struggle with. The flow/environment types you have are similar to the deployment pipeline we typically have.

I would run my smoke, API and UI tests against QA. In that order, and block if any fail. You want to move up the testing pyramid - fastest tests first, so you can fail faster.

Data tests are more interesting. It depends what you mean - we had an application where we were testing data migration from an older system to a new system. Our prod deployment service included that data migration and transformation (took a long time). After weā€™d migrated the data, we ran some quick checks against it on the prod environment. Iā€™m not entirely sure whether that was the best way to do it.

For performance tests, I still havenā€™t decided. You could run them on staging, given that performance testing times are clearly signposted (and people may experience latency). You could also spin up a new temporary environment - if youā€™re using infrastructure as code this should be relatively doable. Generally our staging env isnā€™t as well resourced as our prod environment, so itā€™s not suitable for perf testing, so we spin up a new, temporary environment. If youā€™re blue/greening, youā€™re paying for two envs anyway, so why not use the one youā€™re not using?

This stuff is contextual, so I donā€™t think itā€™s a clear-cut solution, but hopefully Iā€™ve provided some insight?

Thanks for your reply, very useful.

I have a couple of questions - why would we not smoke test against production? Make sure that the environment is still alive and all APIs are up and running.

I agree that the majority of testing should be done against the QA environment, and maybe itā€™s because I donā€™t trust our current deployment methods enough that I want to test against production?

As for the data tests - data would be deployed to Production but only turned on for a Test/Demo client. This would allow us to carry out database checks and ensure the data update hasnā€™t broken any functionality. As soon as these tests pass, weā€™ll ā€˜flick a switchā€™ and the latest version of the database will be available for all clients.

Our thinking is that we want to keep functional code changes and database testing separate.

In regards to performance testing - Iā€™d agree that a temporary environment would be best. Unfortunately we donā€™t have that as an option immediately, but itā€™s definitely something weā€™ll be aiming for.

You can run smoke against production if you want, too. That would give you some certainty that the release process was effective. You run the risk of injecting test data into production, though. It depends how you do test data - we randomly generate data for each test, which makes the tests idempotent.

As far as ā€˜testingā€™ on production, we tend to do monitoring and healthchecks over functional tests. Iā€™ve been doing a lot of infra testing recently, and you can set up a Goss healthcheck server, if youā€™re curious about tooling: https://github.com/aelsabbahy/goss

If youā€™re running a 12 factor app then your environments should at parity. If not then I would definitely test production, as you technically havenā€™t tested your whole application.

I think your data tests sound very similar to ours. Ours were more ā€˜data migrationā€™ tests. Once weā€™d migrated from the legacy system to the new system, we stopped running them. Iā€™m not sure what happened with regards to database testing afterwardsā€¦ if indeed, we did anyā€¦

Yeah, a temporary environment is ideal, but ideal isnā€™t always possible! Itā€™s all about improvingā€¦

I think what Iā€™m getting from your reply, and from what Iā€™m reading online, is that there is no right or wrong answer. Especially not at the early stage of us implementing this deployment process.

Thanks!

CI/CD stands for Continuous Integration and Continuous Deployment/Delivery . A CI/CD environment is a type of production environment in which ongoing automation and monitoring are implemented to improve and expedite development processes for integration and testing, and deployment and delivery. Its aims to solve those issues that development teams are facing with when integrating and merging new code additions.

Now, the time-consuming merge days are replaced with ongoing automated data migration testing that keeps code updates flowing through the production cycle. In a CI/CD environment, development and operations collaborate closely together with an agile approach as new code additions are moved through a CI/CD pipeline designed to continuously integrate and deploy new product fixes, updates, and features.

CI is an automation process within development that continuously builds, tests, and merges new code changes. This allows developers to quickly write and merge new code to a single, shared ā€œtrunkā€ instead of having to wait to manually merge many individual branches of code

However, CD refers to the automated process of taking the validated code additions from the CI processes, and releasing it to a shared repository (such as GitHub). The goal is to maintain an up-to-date codebase where new updates and features could be easily deployed to a live production environment.

Here another question comes how can we get started with implementing CI/CD at our organization? So, considering the level of well-designed automation required for an effective CI/CD pipeline, there is quite a bit of upfront labor that must be done first. Weā€™ll need to start with establishing an intelligent system of CI designed for our specific development ecosystem. Our CI/CD pipeline relies on a high degree of ongoing automated testing and monitoring at the CI level in order to effectively deliver and deploy new code updates without breaking the application.

Also, there are several tools available to help get started with CI/CD as well as to improve our existing processes. CI/CD tools like Jenkins are great for automating testing/integration, delivery, and deployment.

1 Like