File: annotate.t

package info (click to toggle)
task 2.5.1%2Bdfsg-7
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 6,576 kB
  • sloc: cpp: 36,161; python: 11,324; perl: 8,697; ansic: 7,400; sh: 673; makefile: 23
file content (217 lines) | stat: -rwxr-xr-x 8,398 bytes parent folder | download | duplicates (2)
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
#!/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 TestAnnotate(TestCase):
    def setUp(self):
        self.t = Task()

        # ID Description
        # -- -------------------------------
        #  1 one
        #    3/24/2009 foo1
        #    3/24/2009 foo2
        #    3/24/2009 foo3
        #  2 two
        #    3/24/2009 bar1
        #    3/24/2009 bar2
        #  3 three
        #    3/24/2009 baz1
        #  4 four
        #
        # 4 tasks

        self.t("add one")
        self.t("add two")
        self.t("add three")
        self.t("add four")
        self.t("1 annotate foo1")
        self.t("1 annotate foo2")
        self.t("1 annotate foo3")
        self.t("2 annotate bar1")
        self.t("2 annotate bar2")
        self.t("3 annotate baz1")

    def assertTasksExist(self, out):
        self.assertIn("1 one", out)
        self.assertIn("2 two", out)
        self.assertIn("3 three", out)
        self.assertIn("4 four", out)
        self.assertIn("4 tasks", out)

    def test_annotate(self):
        """Testing annotations in reports"""

        # NOTE: Use 'rrr' to guarantee a unique report name.  Using 'r'
        # conflicts with 'recurring'.
        self.t.config("report.rrr.description", "rrr")
        self.t.config("report.rrr.columns",     "id,description")
        self.t.config("report.rrr.sort",        "id+")
        self.t.config("dateformat",             "m/d/Y")
        self.t.config("color",                  "off")

        code, out, err = self.t("rrr")

        self.assertTasksExist(out)

        self.assertRegexpMatches(out, "one\n.+\d{1,2}/\d{1,2}/\d{4}\s+foo1",
                                 msg='full - first  annotation task 1')
        self.assertRegexpMatches(out, "foo1\n.+\d{1,2}/\d{1,2}/\d{4}\s+foo2",
                                 msg='full - first  annotation task 1')
        self.assertRegexpMatches(out, "foo2\n.+\d{1,2}/\d{1,2}/\d{4}\s+foo3",
                                 msg='full - first  annotation task 1')
        self.assertRegexpMatches(out, "two\n.+\d{1,2}/\d{1,2}/\d{4}\s+bar1",
                                 msg='full - first  annotation task 1')
        self.assertRegexpMatches(out, "bar1\n.+\d{1,2}/\d{1,2}/\d{4}\s+bar2",
                                 msg='full - first  annotation task 1')
        self.assertRegexpMatches(out, "three\n.+\d{1,2}/\d{1,2}/\d{4}\s+baz1",
                                 msg='full - first  annotation task 1')

    def test_annotate_dateformat(self):
        """Testing annotations in reports using dateformat.annotation"""

        # NOTE: Use 'rrr' to guarantee a unique report name.  Using 'r'
        # conflicts with 'recurring'.
        self.t.config("report.rrr.description", "rrr")
        self.t.config("report.rrr.columns",     "id,description")
        self.t.config("report.rrr.sort",        "id+")
        self.t.config("dateformat.annotation",  "yMD HNS")

        code, out, err = self.t("rrr")

        self.assertTasksExist(out)

        self.assertRegexpMatches(out, "one\n.+\d{1,6}\s+\d{1,6}\s+foo1",
                                 msg="dateformat - first  annotation task 1")
        self.assertRegexpMatches(out, "foo1\n.+\d{1,6}\s+\d{1,6}\s+foo2",
                                 msg="dateformat - second  annotation task 1")
        self.assertRegexpMatches(out, "foo2\n.+\d{1,6}\s+\d{1,6}\s+foo3",
                                 msg="dateformat - third  annotation task 1")
        self.assertRegexpMatches(out, "two\n.+\d{1,6}\s+\d{1,6}\s+bar1",
                                 msg="dateformat - first  annotation task 2")
        self.assertRegexpMatches(out, "bar1\n.+\d{1,6}\s+\d{1,6}\s+bar2",
                                 msg="dateformat - second  annotation task 2")
        self.assertRegexpMatches(out, "three\n.+\d{1,6}\s+\d{1,6}\s+baz1",
                                 msg="dateformat - first  annotation task 3")

class TestAnnotationPropagation(TestCase):
    def setUp(self):
        self.t = Task()

    def test_annotate_nothing(self):
        """Test that an error is produced when annotating no tasks"""
        code, out, err = self.t.runError("999 annotate no way")
        self.assertIn("No tasks specified.", err)

    def test_annotate_recurring(self):
        """Test propagation of annotation to recurring siblings"""
        self.t("add foo due:eom recur:weekly")
        self.t("list") # GC/handleRecurrence
        self.t("2 annotate bar", input="y\n")
        code, out, err = self.t("all rc.verbose:nothing")

        code, out, err = self.t("_get 1.annotations.1.description")
        self.assertEqual("bar\n", out)

        code, out, err = self.t("_get 2.annotations.1.description")
        self.assertEqual("bar\n", out)


class TestAnnotation(TestCase):
    def setUp(self):
        """Executed before each test in the class"""
        self.t = Task()
        self.t.config("confirmation", "yes")

    def test_blank_annotation(self):
        """Verify blank annotations are prevented"""
        self.t("add foo")

        code, out, err = self.t.runError("1 annotate")
        self.assertIn("Additional text must be provided", err)

    def test_filterless_annotate_decline(self):
        """Verify filterless annotation is trapped, declined"""
        self.t("add foo")

        code, out, err = self.t.runError("annotate bar", input="no\n")
        self.assertIn("Command prevented from running", err)
        self.assertNotIn("Command prevented from running", out)

    def test_filterless_annotate(self):
        """Verify filterless annotation is trapped, overridden"""
        self.t("add foo")
        code, out, err = self.t("annotate bar", input="yes\n")

        self.assertNotIn("Command prevented from running", err)
        self.assertNotIn("Command prevented from running", out)
        self.assertIn("Annotated 1 task", out)


class TestBug495(TestCase):
    def setUp(self):
        self.t = Task()

    def test_double_hyphen_annotation(self):
        """double hyphen mishandled for annotations"""
        # NOTE: originally Bug #495
        self.t("add foo")
        self.t("1 annotate This -- is -- a -- test")

        # Double hyphens preserved except the first ones
        code, out, err = self.t("_get 1.annotations.1.description")
        self.assertEqual("This is -- a -- test\n", out)

class TestBug694(TestCase):
    def setUp(self):
        self.t = Task()

    def test_annotation_with_due(self):
        """Add an annotation as well as a due date"""
        self.t("add one")
        self.t("1 annotate two due:today")

        code, out, err = self.t("rc.journal.info:off 1 info")
        self.assertIn("one", out)
        self.assertIn("two", out)
        self.assertIn("Due", out)


if __name__ == "__main__":
    from simpletap import TAPTestRunner
    unittest.main(testRunner=TAPTestRunner())

# vim: ai sts=4 et sw=4 ft=python