xmpp.chapril.org-ejabberd/test
Mickael Remond c7c70ffa0a Add basic test for command registration 2016-03-29 15:45:48 +02:00
..
ejabberd_SUITE_data Switch back to proper log level 2016-03-25 17:42:19 +01:00
README Improve test suite explanation 2014-07-10 13:54:51 +04:00
ejabberd_SUITE.erl Proper naming for LDAP test function for shared roster 2016-03-25 17:42:58 +01:00
ejabberd_commands_test.exs Add basic test for command registration 2016-03-29 15:45:48 +02:00
ejabberd_hooks_test.exs Comment on error failures in logs + indenting 2016-03-21 09:42:59 +01:00
elixir_SUITE.erl Better error reporting when running Elixir test suite 2016-03-15 22:42:07 +01:00
jid_test.exs Add simple Elixir unit test on jid:from_string 2016-03-21 09:44:23 +01:00
ldap_srv.erl Update copyright to 2016 (#901) 2016-01-13 12:29:14 +01:00
suite.erl Allow running test groups independently 2016-03-24 10:02:13 +01:00
suite.hrl Add Redis backend to the test suite 2016-02-19 17:06:41 +03:00

README

You need MySQL, PostgreSQL and Riak up and running.
MySQL should be accepting TCP connections on localhost:3306.
PostgreSQL should be accepting TCP connections on localhost:5432.
Riak should be accepting TCP connections on localhost:8087.
MySQL and PostgreSQL should grant full access to user 'ejabberd_test' with
password 'ejabberd_test' on database 'ejabberd_test'.
Riak should be configured with leveldb as a database backend and -pz
should be pointed to the directory with ejabberd BEAM files.

Here is a quick setup example:

------------------
  PostgreSQL
------------------
$ 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
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';

-------------------
  Riak
-------------------
$ cat /etc/riak/vm.args
...
## Map/Reduce path
-pz /path/to/ejabberd/ebin
...

For version < 2.x:

$ cat /etc/riak/app.config:
...
 {riak_kv, [
            {storage_backend, riak_kv_eleveldb_backend},
...

For version >= 2.x:

$ cat /etc/riak/riak.conf:
...
storage_backend = leveldb
...