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
|
#!/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
class TestAlias(TestCase):
def setUp(self):
"""Executed before each test in the class"""
self.t = Task()
def test_simple_alias_to_project(self):
"""Access a project via aliases"""
# Setup aliases
self.t.config("alias.foo", "_projects")
self.t.config("alias.bar", "foo")
self.t.config("alias.baz", "bar")
self.t.config("alias.qux", "baz")
# Setup a task with dummy project called Home
expected = "Home"
self.t("add project:{0} foo".format(expected))
# Sanity check that _projects command outputs the "Home" project
code, out, err = self.t("_projects")
self.assertIn(expected, out,
msg="task _projects -> Home")
# Check that foo command outputs the "Home" project
code, out, err = self.t("foo")
self.assertIn(expected, out,
msg="task foo -> _projects > Home")
# Check that bar command outputs the "Home" project
code, out, err = self.t("bar")
self.assertIn(expected, out,
msg="task bar -> foo > _projects > Home")
# Check that baz command outputs the "Home" project
code, out, err = self.t("baz")
self.assertIn(expected, out,
msg="task baz -> bar > foo > _projects > Home")
# Check that qux command outputs the "Home" project
code, out, err = self.t("qux")
self.assertIn(expected, out,
msg="task qux -> baz > bar > foo > _projects > Home")
def test_alias_with_implicit_filter(self):
"""Test alias containing simple filter string"""
# Setup alias with simple filter string
self.t.config("alias.foofilter", "project:Home _projects")
# Setup tasks for projects Home and Work
self.t("add project:Home Home task")
self.t("add project:Work Work task")
# Sanity check that _projects command outputs
# both the "Home" and "Work" projects
code, out, err = self.t("_projects")
self.assertIn("Home", out,
msg="task _projects -> Home")
self.assertIn("Work", out,
msg="task _projects -> Work")
# Check that foo command outputs the "Home" project
code, out, err = self.t("foofilter")
self.assertIn("Home", out,
msg="task foofilter -> project:Home _projects > Home")
self.assertNotIn("Work", out,
msg="task foofilter -> project:Home _projects > Work")
def test_alias_with_implicit_complex_filter(self):
"""Test alias containing filter string with conjuction"""
# Setup alias with simple filter string
self.t.config("alias.hometoday", "project:Home and due:today minimal")
# Setup tasks for projects Home and Work
self.t("add project:Home due:today Home urgent task")
self.t("add project:Home Home task")
self.t("add project:Work due:today Work task")
# Check that hometoday command outputs the "Home urgent task"
code, out, err = self.t("hometoday")
self.assertIn("Home urgent task", out,
msg="task hometoday -> project:Home and due:today minimal > "
"Home urgent task")
# It should not output "Home task", as that one is not due:today
self.assertNotIn("Home task", out,
msg="task hometoday -> project:Home and due:today minimal > "
"Home task")
# It should not output "Work task" either, it has entirely wrong
# project
self.assertNotIn("Work task", out,
msg="task hometoday -> project:Home and due:today minimal > "
"Work task")
class TestAliasesCommand(TestCase):
def setUp(self):
"""Executed before each test in the class"""
self.t = Task()
def test_aliases_helper(self):
"""Verify that aliases are listed by the _aliases command"""
self.t.config("alias.foo", "bar")
code, out, err = self.t("_aliases")
self.assertIn("foo", out)
class TestBug1652(TestCase):
def setUp(self):
"""Executed before each test in the class"""
self.t = Task()
self.t("add one")
def test_odd_alias(self):
"""1652: Verify that 'delete' is not lexed further"""
self.t.config("alias.rm", "delete")
self.t.config("confirmation", "off")
code, out, err = self.t("1 rm")
self.assertIn("Deleted 1 task.", out)
self.assertNotIn("No matches.", err)
class TestBug1031(TestCase):
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()
self.t.config("alias.from", "to")
def test_alias_to(self):
"""1031: alias working as expected: 'from' -> 'to'"""
self.t("add from")
code, out, err = self.t("1 info")
expected = "Description\s+to"
self.assertRegexpMatches(out, expected)
def test_alias_to_to(self):
"""1031: alias working as expected: 'from -- to' -> 'to to'"""
self.t("add from -- to")
code, out, err = self.t("1 info")
expected = "Description\s+to to"
self.assertRegexpMatches(out, expected)
def test_alias_to_from(self):
"""1031: alias working as expected: 'to -- from' -> 'to from'"""
self.t("add to -- from")
code, out, err = self.t("1 info")
expected = "Description\s+to from"
self.assertRegexpMatches(out, expected)
class Test1445(TestCase):
def setUp(self):
self.t = Task()
def test_alias_single_word(self):
"""1445: Verify single-word aliases"""
self.t.config('alias.when', 'execute date')
code, out, err = self.t('when')
self.assertEqual(0, code, "Exit code was non-zero ({0})".format(code))
self.assertIn(str(datetime.now().year), out)
def test_alias_multi_word(self):
"""1445: Verify multi-word aliases"""
self.t.config('alias.worktasks', 'list +work')
self.t('add one +work')
self.t('add two')
code, out, err = self.t('worktasks')
self.assertEqual(0, code, "Exit code was non-zero ({0})".format(code))
self.assertIn('one', out)
if __name__ == "__main__":
from simpletap import TAPTestRunner
unittest.main(testRunner=TAPTestRunner())
# vim: ai sts=4 et sw=4 ft=python
|