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
3
votes
0 answers

Rails system tests (unknown error: DevToolsActivePort file doesn't exist)

Currently changing my projects tests from rspec to built in system tests with rails 6 (also relatively new to rails) and getting this error when running 1 test. Selenium::WebDriver::Error::UnknownError: unknown error: Chrome failed to start: exited…
fev3r
  • 79
  • 6
3
votes
1 answer

Can I make an Azure storage account go offline to test my fallback code?

I am developing an Azure application (C#, .NET 6, ASP.NET Core) that uses Azure blob storage as well as table storage. I have geo-redundancy enabled on my storage account (RA_GRS) so that if my main storage account goes down, a read-only copy will…
Claus Appel
  • 1,015
  • 10
  • 28
3
votes
2 answers

Gitlab CI Config for Rails System Tests with Selenium and Headless Chrome

I'm trying to set up continuous Gitlab integration for a very simple Rails project and, despite all my searching, cannot find any workable solution for getting system tests to work using headless Chrome. Here's my .gitlab-ci.yml file: image:…
3
votes
0 answers

What to Assert in E2E Test Cases - Best Practices

I recently transferred to an existing (but new) project, still in beta, that already has a fair amount of unit, integration, and system / e2e tests. Presently, a large portion of integration and system tests are asserting equality between an…
user2402831
  • 693
  • 10
  • 22
3
votes
0 answers

Is there any Ruby test framework that supports a system under test that is asynchronous

I want to be able to test a system where I start a process and the system under test will then message back asynchronously when the process is finished. I want the test framework to wait for a response and then assert on the correctness of the…
Ross Attrill
  • 2,594
  • 1
  • 22
  • 31
3
votes
2 answers

NUnit - Multiple properties of the same name? Linking to requirements

I'm linking all our our System Tests to test cases and to our Requirements. Every requirement has an ID. Every Test Case / System Tests tests a variety of requirements. Every module of code links to multiple requirements. I'm trying to find the best…
Ryan Ternier
  • 8,714
  • 4
  • 46
  • 69
3
votes
1 answer

How can I include additional tests if a test passes?

I'm using nose to run some system tests, one of which is to test whether a (config) file exists. If this file exists, I'd like to run some additional tests on it. If not, I'd like to skip a bunch of tests. What's the best approach to take to make…
Phillip B Oldham
  • 18,807
  • 20
  • 94
  • 134
3
votes
4 answers

Testing PHP project after coding is finished

I've got a PHP project to test. I've already (almost) finished coding the project and I didn't have any testing plan at the start. Being new to PHP, I thought I'd finish the coding and start testing afterwards. As unit testing needs to be done as…
mavili
  • 3,385
  • 4
  • 30
  • 46
2
votes
0 answers

E2E Test Automation workflow with GitLab CI/CD

I am to build a test automation system for E2E testing for a company. The product is React/Node.JS based runs in a cloud (Docker & Kubernetes). The code is stored in GitLab repositories for which there are CI/CD pipelines setup for…
2
votes
1 answer

Testing a Django driven web app

I have a web app that opens and closes background process on the server. I want to simulate multiple users logging in and out of the site as well as pressing all the buttons (general interaction). I am testing the app in general as well as how well…
michael
  • 2,577
  • 5
  • 39
  • 62
2
votes
1 answer

end to end or integration or system testing

What kind of testing is this? Is the following considered end to end testing or is it an integration testing or a system testing? If not if you can elaborate on the types of testing in context of the code example. I'm basically calling the endpoint…
2
votes
2 answers

How to configure Jenkins to run my test cases in parallel?

I am building a test system with Jenkins with multiple slave nodes. I have multiple test cases where each of them take at more than 15 minutes to run. I want to make the system in a way that when I start tests Jenkins running each test case in a…
Ben Hirschberg
  • 1,410
  • 1
  • 12
  • 17
2
votes
0 answers

How to set up Jenkins for build, unit test and system tests

I want to set up Jenkins for a decent build chain for a JavaFX application that controls a robotic arm and other hardware: We are using BitBucket with the Git Flow model. We have 2 development modules and 1 System Test module in IntelliJ that we…
Chris
  • 21
  • 4
2
votes
1 answer

Rails system test generator

I was going through this article A Guide to Testing Rails Applications and I was trying to implement System Tests for some of the models. But on running the generator bin/rails generate system_test articles in the guide, I come across the following…
dhaliman
  • 1,542
  • 1
  • 12
  • 23
2
votes
3 answers

Nightwatch.js does not perform a click on a tab

I am using Nightwatch.js to test a website. I want Nightwatch.js to click on a tab on the website, but the click is not working. At least it does not have an effect... The HTML code of the element to click on looks like this.
Garrarufa
  • 1,145
  • 1
  • 12
  • 29
1 2
3
9 10