smoke-testing

What is the difference between smoke testing and sanity testing?

点点圈 提交于 2021-02-15 08:15:48
问题 What is the difference between smoke testing and sanity testing? When do will perform smoke testing and when do will perform sanity testing? 回答1: Sanity testing Sanity testing is the subset of regression testing and it is performed when we do not have enough time for doing testing. Sanity testing is the surface level testing where QA engineer verifies that all the menus, functions, commands available in the product and project are working fine. Example For example, in a project there are 5

Confusion about sanity testing of software [closed]

不打扰是莪最后的温柔 提交于 2019-12-13 10:51:47
问题 Closed . This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this post. Closed last year . I have read several posts regarding smoke and sanity testing. All are almost confusing. Neither explaining them clearly,just repeating the matter except some two or three posts and based on that two or three posts i concluded that following is the formal process: Smoke testing

Why does <excludeGroups> work but <groups> doesnt?

允我心安 提交于 2019-12-12 00:47:16
问题 I am trying to split up integration-tests and smoke-tests using the @Category - Annotation of JUnit and profiles. So that if I run mvn clean install -P smoke-tests only the Smoke-Tests get executed and if I run mvn clean install every test runs. The thing is: When I exclude the groups in Maven with <excludeGroups> it excludes the groups as expected. But when I try to include them with <groups> it still runs every test. The Maven code is nothing fancy: <profile> <id>smoke-tests</id>

Check If System Is Connected To Kafka

不羁的心 提交于 2019-12-06 01:26:49
问题 I need to write a smoke test in Java which validates whether the system is connected to kafka, Does anyone have any idea? I have found this post: How to check whether Kafka Server is running? But it's too complicated to do from a Java code and I don't think It's the direction i should use. Thanks in advance. 回答1: I had the same question and I don't want to leave this question without any answer. I read a lot about how I can check the connection and most of the answers I found was checking the

Automatically smoke test all webpages in application, after deployment

99封情书 提交于 2019-12-05 02:24:21
问题 After I deploy a build to staging. I would like to have a system that smoke tests all our webpages looking for error http status codes (400,500). What is the easiest, fastest way to get a system like this into place. If I use selenium or WebAII it seems like I'd have to do alot of work generating basic unit tests. Ideally Id like to be able to autogenerate a dead simple test for all my page, then over time build some more interactive UI tests. I dont really want to roll my own solution using

Check If System Is Connected To Kafka

≡放荡痞女 提交于 2019-12-04 05:59:11
I need to write a smoke test in Java which validates whether the system is connected to kafka, Does anyone have any idea? I have found this post: How to check whether Kafka Server is running? But it's too complicated to do from a Java code and I don't think It's the direction i should use. Thanks in advance. I had the same question and I don't want to leave this question without any answer. I read a lot about how I can check the connection and most of the answers I found was checking the connection with Zk, but I really want to check the connection directly with Kafka server. What I did is to

Automatically smoke test all webpages in application, after deployment

半世苍凉 提交于 2019-12-03 21:33:02
After I deploy a build to staging. I would like to have a system that smoke tests all our webpages looking for error http status codes (400,500). What is the easiest, fastest way to get a system like this into place. If I use selenium or WebAII it seems like I'd have to do alot of work generating basic unit tests. Ideally Id like to be able to autogenerate a dead simple test for all my page, then over time build some more interactive UI tests. I dont really want to roll my own solution using wget or something. I'd appreciate some suggestions. Thanks Ideally Id like to be able to auto-generate

Are regression tests the entire test suite or a sample of tests?

拈花ヽ惹草 提交于 2019-12-03 03:20:11
I was taught that a regression test was a small (only enough to prove you didn't break anything with the introduction of a change or new modules) sample of the overall tests. However, this article by Ron Morrison and Grady Booch makes me think differently: The desired strategy would be to bring each unit in one at a time, perform an extensive regression test, correct any defects and then proceed to the next unit. The same document also says: As soon as a small number of units are added, a test version is generated and "smoke tested," wherein a small number of tests are run to gain confidence

What is a sanity test/check

杀马特。学长 韩版系。学妹 提交于 2019-11-28 16:38:06
What is it and why is it used/useful? A sanity test isn't limited in any way to the context of programming or software engineering. A sanity test is just a casual term to mean that you're testing/confirming/validating something that should follow very clear and simple logic. It's asking someone else to confirm that you are not insane and that what seems to make sense to you also makes sense to them... or did you down way too many energy drinks in the last 4 hours to maintain sanity? If you're bashing your head on the wall completely at a loss as to why something very simple isn't working...

What is a smoke testing and what will it do for me?

拜拜、爱过 提交于 2019-11-27 11:39:38
I thought I understood that a smoke server was used for continous integration to measure the performance and test coverage of a project. Is this basically correct? What does it mean to smoke-test a program? Does it simply mean to continously apply the tests defined on the smoke server to be able to pinpoint performance degradation to a particular time frame? Smoke testing is a set of basic cheap to run tests that precede actual testing. It aims to verify that the build is deployed successfully and that all test env. aspects are running and ready for the actual test process. It saves you