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

maxReceivedMessageSize property performing different across environments

We have three identical test environments set up. On each of these environments, we have an application that, when you hit a submit button, grabs text from a form and turns it into an XML and then sends it to a WCF to be inserted into our Oracle…
1
vote
1 answer

How to setup test enviroment using the same vagrant provisioner

Currrently, we are setting up development environment using Vagrant. All software (php, mysql, apache, memcached..) are installed using Vagrant Chef solo provisioner. Now we want to create a test environment using a physical machine (it has same OS…
truongnguyen1912
  • 1,195
  • 8
  • 7
1
vote
1 answer

How to restrict the staging environment in Openshift from being accessed by others

I have been reading about release management for Openshift and have found a nice process described in Openshifts official blog. According to this process you develop the application locally, then deploy it to a staging environment and in the end,…
eternitysharp
  • 479
  • 5
  • 16
1
vote
1 answer

Environment Variables not propagating into Gradle test environment

I'm trying to run a Gradle build, and am restricted to using version 1.8. I have some tests that require environment variables to be set, but they keep failing. I used the following code to debug: test { println System.getenv("PATH") } And it…
radar
  • 595
  • 2
  • 11
1
vote
2 answers

Move wordpress from test environent to production environment and keep posts

I want to move my wordpress dir form my development environment to my production environent. The thing is that my production environment is an ongoing blog were I want to use the posts thats on my blog and not the fake posts on my development…
Edvard Åkerberg
  • 2,181
  • 1
  • 26
  • 47
1
vote
3 answers

Different environments included in Ruby on Rails

Can someone explain to me what the Rails environments are and what they do? I have tried researching myself, but could not find anything. From what I gather, the environments are: Development Productions Test
1
vote
0 answers

Cannot Setup Debugging Environment for Php using Eclipse and XDebug on Ubuntu?

I am following this guide to setup a debugging environment for my PHP application. I am using eclipse and xdebug. I have done all the things that the guide has asked me to do. But when I put the breakpoints and run the application, the IDE doesn't…
odbhut.shei.chhele
  • 5,834
  • 16
  • 69
  • 109
1
vote
1 answer

Git : Deploy web application production and test versions in different servers

I am new to Git. I have a Laravel PHP application in two servers. Test server (for testing) Live server (for production) Once I finish working with the local application repository, I push the changes into the remote repository. After that, I use…
1
vote
1 answer

construct test environment for web application on PC - directory issues

I have a site that physically has this directory structure. -public_html --conf > contains file conf.php -SiteFiles -LiveSite > contains file ConfLive.php Directory public_html/conf/ contains a file called conf.php this file contains the…
ernie
  • 119
  • 10
1
vote
0 answers

Environment specific dataprovider

My requirement : Different data for different environments. I believe this is a common requirement, and I am looking for suggestions on best practices to go about doing this. Is there a way dataprovider in testNg can be made to supply data based on…
1
vote
1 answer

Use CommonsMultipartResolver in Spring and config in test

I have an integration test that make a request (uploading a file) on my controller. The test works without setup any CommonsMultipartResolver. But in the moment where I have to setup the production environment I have to add the…
1
vote
1 answer

Using geocoder only in development or production environment

I use the geocoder gem in my app, and when I run my tests, I meet the limit query error from Google. So I don't want to use it when I'm in a test environment, and I want some of my pages not to display some information when I'm in test, in order not…
Flo Rahl
  • 1,044
  • 1
  • 16
  • 33
1
vote
0 answers

how to change different environments easily in asp.net application?

I have an asp.net application that needs to run on different environment such as development, test and production. The site uses a couple of connection strings, 3 web services, different Url paths for OData services, different file upload…
1
vote
1 answer

Submitting new OpenGraph Action for review without deploying it to the live environment

I am running a website with OpenGraph actions, which has two separate Facebook Apps associated with it (a "live" and "approval" app). This allows us to make breaking changes to the app during development without affecting live. I have now made one…
1
vote
1 answer

Proxy in ruby gem "twitter_oauth"

My test environment for my Ruby (Sinatra + twitter_oauth) project is behind a proxy. In the documentation, I read how to use the twitter_oauth gem with a proxy. But there the author says: First you need to authorize the Twitter user via OAuth…
ada91
  • 828
  • 2
  • 7
  • 19