Tagged Questions
0
votes
2answers
31 views
What is the correct way to run Rails tests without invoking the development environment?
I have an Rails app, with some initializer code which must be executed when the app is running in development mode. However, this initializer code must not be executed when running tests.
I have ...
1
vote
1answer
49 views
How can I determine if my rails is in the development environment and not the test environment?
I have some code that needs to run only if the rails app is in the development environment (i.e. $ rails server) but not in the test environment (i.e. $ rake test).
When I try
if ...
0
votes
0answers
105 views
How to call/mock Oracle BPM processes to build a custom test environment
I'm thinking about automated test environment for processes created in Oracle BPM.
To create such environment I need two features:
be able to call a process from outside of the BPM server
be able ...
0
votes
2answers
26 views
How do i know at runtime in Android if it is a test or a live environment?
How do i know at runtime in Android if it is a test environment runned from Eclipse or a signned version installed from the Market? (i need to run some debug code only when testing, because in live i ...
3
votes
3answers
85 views
Why is it bad to develop on a testserver? [closed]
At our current project we have 1. a production server, 2. a test server and 3. several developers using xampp under Windows. Prod- and Testserver are run by UNIX.
One of the other developers is ...
0
votes
2answers
94 views
All test related tasks running in development envrionment — Rails 3
When I run a task that should be running in the test environment, it is running in development. This includes rake test:(units/functionals/integration) and rake db:test:prepare. A side effect is ...
0
votes
0answers
20 views
Does anyone know of a program that can simulate system conditions?
An example of the system conditions that I would like to simulate are, low memory, out of memory, loss of connectivity etc. The one that I used before ran like a sandbox on my machine but ...
0
votes
0answers
33 views
Install newer .NET and run a child process that uses it from one parent process?
I'm trying to automate some test runs in my company and constraint I operate under is that I have one process (that I can change to run whatever I want), but once it finishes automation cleans up ...
0
votes
1answer
156 views
Rails Test Environment Named Routes
I've noticed that when I run tests (using Rspec and spork, if that matters), my hostname is set to www.example.com. So if I do:
visit sports_url
the test is actually going to ...
0
votes
1answer
34 views
Approach to development environments
I was wondering how companies organize their development environments. More specifically I am interested to know:
Does each developer has a complete deployment environment including application ...
1
vote
2answers
699 views
Wordpress: How to copy your productive environment to create a test-environment?
What are the steps, which are needed to create a copy of a productive wordpress environment for testing purposes, respectively to create a staging environment?
3
votes
2answers
643 views
Rails: Redirect all outgoing emails to single address for testing
In Ruby on Rails, I'm in a situation where I'd like my application (in a particular testing environment) to intercept all outgoing emails generated by the application and instead send them to a ...
3
votes
2answers
112 views
Setting up a web developer lab for learning purposes
I'm not a developer by profession. Therefore, I'm not exposed to real world technical problems that face professional developers. I read/heard about web farms, integration between different systems, ...
0
votes
1answer
284 views
Automatically run gem tasks in test environment
I have a Rails 3 gem which has some rake tasks that should only be run in the test environment. Running in other environments doesn't really make sense.
My problem is Rake loads the Rails system in ...
2
votes
1answer
165 views
Django testing environment
I have deployed several Django-driven sites, mostly "concept" stuff; nothing serious. Now I'm ready to deploy a real-deal site (for my brother's medical practice), and would like to ensure that I'm ...
1
vote
1answer
46 views
How do I generate test data for heterogeneous environments?
I am facing a new task in my job and I need to find out how to generate and administer test data. Googling led to a lot of information about specific test data generation like filling a database with ...
0
votes
1answer
606 views
Rails test across multiple environments
Is there some way to change Rails environments mid-way through a test? Or, alternately, what would be the right way to set up a test suite that can start up Rails in one environment, run the first ...
2
votes
2answers
83 views
How to set up a clean test machine for every test
I want to know if there are any general guidelines that programmers in general and QA in particular follows for setting up a clean test system.
The system should be clean every day, free of any ...
11
votes
6answers
14k views
How to test HQL queries?
I'm searching for a fast (really fast) way to test changes to hibernate queries. I have a huge application with thousands of different HQL queries (in XML files) and 100+ mapped classes and i dont ...
1
vote
7answers
1k views
VoIP test environment
I want to build a VoIP test environment for a student project. It should use SIP.
My first idea is to use Asterisk, OpenSIPS or FreeSWITCH for the server and SIP Communicator, Minisip or Linphone as ...
11
votes
3answers
4k views
Development and production environment in PHP
I would like to setup two environments for my new website written in PHP. One - to develop new versions and test them. And second production where my actual stable version of website will be ...