xmpp.chapril.org-ejabberd/test
Badlop 1ee64091b3 Fix extauth.py failure in test suite with Python 3 (#3612) 2021-05-25 18:39:18 +02:00
..
docker Fix docker DB initialization 2020-09-25 18:13:35 +01:00
ejabberd_SUITE_data Fix extauth.py failure in test suite with Python 3 (#3612) 2021-05-25 18:39:18 +02:00
elixir-config Move mod_irc to ejabberd-contrib 2018-06-20 12:27:44 +03:00
README enable tests with mssql-backend (#3136) 2020-04-28 16:22:42 +02:00
announce_tests.erl Update newest copyright year to 2021 (#3464) 2021-01-27 17:02:06 +01:00
carbons_tests.erl Update newest copyright year to 2021 (#3464) 2021-01-27 17:02:06 +01:00
csi_tests.erl Update newest copyright year to 2021 (#3464) 2021-01-27 17:02:06 +01:00
ejabberd_SUITE.erl Update newest copyright year to 2021 (#3464) 2021-01-27 17:02:06 +01:00
example_tests.erl Update newest copyright year to 2021 (#3464) 2021-01-27 17:02:06 +01:00
jidprep_tests.erl Update newest copyright year to 2021 (#3464) 2021-01-27 17:02:06 +01:00
ldap_srv.erl Update newest copyright year to 2021 (#3464) 2021-01-27 17:02:06 +01:00
mam_tests.erl Fix MAM tests that now fail due to commit d6e9e0342 (#3506) 2021-02-01 00:09:10 +01:00
muc_tests.erl Update newest copyright year to 2021 (#3464) 2021-01-27 17:02:06 +01:00
offline_tests.erl Update newest copyright year to 2021 (#3464) 2021-01-27 17:02:06 +01:00
privacy_tests.erl Update newest copyright year to 2021 (#3464) 2021-01-27 17:02:06 +01:00
private_tests.erl Update newest copyright year to 2021 (#3464) 2021-01-27 17:02:06 +01:00
proxy65_tests.erl Update newest copyright year to 2021 (#3464) 2021-01-27 17:02:06 +01:00
pubsub_tests.erl Update newest copyright year to 2021 (#3464) 2021-01-27 17:02:06 +01:00
push_tests.erl Update newest copyright year to 2021 (#3464) 2021-01-27 17:02:06 +01:00
replaced_tests.erl Update newest copyright year to 2021 (#3464) 2021-01-27 17:02:06 +01:00
roster_tests.erl Update newest copyright year to 2021 (#3464) 2021-01-27 17:02:06 +01:00
sm_tests.erl Update newest copyright year to 2021 (#3464) 2021-01-27 17:02:06 +01:00
stundisco_tests.erl crypto:hmac is removed in Erlang/OTP 24, use our wrapper 2021-03-04 16:41:27 +01:00
suite.erl Update newest copyright year to 2021 (#3464) 2021-01-27 17:02:06 +01:00
suite.hrl Miscellaneous rebar3 fixes 2020-09-23 15:52:21 +01:00
upload_tests.erl Update newest copyright year to 2021 (#3464) 2021-01-27 17:02:06 +01:00
vcard_tests.erl Update newest copyright year to 2021 (#3464) 2021-01-27 17:02:06 +01:00
webadmin_tests.erl Update newest copyright year to 2021 (#3464) 2021-01-27 17:02:06 +01:00

README

You need MySQL, MSSQL, PostgreSQL and Redis up and running.
MySQL should be accepting TCP connections on localhost:3306.
MSSQL should be accepting TCP connections on localhost:1433.
PostgreSQL should be accepting TCP connections on localhost:5432.
Redis should be accepting TCP connections on localhost:6379.
MySQL and PostgreSQL should grant full access to user 'ejabberd_test' with
password 'ejabberd_test' on database 'ejabberd_test'.
MSSQL should grant full access to user 'ejabberd_test' with
password 'ejabberd_Test1' on database 'ejabberd_test'.

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;
$ psql ejabberd_test -f sql/pg.sql

-------------------
  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';
$ mysql ejabberd_test < sql/mysql.sql

-------------------
  MS SQL Server
-------------------
$ sqlcmd -U SA -P ejabberd_Test1 -S localhost
1> CREATE DATABASE ejabberd_test;
2> GO
1> USE ejabberd_test;
2> GO
Changed database context to 'ejabberd_test'.
1> CREATE LOGIN ejabberd_test WITH PASSWORD = 'ejabberd_Test1';
2> GO
1> CREATE USER ejabberd_test FOR LOGIN ejabberd_test;
2> GO
1> GRANT ALL TO ejabberd_test;
2> GO
The ALL permission is deprecated and maintained only for compatibility. It DOES NOT imply ALL permissions defined on the entity.
1> GRANT CONTROL ON SCHEMA ::dbo TO ejabberd_test;
2> GO
$ sqlcmd -U ejabberd_test -P ejabberd_Test1 -S localhost -d ejabberd_test -i sql/mssql.sql