tests: Add a blackbox test for smbcontrol
[samba.git] / python / samba / tests / blackbox / smbcontrol.py
1 # Blackbox tests for smbcontrol
2 #
3 # Copyright (C) Catalyst IT Ltd. 2017
4 #
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 3 of the License, or
8 # (at your option) any later version.
9 #
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
17 #
18
19 from samba.tests import BlackboxTestCase
20 from samba.messaging import Messaging
21
22 COMMAND = "bin/smbcontrol"
23 PING    = "ping"
24 USAGE   = "pool-usage"
25
26
27 class SmbcontrolBlockboxTests(BlackboxTestCase):
28
29     def setUp(self):
30         super(SmbcontrolBlockboxTests, self).setUp()
31         lp_ctx = self.get_loadparm()
32         self.msg_ctx = Messaging(lp_ctx=lp_ctx)
33
34     def test_expected_processes(self):
35         """
36         Test that the expected samba processes are running, currently we only
37         check that at least one process is running
38         """
39         processes = self.msg_ctx.irpc_all_servers()
40         if not processes:
41             self.fail("No samba processes returned")
42
43     def test_ping(self):
44         """Test that all the samba processes can be pinged"""
45
46         processes = self.msg_ctx.irpc_all_servers()
47         for p in processes:
48             for id in p.ids:
49                 if p.name != "samba":
50                     self.check_run("%s %d %s" % (COMMAND, id.pid, PING))