Just run "make check".
CartoDB tests are based on Ruby Spec. The procedure to run them is as follows:
bundle exec rake cartodb:test:prepare
bundle exec rspec
If you want to run specific tests, rather than all of them, you
can specify them on the rspec
command line, like:
bundle exec rspec spec/lib/sql_test_spec.rb
To avoid wasting time and resources creating once and again test users, if you require 'spec_helper' you have two "global test users" for the whole suite to use, $user_1 and $user_2. Just take care to not destroy or leave them in inconsistent state between test batteries.
You can also use the following runParallelTests.sh
script to run the tests in a multithreaded way.
Run script/ci/runParallelTests.sh X
where X is a number of threads to use.
Common system configuration issues are reported in this section.
-
"No such user: test_cartodb_user_###"
Make sure test.port in config/database.yml is not pointing to pg_bouncer, as dynamically created database roles aren't easily supported by it (you'd need to explicitly list allowed usernames, and over 70 new users are created during a full testsuite run).
CartoDB is a large app. We recommend you use the spin gem to load the main application into memory while you are testing. TODO: document how