Questions tagged [system-testing]

System testing of software or hardware is testing conducted on a complete, integrated system to evaluate the system's compliance with its specified requirements.

System testing of software or hardware is testing conducted on a complete, integrated system to evaluate the system's compliance with its specified requirements. System testing falls within the scope of black box testing, and as such, should require no knowledge of the inner design of the code or logic.

137 questions
0
votes
1 answer

Rails System Test Not Loading Vue

I have a Vue feature in my rails 5.1 app that basically accepts a deeply nested form. The feature works perfectly in development, staging and production, however, when using the new minitest system tests with selenium and capybara, vue doesn't…
Stephen
  • 187
  • 12
0
votes
1 answer

How to test a web service with different configurations?

I want to automatically test http://localhost/api.ashx. api.ashx reads configurations from web.config and acts differently. For example one key is AllowDuplicatedQueryParameter. If web.config has
Gqqnbig
  • 5,845
  • 10
  • 45
  • 86
0
votes
1 answer

How can I use VCR with Rails 5.1 system tests?

Many things on the web seem to suggest that VCR can be used with Capybara. I have three problems. This doesn't make much sense to me, because the test driver and the application code don't share memory. I'm not finding full recipes on how to set…
John Bachir
  • 22,495
  • 29
  • 154
  • 227
0
votes
0 answers

Is it possible to run selenium test without starting the Java App on localhost

I am writing some system test cases with selenium, an was wondering if there is a work around for running these tests without running the java app. My process to run them is: I build my maven project I write a test Run the java application to start…
mupierrix
  • 85
  • 2
  • 2
  • 12
0
votes
1 answer

In testing an application, can I assume a previous test will pass in other tests?

I am testing the functionality of an application. One of the tests is to verify that the application can connect to an external source. The rest of the tests require that the application is connected. Is it all right to write a test to test for the…
FettFrank
  • 259
  • 3
  • 9
0
votes
2 answers

Order of Operations for System Testing?

I was taking an exam yesterday, and I noticed they asked in which order the following occur (and I'll put the order I deemed it to be here): Unit Testing (Always write your unit tests first!) Integration Testing (After you have some code and it…
0
votes
1 answer

End to end system tests in kubernetes

I am interested in hearing as to whether there are any frameworks using kubernetes or otherwise that one can use to write end to end system tests with, of a series of modules / applications that talk to each other in a more complex…
0
votes
0 answers

System/Integration Testing a Flask Web application

I have a web application which uses Flask and talks to a database at the backend. It also uses Amazon AWS S3. I have written unit tests for this package. The question is that I want to write integration tests where I am testing the external…
0
votes
1 answer

Clipboard access in SWTBot

How to access Clipboard while running SWTBot tests? Following code throws Invalid thread access. Clipboard clipBoard = new Clipboard(SWTUtils.display()); Object object = clipBoard.getContents(TextTransfer.getInstance()); The above code is working…
Saminathan S
  • 325
  • 2
  • 11
0
votes
1 answer

Defining test parameters in their own file

In many of my system tests I test a particular functionality for all modes. For example, in this test I test the alarm functionality for all modes: modes = ("start","stop","restart","stage1","stage2") max_alarm_time = 10 # test alarm for all…
Baz
  • 12,713
  • 38
  • 145
  • 268
0
votes
1 answer

Configuring nose tests for different test targets

I have a set of nose tests which I use to test a piece of hardware. For example, the test below is concerned with testing the alarm for each mode on the system: import target modes = ("start","stop","restart","stage1","stage2") max_alarm_time =…
Baz
  • 12,713
  • 38
  • 145
  • 268
0
votes
1 answer

NUnit- Custom Property Attribute display in Test Explorer window

I created custom property attribute to link every system test to its driving requirements which is similar to something described in the link below: NUnit - Multiple properties of the same name? Linking to requirements I used the code given in the…
Charu
  • 13
  • 5
0
votes
1 answer

Run system tests against deployed app with Nancy.Testing

I've successfully set up some tests that run complete use cases against our code base using nancy.testing. Now I'd like to use the same tests for what we call release tests: We deploy the complete application to a staging server and run the system…
theDmi
  • 17,546
  • 6
  • 71
  • 138
0
votes
1 answer

c# System Test Automation

I am looking for a software framework which allow me to create a flexible system test solution targeted at automated testing of small networked systems. Some of the requirements are: .net based is preferable (the company is a big .net user and has…
Walter Kelt
  • 2,199
  • 1
  • 18
  • 22
-1
votes
1 answer

How to test a distributed P2P game if it can handle 100 connections?

For a big project at school we have made a P2P variant of the famous beergame. The GUI is built in JavaFX. I have to do research on how to test a quality attribute scenario, which is the following: 100 players can connect to the game and play…
user2520459
  • 29
  • 1
  • 1
  • 8
1 2 3
9
10