smbd: improve reinit_after_fork error handling
[Samba.git] / python / samba / tests / samba_tool / processes.py
blob440779752b0d771afe7abaae8ea97edb530d87e4
1 # Unix SMB/CIFS implementation.
2 # Copyright (C) Andrew Bartlett 2012
4 # based on time.py:
5 # Copyright (C) Sean Dague <sdague@linux.vnet.ibm.com> 2011
7 # This program is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with this program. If not, see <http://www.gnu.org/licenses/>.
21 import os
22 from samba.tests.samba_tool.base import SambaToolCmdTest
25 class ProcessCmdTestCase(SambaToolCmdTest):
26 """Tests for samba-tool process subcommands"""
28 def test_name(self):
29 """Run processes command"""
30 (result, out, err) = self.runcmd("processes", "--name", "samba")
31 self.assertCmdSuccess(result, out, err, "Ensuring processes ran successfully")
33 def test_unknown_name(self):
34 """Run processes command with an not-existing --name"""
35 (result, out, err) = self.runcmd("processes", "--name", "not-existing-samba")
36 self.assertCmdSuccess(result, out, err, "Ensuring processes ran successfully")
37 self.assertEqual(out, "")
39 def test_all(self):
40 """Run processes command"""
41 (result, out, err) = self.runcmd("processes")
42 self.assertCmdSuccess(result, out, err, "Ensuring processes ran successfully")