xmpp.chapril.org-ejabberd/test
Paweł Chmielowski 3e8f3573a3 Make count_offline_messages cache work when offline uses mam for storage
This also replace existing cache for checking if spool is empty with this
cache.
2019-07-01 13:36:41 +02:00
..
docker Add data clean up suggested command 2019-05-24 10:31:51 +02:00
ejabberd_SUITE_data Make count_offline_messages cache work when offline uses mam for storage 2019-07-01 13:36:41 +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
announce_tests.erl Manually update 2017 copyright dates (#2756) 2019-01-08 22:52:26 +01:00
carbons_tests.erl Manually update 2017 copyright dates (#2756) 2019-01-08 22:52:26 +01:00
csi_tests.erl Manually update 2017 copyright dates (#2756) 2019-01-08 22:52:26 +01:00
ejabberd_SUITE.erl Use new configuration validator 2019-06-14 12:33:26 +03:00
example_tests.erl Manually update 2017 copyright dates (#2756) 2019-01-08 22:52:26 +01:00
ldap_srv.erl Use new configuration validator 2019-06-14 12:33:26 +03:00
mam_tests.erl Use new configuration validator 2019-06-14 12:33:26 +03:00
muc_tests.erl Use new configuration validator 2019-06-14 12:33:26 +03:00
offline_tests.erl Use new configuration validator 2019-06-14 12:33:26 +03:00
privacy_tests.erl Manually update 2017 copyright dates (#2756) 2019-01-08 22:52:26 +01:00
private_tests.erl Improve private and MAM tests in order to reflect 2019-01-14 19:33:23 +03:00
proxy65_tests.erl Manually update 2017 copyright dates (#2756) 2019-01-08 22:52:26 +01:00
pubsub_tests.erl Manually update 2017 copyright dates (#2756) 2019-01-08 22:52:26 +01:00
push_tests.erl Fix typo in comment 2019-01-10 11:07:24 +01:00
replaced_tests.erl Manually update 2017 copyright dates (#2756) 2019-01-08 22:52:26 +01:00
roster_tests.erl Manually update 2017 copyright dates (#2756) 2019-01-08 22:52:26 +01:00
sm_tests.erl Manually update 2017 copyright dates (#2756) 2019-01-08 22:52:26 +01:00
suite.erl Use new configuration validator 2019-06-14 12:33:26 +03:00
suite.hrl Use new configuration validator 2019-06-14 12:33:26 +03:00
upload_tests.erl Update copyright to 2019 (#2756) 2019-01-08 22:53:27 +01:00
vcard_tests.erl Manually update 2017 copyright dates (#2756) 2019-01-08 22:52:26 +01: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
...