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

Integration Testing a Node Server without much configuration

I want to set up a CI/CD workflow which includes testing my server as a whole. Using node I have a couple options such as Jest, Mocha, Chai or a different approach such as Postman/Newman. I have tried out Jest and found it very difficult to adjust…
0
votes
2 answers

unit, integration, system tests for Codeblocks IDE

I recently was given control of a project that is based on the Codeblocks IDE. This project consists of large make scripts, gcc for motorola microcontrollers, and example C programs. The code is under subversion source-control, but there are no…
benathon
  • 7,455
  • 2
  • 41
  • 70
0
votes
2 answers

How to skip a test in pytest *before* fixtures are computed

I have a fairly large test suite written with pytest which is meant to perform system tests on an application that includes communication between server side and client side. The tests have a huge fixture which is initialized to contain information…
alon-k
  • 330
  • 2
  • 11
0
votes
1 answer

How to access Interactive Generator block (IG) in Vector CANoe Simulation through Python?

I am trying to automate some CANoe functions using a python tool. I am unable to access the particulars of the CAN IG? Is there anyway I can do it so that I can control it using Python?
Urmi Bose
  • 25
  • 1
  • 8
0
votes
1 answer

Capybara ingore `within` scope at specify assertion

Suppose I'm testing a form with Capybara and Minitest, the form has a text input, which using bootstrap-datepicker, I wanna unscope(like ActiveRecord) the within('form') scope only at assert_selector '.datepicker-dropdown', count: 1, as…
Fangxing
  • 5,716
  • 2
  • 49
  • 53
0
votes
2 answers

Configuring system tests in junit

We currently have a dedicated tool for running system tests on our web services, but I've been thinking of re-writing it to be hostable within jUnit4. This would give us several advantages, including the full power of Java to set up and assert…
ICR
  • 13,896
  • 4
  • 50
  • 78
0
votes
1 answer

Change Rails session for tests with Capybara

I need to test a page in my Rails 5.2 app that displays the current cart if the user is not logged with Capybara system test. The app retrieves the cart by the card_id saved in the rails session (session[:cart_id] = @cart.id) My test looks like…
Pioz
  • 6,051
  • 4
  • 48
  • 67
0
votes
1 answer

nativescript-dev-appium e2e test failed

I'm try to e2e testing with nativescript-dev-appium, but failed. I don't know what's wrong. I'm coding with this link https://github.com/NativeScript/ns-dev-days-appium-plugin and this is android28 "android28": { "platformName": "Android", …
0
votes
1 answer

How to setup puffing-billy to Rails System Test

I'm trying to setup puffing-billy to work with Rails System Test. Since it uses Capybara for that, I tried all the documented Capybara solutions here, but didn't seem to get it correctly setup. System Test generates an…
PuckXY
  • 59
  • 3
0
votes
1 answer

How to stub headless_chrome requisitions with web_mock on src attributes on img tags

I'm trying to use Webmock to stub headless chrome requisitions. I simply want to test the following: Given a select and a carousel tags (the carousel is implemented using Swiper), if I change the select tag, the current showing image of the carousel…
PuckXY
  • 59
  • 3
0
votes
0 answers

How to fix ActionController::RoutingError for Ruby on Rails System Test?

I have just started some system tests for my current application and I have now hit a roadblock. test "visiting the timesheet index without signing in" do visit timesheets_path assert_text "You need to sign in or sign up before…
0
votes
1 answer

How to system test with Mockito? Should we?

My project includes various of spring boot @Services which use third-party APIs. We've written a mocked class for every such service and we run the system test in such way that Spring Boot chooses the mocked classes rather than the real ones (using…
IsaacLevon
  • 2,260
  • 4
  • 41
  • 83
0
votes
1 answer

How do I programmatically report the TFS/AzureDevOps changeset number in my logs

I sometimes find myself binary searching through changesets and running tests to determine when a defect was introduced. This leaves me with a lot of very similar logs to sift through, and sometimes I have trouble remembering which diagnostic file…
ORcoder
  • 252
  • 2
  • 11
0
votes
0 answers

Get functions return value "mid-run" in .net?

I am trying to create a system test for an old code base where there is no interfaces and most functions are private. The application gets data from another system, transforms it to a "better format" and saves it to a cache. I want to read the…
Nings
  • 355
  • 1
  • 2
  • 12
0
votes
1 answer

Can Opereto be installed on any cloud-native environment?

I saw that Opereto can be installed on a single node using docker-compose. However, I would like to scale by installing Opereto on Kubernetes. Is it supported as well? Thanks