Questions tagged [smoke-testing]

Smoke testing exercises basic functionality of a system, in order to provide some assurance that the system does not fail catastrophically.

Smoke testing exercises basic functionality of a system, in order to provide some assurance that the system does not fail catastrophically. The modern origin is that of a physical device running on electricity: switch it on, and ensure it does not start emitting smoke. Once smoke tests have passed, tests targeting specific functionality can be performed.

67 questions
1
vote
0 answers

Tracking Python program flow in smoke test

I am writing a smoke test solution for a Python project I am working on. The software to be tested uses GObject.MainLoop, and I have written a test mode into it in which a function containing the test code is scheduled to be run before entering the…
TheAG
  • 287
  • 1
  • 4
  • 10
1
vote
2 answers

Why smoke tests are useful with Continuous Integration?

We usually do smoke tests to check critical functionalities whenever we receive a new build. After executing the smoke tests, we are sure to go to next stage (next level of testing). I heard from my colleagues that smoke tests are really useful when…
Aishu
  • 1,310
  • 6
  • 28
  • 52
1
vote
0 answers

Java End to End functional testing inside container, minimum mocking

I am looking for gradle and jenkins friendly testing framework, that supports minimum mocking and works inside container like IBM Websphere Process Server. A little bit about our product and my requirements : We have a system that works inside…
0
votes
0 answers

How to code a smoke test using Selenium IDE in this POST case, using id=nav-link-accountList target; that doesn´t get errors?

this is the first part of the Selenium IDE some test coding displayed the case i am talking is how to continue coding my Seleninum IDE smoke test until i can execute the command that uses the nav-link-accountList target in mercadolibre.com.co; in a…
0
votes
0 answers

Cypress smoke test is failing with cypress version 10

I have cypress smoke test which is working fine with cypress version 8.7.0 but failing with version 10. Sample test looks like { describe("Smoke - test login flow", () => { const userId = Cypress.env("test_user"); const customPassword =…
0
votes
0 answers

K6 load test how to use Response.clickLink( [params] ) on button onClick event

I have two forms, first is Login Form and the second is Purchase Form as below:
Joven Dev
  • 189
  • 2
  • 14
0
votes
2 answers

Smoke Test with ReactJS and Jest

I found this example of Smoke Test with ReactJS and Jest, but I can't understand it. Someone can explain it to me, please? Well, first I can't see the difference between 'smoke tests' and 'unit tests' I see people say smoke tests are superficial and…
0
votes
0 answers

run real React Native code on GitHub Actions (or other CI runner)

I'm working on a React Native app and I want to have a GitHub Action that starts the app on CI. If the app runs without crash, it will call an API endpoint to say that the app is healthy. The purpose of this is to ensure that my app won't crash when…
0
votes
0 answers

Can AAA be used in Automation Tests?

I have a smoke test suite, which will be automated. Can I use during code process Act Arrange Assert Pattern? Or Is it only for unit testing? Or is there better pattern for automation testing?
0
votes
0 answers

Errors in starting gateway and quantexa-academy-ui in 1.4: smoke test

there seems to be java.lang.IllegalStateException: No instances found of configserver (configserver) error in the gateway logs file and the same in the quantexa-academy-ui logs file. I have attached images of the errors for use. I am not sure how to…
0
votes
1 answer

Using CAS with redirect Failed asserting that the Response status code is 200

There is an application that worked before including CAS, but now that the CAS performs the redirection, the smoke test does not find where to do the test we expect a return code of 200 to process, however the actual return code is an error: status…
euroluar
  • 13
  • 3
0
votes
1 answer

No class Main class found . Smoke testing

I did the application and it said that there was no main.java. Is there any I can fix this? package test.cases.business; import model.business.Customer; public class CustomerTest { //======================================= //Smoke Tests -…
0
votes
1 answer

How to to do smoke testing for Azure Data Factory based pipeline

I have On-premise SQL Server->ADF->Storage->ADF->Azure SQL pipeline. I'm using Azure DevOps. ADF pipelines are executed every night and ADF monitor displays errors if such exists. I wonder if there is ADF or other frameworks for doing build specific…
Kenny_I
  • 2,001
  • 5
  • 40
  • 94
0
votes
1 answer

I am wanting to integrate a core .Net based web application with my test suite using Azure Pipelines and just wanted to know the possibilites

I am working as a QA Lead in a product based company. I have developed a "Smoke Test Automation Suite" using Katalon Studio for a "core .Net based web application". Now i am planning to integrate my Smoke Test Automation Suite with the core .Net…
0
votes
1 answer

Unity Smoke Testing

Here's something I've been having trouble finding documentation and resources on. How do I accomplish a basic Unity Smoke Test without loading up a scene? The smoke test is called from a batch script RunSmokeTest.bat C:\Path\To\Unity.exe…