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
|
#!/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
# Ensure python finds the local simpletap module
sys.path.append(os.path.dirname(os.path.abspath(__file__)))
from basetest import Task, TestCase
class TestAdd(TestCase):
def setUp(self):
self.t = Task()
def test_add(self):
"Testing add command"
self.t("add This is a test")
code, out, err = self.t("_get 1.description")
self.assertEqual(out, "This is a test\n")
def test_modify_slash(self):
"Test the /// modifier"
self.t("add This is a test")
self.t("1 modify /test/TEST/")
self.t("1 modify '/is //'")
code, out, err = self.t("_get 1.description")
self.assertEqual(out, "This a TEST\n")
def test_floating_point_preservation(self):
"""924: Verify that floating point numbers are unmolested
Bug 924: '1.0' --> '1.0000'
"""
self.t("add release 1.0")
self.t("add 'release 2.0'")
self.t("add \\\"release 3.0\\\"")
code, out, err = self.t("_get 1.description")
self.assertEqual(out, "release 1.0\n")
code, out, err = self.t("_get 2.description")
self.assertEqual(out, "release 2.0\n")
code, out, err = self.t("_get 3.description")
self.assertEqual(out, "release 3.0\n")
def test_escaped_quotes_are_preserved(self):
"""917: Verify that escaped quotes are preserved
Bug 917: escaping runs amok
"""
self.t("add one \\'two\\' three")
self.t("add four \\\"five\\\" six")
code, out, err = self.t("list")
self.assertIn("one 'two' three", out)
self.assertIn("four \"five\" six", out)
def test_extra_space_in_path(self):
"""884: Test that path-like args are preserved
Bug 884: Extra space in path name.
"""
self.t("add /one/two/three/")
self.t("add '/four/five/six/'")
code, out, err = self.t("ls")
self.assertIn("/one/two/three/", out)
self.assertIn("/four/five/six/", out)
def test_parentheses_and_spaces_preserved(self):
"""819: Test parentheses and spacing is preserved on add
Bug 819: When I run "task add foo\'s bar." the description of the new task is "foo 's bar .".
"""
self.t("add foo\\\'s bar")
self.t("add foo (bar)")
self.t("add 'baz (qux)'")
code, out, err = self.t("ls")
self.assertIn("foo's bar", out)
self.assertIn("foo (bar)", out)
self.assertIn("baz (qux)", out)
def test_single_quote_preserved(self):
"""1642: Test single quote in a terminated multi-word string is preserved
TW-1642: After "--", an apostrophe unexpectedly ends the task description
"""
self.t("add -- \"Return Randy's stuff\"")
code, out, err = self.t ("_get 1.description")
self.assertIn("Return Randy's stuff\n", out)
class TestBug1359(TestCase):
def setUp(self):
self.t = Task()
def test_add_hyphenated(self):
"""1359: one-two-three in description triggers Malformed ID error"""
self.t("add 'one-two-three.ca'")
code, out, err = self.t("1 info")
self.assertIn("one-two-three.ca", out)
class TestBug1419(TestCase):
def setUp(self):
"""Executed before each test in the class"""
self.t = Task()
def test_add_with_remove_tag(self):
"""1419: Verify that '-two' is not treated as a tag on add"""
self.t("add one -two")
code, out, err = self.t("_get 1.description")
self.assertEqual("one -two\n", out)
class TestBug1527(TestCase):
def setUp(self):
self.t = Task()
def _validate(self):
code, out, err = self.t()
expected = "First/Second http://taskwarrior.org"
self.assertIn(expected, out)
notexpected = "First / Second http: / / taskwarrior.org"
self.assertNotIn(notexpected, out)
notexpected = "First / Second http://taskwarrior.org"
self.assertNotIn(notexpected, out)
notexpected = "First/Second http: / / taskwarrior.org"
self.assertNotIn(notexpected, out)
def test_add_slash_quoted(self):
"""1527: Extra spaces added around slashes when quoted"""
self.t("add First/Second http://taskwarrior.org")
self._validate()
def test_add_slash_quoted_parser_stop(self):
"""1527: Extra spaces added around slashes when quoted after parser stop"""
self.t("add -- First/Second http://taskwarrior.org")
self._validate()
class Test1549(TestCase):
def setUp(self):
self.t = Task()
def test_lexer_state(self):
"""1549: The token '1e ' left the lexer in a bad state.
+--------+ +----------+ +---------------------+ +--------------+
| | -> |1 | -> |e | -> |<whitespace> |
|typeNone| |typeNumber| |typeExponentIndicator| |Missing 'else'|
+--------+ +----------+ +---------------------+ +--------------+
"""
# This command will hang and therefore timeout in 2.4.1.
code, out, err = self.t('add 1e x')
self.assertIn("Created task 1.", out)
class TestBug1612(TestCase):
def setUp(self):
"""Executed before each test in the class"""
self.t = Task()
def test_spurious_whitespace(self):
"""1612: ensure that extra whitespace does not get added.
tw-1612: Spurious whitespace added in task descriptions around certain symbols
"""
self.t("add 'foo-bar (http://baz.org/)'")
self.t("add 'spam (foo bar)'")
self.t("add '- (foo bar)'")
self.t("add 'a - (foo bar)'")
self.t("add '(bar) a / (foo bar)'")
code, out, err = self.t("_get 1.description")
self.assertEqual("foo-bar (http://baz.org/)\n", out)
code, out, err = self.t("_get 2.description")
self.assertEqual("spam (foo bar)\n", out)
code, out, err = self.t("_get 3.description")
self.assertEqual("- (foo bar)\n", out)
code, out, err = self.t("_get 4.description")
self.assertEqual("a - (foo bar)\n", out)
code, out, err = self.t("_get 5.description")
self.assertEqual("(bar) a / (foo bar)\n", out)
class TestBug1719(TestCase):
def setUp(self):
self.t = Task()
def test_improper_ordinals(self):
"""1719: Description cannot contain improper ordinals"""
self.t("add one 1th");
self.t("add two 23rd");
code, out, err = self.t("_get 1.description")
self.assertEqual("one 1th\n", out)
code, out, err = self.t("_get 2.description")
self.assertEqual("two 23rd\n", out)
if __name__ == "__main__":
from simpletap import TAPTestRunner
unittest.main(testRunner=TAPTestRunner())
# vim: ai sts=4 et sw=4 ft=python
|