Questions tagged [test-environments]

The execution environment (server, data, users) for testing software.

There can be several phases of testing, each could require different text environments. They could be hosted on the same or different servers, but often they may have different sets of data and possibly users.

Some frequent types of test environments include (these definitions will vary at different companies):

  • Integration Test: First environment where individual programs are combined together to ensure interoperability
  • System Test: Where complete sets of well-defined test cases are run to exercise all business requirements
  • User Acceptance Test: Where end-users test out (new) functionality to ensure it meets their goals and data/results are valid
  • Performance Test: Testing that stresses the system with high volumes of data and transactions.
109 questions
1
vote
1 answer

Disconnect TFS Clone from production systems

How can I ensure that a TFS 2010/2012 clone doesn't interact systems from my production environment? I want to run the clone in parallel for doing an upgrade test and some further tests. The clone should not interact with production systems. Is…
Sven-Michael Stübe
  • 14,560
  • 4
  • 52
  • 103
1
vote
1 answer

`plus` in email to have unique versions of same email how does it work? Managing production and test environment

I am having a web application with a production with hundreds of real users.. I needed to have one test environment with the state of production, as the application is data-driven, states of application change from data, things can-not be tested, if…
1
vote
3 answers

Productive data on the test system

I need some suggestions of how you handle your test data in manual UI tests. Our application needs data from a database to work and to being tested manually. Since we are dealing with sensitive data we are not allowed to make a dump of productive…
Kai
  • 38,985
  • 14
  • 88
  • 103
0
votes
2 answers

How can I copy a Microsoft Dynamics CRM 4.0 solution

I have a CRM 4.0 solution in production and I would like to make a replica of it so that I can use it as a test server. What are the alternatives to accomplish this? Cons / Pros?
thehhv
  • 3,338
  • 1
  • 23
  • 19
0
votes
0 answers

Symfony doctrine migrations --env=test errors

i have a probleme with migrations when i add '--env=test'; the 'd:m:m' command work without 'env=test' .... I create the test database using "symfony console d:d:c --env=test" all work the database is created, after i do 'symfony console d:m:m -n…
0
votes
0 answers

Changing testing environments for DEBUG. C#. NUnit

There is a problem of switching test environments when developing autotests and debugging them. When starting remotely, there are mandatory parameters for selecting the testing environment, there are no problems here. The code looks like…
Jacki
  • 1
0
votes
1 answer

How to integrate Google Pay on web with DIRECT type (TEST Environment)

How to do Google Pay integration with DIRECT type? I can't get what to do in this case. Is it possible at all to integrate Google Pay Test Environment with this type? Is it possible to work with test keys for tokenization? Google provides guide for…
hdanske
  • 21
  • 1
  • 5
0
votes
1 answer

Kubernetes Preview environments

I would like to ask what people use to provision an ephemeral preview environment in AWS EKS for your service under test. Also in addition, I am curious to know how you provision any dependent services (such as Database). E.g. I am working on a…
0
votes
0 answers

Visual Studio 2022 Remote Testing Windows CTC1015 invalid volume specification

I am using Visual Studio 2022 17.3.3 and have configured Remote Testing to use a docker image. When I switch over the remote environment in 'Test Explorer' I get the following error: Docker remote environment is starting using image…
0
votes
0 answers

I am getting wrong result while getting the data from API FlightOfferSearch. Amadeus

here is my amadeusConnect.class public FlightOfferSearch[] flightsOne(String origin, String destination, String departDate, String adults) throws ResponseException { return amadeus.shopping.flightOffersSearch.get( …
0
votes
0 answers

How to configure Rails test environment for both controller unit tests and system tests that require forgery protection

How do I configure my Rails test environment so I can both Run integration tests on my controllers (which require forgery protection turned off), and Run system tests that require forgery protection turned on? (The system tests need forgery…
Zack
  • 6,232
  • 8
  • 38
  • 68
0
votes
1 answer

How to create a Dev/Test environment on Azure SQL Database?

On the Holy Book of SQL Server The Messiah once described how a Test/Dev environment should look like in a perfect World: "In a perfect world, my test/QA servers get restored nightly from production. Let’s say every night at 9pm, the production full…
0
votes
1 answer

Why php artisan make: test PostTest --unit command creates a new test extends not from Tests\TestCase, but from PHPUnit\Framework\TestCase? Laravel 8

The test environment is enabled in the Tests\TestCase class via the createApplication() method, but not in the PHPUnit\Framework\TestCase class. So why then when the artisan creates a new test that extends from PHPUnit\Framework\TestCase class?
0
votes
1 answer

EmberJS: `ember serve --environment=test` renders blank page

My team is moving to use Cypress for integration testing rather than Embers Acceptance tests. Before, we would just run ember test which set the environment to "test". Now, I don't want to run embers testing suite but I still want the "test" version…
Ian Kirkpatrick
  • 1,861
  • 14
  • 33
0
votes
1 answer

reactjs : detect i'm in dev or test environment

I develop a ReactJS App with TypeScript that calls an api, there are two global environments (dev and test (not production)) with different URLs, for example: baseurl for dev environment: https://dev.example.com/ baseurl for test environment:…
Dalal Mansour
  • 197
  • 5
  • 14