xmpp.chapril.org-ejabberd/test
Evgeniy Khramtsov 2ea397e476 Pre-load applications before setting the environment variables 2013-06-27 19:03:25 +10:00
..
ejabberd_SUITE_data Fix external authentication 2013-06-26 12:30:32 +10:00
README Clarify MySQL/PostgreSQL preparation for running the test suite. 2013-06-19 21:52:50 +10:00
ejabberd_SUITE.erl Split the test suite into modules 2013-06-27 15:36:23 +10:00
ldap_srv.erl Add LDAP test cases 2013-06-22 03:28:17 +10:00
suite.erl Pre-load applications before setting the environment variables 2013-06-27 19:03:25 +10:00
suite.hrl Split the test suite into modules 2013-06-27 15:36:23 +10:00

README

You need MySQL and PostgreSQL up and running.
MySQL should be accepting TCP connections on localhost:3306.
PostgreSQL should be accepting TCP connections on localhost:5432.
Both of them should grant full access to user 'ejabberd_test' with
password 'ejabberd_test' on database 'ejabberd_test'.

Here is a quick setup example:

$ psql template1
template1=# CREATE USER ejabberd_test WITH PASSWORD 'ejabberd_test';
template1=# CREATE DATABASE ejabberd_test;
template1=# GRANT ALL PRIVILEGES ON DATABASE ejabberd_test TO ejabberd_test;

$ mysql
mysql> CREATE USER ejabberd_test IDENTIFIED BY 'ejabberd_test';
mysql> CREATE DATABASE ejabberd_test;
mysql> GRANT ALL ON ejabberd_test.* TO ejabberd_test;