mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00

As per https://docs.python.org/3.11/reference/lexical_analysis.html#encoding-declarations, the default encoding of Python files is UTF-8. In fact, it's been the default encoding since Python 3.0 (released in 2008).
249 lines
8.1 KiB
Python
Executable file
249 lines
8.1 KiB
Python
Executable file
#!/usr/bin/env python3
|
|
###############################################################################
|
|
#
|
|
# Copyright 2006 - 2021, Tomas Babej, 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.
|
|
#
|
|
# https://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('rc.verbose:new-id 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
|