xmpp.chapril.org-ejabberd/test
Paweł Chmielowski 51cbbf313f Remove elixir tests
Our regular suite cover most of those cases, and it get trickier and
tricker to keep those working after changes in ejabberd.
2018-12-21 15:58:02 +01:00
..
ejabberd_SUITE_data Increase validity of generated test ca cert and regenerate all certs 2018-09-24 15:19:19 +02:00
elixir-config Move mod_irc to ejabberd-contrib 2018-06-20 12:27:44 +03:00
README Note about Redis requirement in the test suite README 2018-07-15 10:14:47 +03:00
README-quicktest.md Add logger macro to help troubleshooting Elixir tests 2016-04-01 11:11:42 +02:00
announce_tests.erl Cleanup file headers 2017-01-03 15:58:52 +01:00
carbons_tests.erl Use p1_rand in the test suite 2018-07-05 11:53:04 +03:00
csi_tests.erl Fix csi tests 2018-04-12 17:08:27 +02:00
ejabberd_SUITE.erl Improve tests for mod_private 2018-11-23 16:24:44 +03:00
example_tests.erl Cleanup file headers 2017-01-03 15:58:52 +01:00
ldap_srv.erl Don't use asn1rt:decode, it's not available on R20 2017-06-28 14:51:45 +02:00
mam_tests.erl Use p1_rand in the test suite 2018-07-05 11:53:04 +03:00
muc_tests.erl Third attempt to fix the typo! 2018-08-15 12:56:41 +02:00
offline_tests.erl Use p1_rand in the test suite 2018-07-05 11:53:04 +03:00
privacy_tests.erl Fix compiler warnings regarding test cases 2018-07-11 00:07:57 +02:00
private_tests.erl Improve tests for mod_private 2018-11-23 16:24:44 +03:00
proxy65_tests.erl Use p1_rand in the test suite 2018-07-05 11:53:04 +03:00
pubsub_tests.erl pubsub_tests: Fix race condition 2018-07-10 21:25:06 +02:00
push_tests.erl Fix more tests 2018-01-25 18:43:34 +01:00
replaced_tests.erl Re-enable "replaced" tests 2017-02-21 12:53:08 +03:00
roster_tests.erl Use p1_rand in the test suite 2018-07-05 11:53:04 +03:00
sm_tests.erl Test stream management queue overload 2017-02-21 12:38:03 +03:00
suite.erl Add ability to configure test to use new sql schema 2018-09-18 09:44:54 +02:00
suite.hrl [test] Improve match macro 2018-09-14 20:27:59 +02:00
upload_tests.erl Fix compiler warnings regarding test cases 2018-07-11 00:07:57 +02:00
vcard_tests.erl Don't call deprecated jid functions from the test suite 2017-03-07 18:11:28 +03:00

README

You need MySQL, PostgreSQL, Redis and Riak up and running.
MySQL should be accepting TCP connections on localhost:3306.
PostgreSQL should be accepting TCP connections on localhost:5432.
Redis should be accepting TCP connections on localhost:6379.
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
...