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 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252
|
#!/usr/bin/env python2.7
# -*- coding: utf-8 -*-
###############################################################################
#
# Copyright 2006 - 2016, Paul Beckingham, Federico Hernandez.
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included
# in all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
#
# http://www.opensource.org/licenses/mit-license.php
#
###############################################################################
import sys
import os
import unittest
from datetime import datetime
# Ensure python finds the local simpletap module
sys.path.append(os.path.dirname(os.path.abspath(__file__)))
from basetest import Task, TestCase
from basetest import Taskd, ServerTestCase
# Test methods available:
# self.assertEqual(a, b)
# self.assertNotEqual(a, b)
# self.assertTrue(x)
# self.assertFalse(x)
# self.assertIs(a, b)
# self.assertIsNot(a, b)
# self.assertIsNone(x)
# self.assertIsNotNone(x)
# self.assertIn(a, b)
# self.assertNotIn(a, b)
# self.assertIsInstance(a, b)
# self.assertNotIsInstance(a, b)
# self.assertRaises(e)
# self.assertRegexpMatches(t, r)
# self.assertNotRegexpMatches(t, r)
# self.tap("")
class TestBugNumber(TestCase):
@classmethod
def setUpClass(cls):
"""Executed once before any test in the class"""
# Used to initialize objects that can be shared across tests
# Also useful if none of the tests of the current TestCase performs
# data alterations. See tw-285.t for an example
def setUp(self):
"""Executed before each test in the class"""
# Used to initialize objects that should be re-initialized or
# re-created for each individual test
self.t = Task()
def test_version(self):
"""Copyright is current"""
code, out, err = self.t("version")
expected = "Copyright \(C\) \d{4} - %d" % (datetime.now().year,)
self.assertRegexpMatches(out.decode("utf8"), expected)
# TAP diagnostics on the bas
self.tap("Yay TAP diagnostics")
def test_faketime(self):
"""Running tests using libfaketime
WARNING:
faketime version 0.9.6 and later correctly propagates non-zero
exit codes. Please don't combine faketime tests and
self.t.runError().
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=750721
"""
self.t.faketime("-2y")
command = ("add Testing")
self.t(command)
# Remove FAKETIME settings
self.t.faketime()
code, out, err = self.t("list")
# Task should be 2 years old
expected = "2.0y"
self.assertIn(expected, out)
def test_fail_other(self):
"""Nothing to do with Copyright"""
self.assertEqual("I like to code", "I like\nto code\n")
@unittest.skipIf(1 != 0, "This machine has sane logic")
def test_skipped(self):
"""Test all logic of the world"""
@unittest.expectedFailure
def test_expected_failure(self):
"""Test something that fails and we know or expect that"""
self.assertEqual(1, 0)
def tearDown(self):
"""Executed after each test in the class"""
@classmethod
def tearDownClass(cls):
"""Executed once after all tests in the class"""
class TestHooksBugNumber(TestCase):
def setUp(self):
"""Executed before each test in the class"""
self.t = Task()
self.t.activate_hooks()
def test_onmodify_custom(self):
"""Testing a custom made hook"""
hookname = "on-modify-example-raw"
content = """#!/usr/bin/env python
import sys
import json
original_task = sys.stdin.readline()
modified_task = sys.stdin.readline()
task = json.loads(modified_task)
task["description"] = "The hook did its magic"
sys.stdout.write(json.dumps(task, separators=(',', ':')) + '\\n')
sys.exit(0)
"""
self.t.hooks.add(hookname, content)
self.t("add Hello hooks")
self.t("1 mod /Hello/Greetings/")
code, out, err = self.t()
self.assertIn("The hook did its magic", out)
self.t.hooks[hookname].disable()
self.assertFalse(self.t.hooks[hookname].is_active())
self.t("1 mod /magic/thing/")
code, out, err = self.t()
self.assertIn("The hook did its thing", out)
def test_onmodify_builtin_with_log(self):
"""Testing a builtin hook and keeping track of its input/output
The builtin hook in found in test/test_hooks
"""
hookname = "on-modify-for-template.py"
self.t.hooks.add_default(hookname, log=True)
self.t("add Hello hooks")
self.t("1 mod /Hello/Greetings/")
code, out, err = self.t()
self.assertIn("This is an example modify hook", out)
hook = self.t.hooks[hookname]
logs = hook.get_logs()
# Hook was called once
hook.assertTriggeredCount(1)
hook.assertExitcode(0)
# Ensure output from hook is valid JSON
# (according to python's JSON parser)
hook.assertValidJSONOutput()
# Checking which arguments were passed to the hook
self.assertIn("/Hello/Greetings/", logs["calls"][0]["args"])
# Some message output from the hook
self.assertEqual(logs["output"]["msgs"][0],
"Hello from the template hook")
# This is what taskwarrior received
self.assertEqual(logs["output"]["json"][0]["description"],
"This is an example modify hook")
def test_onmodify_bad_builtin_with_log(self):
"""Testing a builtin hook and keeping track of its input/output
The builtin hook in found in test/test_hooks
"""
hookname = "on-modify-for-template-badexit.py"
self.t.hooks.add_default(hookname, log=True)
self.t("add Hello hooks")
self.t.runError("1 mod /Hello/Greetings/")
code, out, err = self.t()
self.assertNotIn("This is an example modify hook", out)
hook = self.t.hooks[hookname]
logs = hook.get_logs()
# Hook was called once
hook.assertTriggeredCount(1)
hook.assertExitcode(1)
# Some message output from the hook
self.assertEqual(logs["output"]["msgs"][0],
"Hello from the template hook")
# This is what taskwarrior would have used if hook finished cleanly
self.assertEqual(logs["output"]["json"][0]["description"],
"This is an example modify hook")
class ServerTestBugNumber(ServerTestCase):
@classmethod
def setUpClass(cls):
cls.taskd = Taskd()
# This takes a while...
cls.taskd.start()
def setUp(self):
"""Executed before each test in the class"""
self.t = Task(taskd=self.taskd)
# Or if Task() is already available
# self.t.bind_taskd_server(self.taskd)
def test_server_sync(self):
"""Testing if client and server can speak to each other"""
self.t("add Something to sync")
self.t("sync")
if __name__ == "__main__":
from simpletap import TAPTestRunner
unittest.main(testRunner=TAPTestRunner())
# vim: ai sts=4 et sw=4 ft=python
|