aboutsummaryrefslogtreecommitdiff
path: root/test/ejabberd_admin_test.exs
blob: 1c999314cef692c81af0b242772def3476a1fb1b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
# ----------------------------------------------------------------------
#
# ejabberd, Copyright (C) 2002-2015   ProcessOne
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License as
# published by the Free Software Foundation; either version 2 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#
# ----------------------------------------------------------------------

defmodule EjabberdAdminTest do
	use ExUnit.Case, async: false

	@author "jsautret@process-one.net"

	setup_all do
		:mnesia.start
		# For some myterious reason, :ejabberd_commands.init mays
		# sometimes fails if module is not loaded before
		{:module, :ejabberd_commands} = Code.ensure_loaded(:ejabberd_commands)
		:ejabberd_commands.init
		:ejabberd_admin.start
		:ok
	end

	setup do
		:ok
	end

	test "Logvel can be set and retrieved" do
		:ejabberd_logger.start()

		assert :lager == :ejabberd_commands.execute_command(:set_loglevel, [1])
		assert {1, :critical, 'Critical'} ==
			:ejabberd_commands.execute_command(:get_loglevel, [])

		assert :lager == :ejabberd_commands.execute_command(:set_loglevel, [2])
		assert {2, :error, 'Error'} ==
			:ejabberd_commands.execute_command(:get_loglevel, [])

		assert :lager == :ejabberd_commands.execute_command(:set_loglevel, [3])
		assert {3, :warning, 'Warning'} ==
			:ejabberd_commands.execute_command(:get_loglevel, [])

		assert {:wrong_loglevel, 6} ==
			catch_throw :ejabberd_commands.execute_command(:set_loglevel, [6])
		assert {3, :warning, 'Warning'} ==
			:ejabberd_commands.execute_command(:get_loglevel, [])

		assert :lager == :ejabberd_commands.execute_command(:set_loglevel, [4])
		assert {4, :info, 'Info'} ==
			:ejabberd_commands.execute_command(:get_loglevel, [])

		assert :lager == :ejabberd_commands.execute_command(:set_loglevel, [5])
		assert {5, :debug, 'Debug'} ==
			:ejabberd_commands.execute_command(:get_loglevel, [])

		assert :lager == :ejabberd_commands.execute_command(:set_loglevel, [0])
		assert {0, :no_log, 'No log'} ==
			:ejabberd_commands.execute_command(:get_loglevel, [])

	end

	test "command status works with ejabberd stopped" do
		assert :ejabberd_not_running ==
			elem(:ejabberd_commands.execute_command(:status, []), 0)
	end

end