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
3
votes
1 answer

Smoke Testing and Monkey Testing in ABAP

How can i do smoke and monkey testing in ABAP? Are there tools for that ?
cethint
  • 2,231
  • 8
  • 28
  • 31
2
votes
3 answers

How complex should smoke tests be?

So we've been running a daily build on our current project for a lot of months at this point. The smoke tests that goes along with that daily build isn't very complex, though - we run a few nUnit tests on our main class library (which, admittedly,…
John Christensen
  • 5,020
  • 1
  • 28
  • 26
2
votes
0 answers

How to run only smoke test cases suite in Azure Pipelines?

I want to run smoke tests independently from builds and releases in Azure Pipelines. I have ReactJS app and WebdriverIO framework for tests. Maybe I can use any script to run only particular tests (smoke)?
TatsianaH
  • 21
  • 1
2
votes
2 answers

How to run TestCafe tool scripts using particular grouping - smoke, regression, etc.? What would be the proper syntax of cmd?

I'm trying to find the best way of How to run TestCafe tool scripts using particular grouping - smoke, regression, etc.? What would be the proper syntax of cmd? WE have script with fixture and think to use it for grouping.All I need to find out the…
2
votes
3 answers

Identify Codeception in production environment

We run our Codeception tests (as smoke tests) against our production environment through Browserstack. Is there an easy way to identify Codeception? Through setting custom headers, user-agent or cookies? The reason being, we constantly run A/B tests…
daydreamer
  • 153
  • 2
  • 10
2
votes
0 answers

Packaging Smoke tests as an (additional) executable jar in Gradle build

We have a gradle build creating a SpringBoot web application. The SpringBoot app is tested with a variety of tests including a suite of WebDriver 'journey' tests. We run a subset of these journey tests as 'smoke' tests on different environments. To…
Tom Scott
  • 352
  • 1
  • 10
2
votes
1 answer

Automated smoke testing of windows froms

We've got two windows form application we'd like to run automated smoke tests. The first one is Content maker, in this app user can create formulas and trees and ... . The second one is calculator, this app use the content and outputs (Database and…
1
vote
1 answer

Cucumber: @SmokeTest Tagging one scenario out of a scenario outline

I am new to tagging in Cucumber. I have built up an automation suite and have identified all tests which can be effectively tagged as Smoke Tests using the @SmokeTest tag. However is there a way to do the following? I don't want to tag the whole…
Kirsty Meredith
  • 69
  • 1
  • 2
  • 8
1
vote
2 answers

Does Splunk offer any such solution to make a call to SOAP REST HTTP URL and to test their availability?

I need to create some kind of health check in Splunk that calls a Rest URL every hour and check if the response returns HTTP code 200 and send an alert in case there is an error like http code 400 or http code 500. For example Splunk should make an…
1
vote
2 answers

How to run specific test class basis system property 'environment'?

Consider different set of smoke tests to be run in test and prod environments. I've configured the build to hit respective profile to run smoke tests. This build provides the environment as parameter. Is there a way to trigger correct Tests (for…
unknown_boundaries
  • 1,482
  • 3
  • 25
  • 47
1
vote
2 answers

What's the simplest/easier way to do a health check/smoke test in an internal web app?

I have an intranet web application and I would like to do a simple health check/smoke that runs once an hour to make sure that everything is how it is supposed to be. The tests are supposed to do some requests and check response for text and in some…
tucaz
  • 6,524
  • 6
  • 37
  • 60
1
vote
0 answers

Smoke Test- "unable to obtain Resolver Configuration" in app-investigate and app-search

When running the Smoke Test for setting up the training environment, he following error appears in app-investigate: "2018-11-20 10:56:37.104 INFO 1724 --- [t-dispatcher-26] c.q.q.c.p.QuanfigurableActorConfigurer : Unable to initialise…
Chloris Yu
  • 11
  • 1
1
vote
1 answer

Automating Instruments for Mac OS X?

We're interested to see if we can include Instruments-based leak testing as a part of our regular application smoke testing. What kind of scriptability is available for Instruments?
fbrereto
  • 35,429
  • 19
  • 126
  • 178
1
vote
1 answer

JUnitTest for Karaf Startup

I want to write a JUnitTest, which ensures that my Karaf Server is started fine and all (needed) Bundles are installed and active. For this I have a Test, calling a helper method "assertBundleState" which ensures, that the given Bundle is in the…
nikmaster
  • 421
  • 1
  • 6
  • 19
1
vote
1 answer

Cron job executing in Jenkins DSL

I am trying to create a cron job which run some smoke tests every 10 minutes, my seedjob looks like this : multiBranchJobs.each { currentJob -> multibranchPipelineJob(currentJob.name) { branchSources { git { …
Bob Zant
  • 215
  • 4
  • 16