summaryrefslogtreecommitdiff
path: root/source4
diff options
context:
space:
mode:
authorSean Dague <sdague@linux.vnet.ibm.com>2011-11-02 10:02:09 -0400
committerAndrew Tridgell <tridge@samba.org>2011-11-10 14:24:20 +1100
commita66eae9a6d599f9bf5572dbe1be8ee0450c5df21 (patch)
treec8d9cc1078812e18db8b198d51eda90d25368473 /source4
parent559835dc59a074219ca71c0f8be5d881d2f5aede (diff)
downloadsamba-a66eae9a6d599f9bf5572dbe1be8ee0450c5df21.tar.gz
samba-a66eae9a6d599f9bf5572dbe1be8ee0450c5df21.tar.bz2
samba-a66eae9a6d599f9bf5572dbe1be8ee0450c5df21.zip
test: Add samba-tool time tests
Signed-off-by: Andrew Tridgell <tridge@samba.org>
Diffstat (limited to 'source4')
-rw-r--r--source4/scripting/python/samba/tests/samba_tool/timecmd.py43
1 files changed, 43 insertions, 0 deletions
diff --git a/source4/scripting/python/samba/tests/samba_tool/timecmd.py b/source4/scripting/python/samba/tests/samba_tool/timecmd.py
new file mode 100644
index 0000000000..8eb96ae874
--- /dev/null
+++ b/source4/scripting/python/samba/tests/samba_tool/timecmd.py
@@ -0,0 +1,43 @@
+#!/usr/bin/env python
+
+# Unix SMB/CIFS implementation.
+# Copyright (C) Sean Dague <sdague@linux.vnet.ibm.com> 2011
+#
+# 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 3 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, see <http://www.gnu.org/licenses/>.
+#
+
+import os
+from time import localtime, strptime, mktime
+from samba.tests.samba_tool.base import SambaToolCmdTest
+
+class TimeCmdTestCase(SambaToolCmdTest):
+ """Tests for samba-tool time subcommands"""
+
+ def test_timeget(self):
+ """Run time against the server and make sure it looks accurate"""
+ (result, out, err) = self.runcmd("time", os.environ["SERVER"])
+ self.assertCmdSuccess(result, "Ensuring time ran successfully")
+
+ timefmt = strptime(out, "%a %b %d %H:%M:%S %Y %Z\n")
+ servertime = int(mktime(timefmt))
+ now = int(mktime(localtime()))
+
+ # because there is a race here, allow up to 5 seconds difference in times
+ delta = 5
+ self.assertTrue((servertime > (now - delta) and (servertime < (now + delta)), "Time is now"))
+
+ def test_timefail(self):
+ """Run time against a non-existant server, and make sure it fails"""
+ (result, out, err) = self.runcmd("time", "notaserver")
+ self.assertEquals(out, "", "ensure no output returned")