24
1
mirror of https://github.com/processone/ejabberd.git synced 2024-06-02 21:17:12 +02:00
xmpp.chapril.org-ejabberd/test
Matwey V. Kornilov 50a73d1188 Use -include_lib instead of -include for esip and p1_xml
-include_lib is used in order to find deps. Rebar include magic is not required anymore.
Rebar uses deps as library directory.
2014-07-05 17:57:35 +04:00
..
ejabberd_SUITE_data Fix roster version support 2013-09-24 18:59:20 +10:00
ejabberd_SUITE.erl Fix roster version support 2013-09-24 18:59:20 +10:00
ldap_srv.erl Use error_logger directly in the LDAP test server 2013-07-07 03:48:16 +10:00
README test/README: Create MySQL test user on 'localhost' 2014-05-04 01:02:22 +02:00
suite.erl Do not use functions from crypto module wherever possible 2013-11-05 20:07:38 +10:00
suite.hrl Use -include_lib instead of -include for esip and p1_xml 2014-07-05 17:57:35 +04:00

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'@'localhost' IDENTIFIED BY 'ejabberd_test';
mysql> CREATE DATABASE ejabberd_test;
mysql> GRANT ALL ON ejabberd_test.* TO 'ejabberd_test'@'localhost';