nerdexam
Cisco

300-910 · Question #99

A team is developing a large-scale platform that consists of several microservices applications. The deployment of each component must take place independently. After each change, checks must be perfo

The correct answer is A. smoke. To ensure no negative impact on a platform after independent microservice deployments, a CI/CD tool should perform smoke tests to quickly verify core functionalities. These tests provide rapid feedback on the health of a new build or deployment.

CI/CD Pipelines

Question

A team is developing a large-scale platform that consists of several microservices applications. The deployment of each component must take place independently. After each change, checks must be performed to ensure that there was no impact on the platform. Which type of test must be performed by the CI/CD tool?

Options

  • Asmoke
  • Bperformance
  • Ccanary
  • Dsecurity

How the community answered

(31 responses)
  • A
    94% (29)
  • C
    3% (1)
  • D
    3% (1)

Why each option

To ensure no negative impact on a platform after independent microservice deployments, a CI/CD tool should perform smoke tests to quickly verify core functionalities. These tests provide rapid feedback on the health of a new build or deployment.

AsmokeCorrect

Smoke tests are a subset of test cases that cover the most important functionalities of a component to ascertain if the deployed build is stable enough to proceed with further testing or usage. They are quick, high-level checks designed to verify that the most critical functions work after a new deployment, ensuring no immediate regression or breakage.

Bperformance

Performance tests evaluate system responsiveness, stability, and resource usage under various loads, which is typically a later, more extensive testing phase, not a quick check after every change for basic impact.

Ccanary

Canary deployment is a strategy to reduce risk by gradually rolling out a new version to a small subset of users before a full rollout, not a type of test performed by a CI/CD tool for basic functionality verification.

Dsecurity

Security tests focus on identifying vulnerabilities and weaknesses in the system, which is a specialized type of testing and not the primary method for quickly verifying functional impact after every small change.

Concept tested: CI/CD testing types - smoke testing

Source: https://learn.microsoft.com/en-us/azure/devops/pipelines/test/types-of-testing?view=azure-devops#smoke-testing

Topics

#CI/CD testing#Smoke testing#Deployment verification#Microservices

Community Discussion

No community discussion yet for this question.

Full 300-910 Practice