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 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433
|
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
###############################################################################
#
# 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 BaseDateTimeNegativeTest(TestCase):
"""
Base class for Datetime negative tests.
"""
def setUp(self):
self.t = Task()
def assertInvalidDatetimeFormat(self, value):
self.t.runError('add due:{0} test1'.format(value))
self.t.runError('add scheduled:{0} test2'.format(value))
self.t.runError('add wait:{0} test3'.format(value))
self.t.runError('add until:{0} test4'.format(value))
class TestIncorrectDate(BaseDateTimeNegativeTest):
"""
This test case makes sure various formats
of incorrect datetimes do not get interpreted
as valid timetamps. Covers TW-1499.
"""
def test_set_incorrect_datetime_randomstring(self):
self.assertInvalidDatetimeFormat('random')
def test_set_incorrect_datetime_negative_in_YYYY_MM_DD(self):
self.assertInvalidDatetimeFormat('-2014-07-07')
def test_set_incorrect_datetime_missing_day_in_YYYY_MM_DD(self):
self.assertInvalidDatetimeFormat('2014-07-')
def test_set_incorrect_datetime_month_zero_in_YYYY_MM_DD(self):
self.assertInvalidDatetimeFormat('2014-0-12')
def test_set_incorrect_datetime_invalid_characters_in_YYYY_MM_DD(self):
self.assertInvalidDatetimeFormat('abcd-ab-ab')
def test_set_incorrect_datetime_day_as_zeros_in_YYYY_DDD(self):
self.assertInvalidDatetimeFormat('2014-000')
def test_set_incorrect_datetime_overlap_day_in_nonoverlap_year_in_YYYY_DDD(self):
self.assertInvalidDatetimeFormat('2014-366')
def test_set_incorrect_datetime_medium_overlap_day_in_YYYY_DDD(self):
self.assertInvalidDatetimeFormat('2014-999')
def test_set_incorrect_datetime_huge_overlap_day_in_YYYY_DDD(self):
self.assertInvalidDatetimeFormat('2014-999999999')
def test_set_incorrect_datetime_week_with_the_number_zero_in_YYYY_Www(self):
self.assertInvalidDatetimeFormat('2014-W00')
def test_set_incorrect_datetime_overflow_in_week_in_YYYY_Www(self):
self.assertInvalidDatetimeFormat('2014-W54')
# Unsupported non-extended form.
def test_set_incorrect_datetime_day_zero_in_YYYY_WwwD(self):
self.assertInvalidDatetimeFormat('2014-W240')
# Unsupported non-extended form.
def test_set_incorrect_datetime_day_eight_in_YYYY_WwwD(self):
self.assertInvalidDatetimeFormat('2014-W248')
# Unsupported non-extended form.
def test_set_incorrect_datetime_day_two_hundred_in_YYYY_WwwD(self):
self.assertInvalidDatetimeFormat('2014-W24200')
# Disabled: Looks like 'hhmm-hh'
#def test_set_incorrect_datetime_month_zero_in_YYYY_MM(self):
# self.assertInvalidDatetimeFormat('2014-00')
def test_set_incorrect_datetime_overflow_month_in_YYYY_MM(self):
self.assertInvalidDatetimeFormat('2014-13')
def test_set_incorrect_datetime_huge_overflow_month_in_YYYY_MM(self):
self.assertInvalidDatetimeFormat('2014-99')
class TestIncorrectTime(BaseDateTimeNegativeTest):
"""
This test class makes sure invalid time formats are not getting
accepted by TaskWarrior parser.
"""
def test_set_incorrect_datetime_hour_overflow_in_hh_mm(self):
self.assertInvalidDatetimeFormat('25:00')
def test_set_incorrect_datetime_huge_hour_overflow_in_hh_mm(self):
self.assertInvalidDatetimeFormat('99:00')
def test_set_incorrect_datetime_minute_overflow_in_hh_mm(self):
self.assertInvalidDatetimeFormat('12:60')
def test_set_incorrect_datetime_huge_minute_overflow_in_hh_mm(self):
self.assertInvalidDatetimeFormat('12:99')
def test_set_incorrect_datetime_invalid_minutes_in_hh_mm(self):
self.assertInvalidDatetimeFormat('12:ab')
def test_set_incorrect_datetime_invalid_hours_in_hh_mm(self):
self.assertInvalidDatetimeFormat('ab:12')
def test_set_incorrect_datetime_invalid_time_in_hh_mm(self):
self.assertInvalidDatetimeFormat('ab:cd')
def test_set_incorrect_datetime_negative_hours_in_hh_mm(self):
self.assertInvalidDatetimeFormat('-12:12')
def test_set_incorrect_datetime_negative_minutes_in_hh_mm(self):
self.assertInvalidDatetimeFormat('12:-12')
def test_set_incorrect_datetime_hour_overflow_in_hh_mmZ(self):
self.assertInvalidDatetimeFormat('25:00Z')
def test_set_incorrect_datetime_huge_hour_overflow_in_hh_mmZ(self):
self.assertInvalidDatetimeFormat('99:00Z')
def test_set_incorrect_datetime_minute_overflow_in_hh_mmZ(self):
self.assertInvalidDatetimeFormat('12:60Z')
def test_set_incorrect_datetime_huge_minute_overflow_in_hh_mmZ(self):
self.assertInvalidDatetimeFormat('12:99Z')
def test_set_incorrect_datetime_invalid_minutes_in_hh_mmZ(self):
self.assertInvalidDatetimeFormat('12:abZ')
def test_set_incorrect_datetime_invalid_hours_in_hh_mmZ(self):
self.assertInvalidDatetimeFormat('ab:12Z')
def test_set_incorrect_datetime_invalid_time_in_hh_mmZ(self):
self.assertInvalidDatetimeFormat('ab:cdZ')
def test_set_incorrect_datetime_negative_hours_in_hh_mmZ(self):
self.assertInvalidDatetimeFormat('-12:12Z')
def test_set_incorrect_datetime_negative_minutes_in_hh_mmZ(self):
self.assertInvalidDatetimeFormat('12:-12Z')
def test_set_incorrect_datetime_hour_overflow_in_hh_mm_plus_hh_mm(self):
self.assertInvalidDatetimeFormat('25:00+01:00')
def test_set_incorrect_datetime_huge_hour_overflow_in_hh_mm_plus_hh_mm(self):
self.assertInvalidDatetimeFormat('99:00+01:00')
def test_set_incorrect_datetime_minute_overflow_in_hh_mm_plus_hh_mm(self):
self.assertInvalidDatetimeFormat('12:60+01:00')
def test_set_incorrect_datetime_huge_minute_overflow_in_hh_mm_plus_hh_mm(self):
self.assertInvalidDatetimeFormat('12:99+01:00')
def test_set_incorrect_datetime_invalid_minutes_in_hh_mm_plus_hh_mm(self):
self.assertInvalidDatetimeFormat('12:ab+01:00')
def test_set_incorrect_datetime_invalid_hours_in_hh_mm_plus_hh_mm(self):
self.assertInvalidDatetimeFormat('ab:12+01:00')
def test_set_incorrect_datetime_invalid_time_in_hh_mm_plus_hh_mm(self):
self.assertInvalidDatetimeFormat('ab:cd+01:00')
def test_set_incorrect_datetime_negative_hours_in_hh_mm_plus_hh_mm(self):
self.assertInvalidDatetimeFormat('-12:12+01:00')
def test_set_incorrect_datetime_negative_minutes_in_hh_mm_plus_hh_mm(self):
self.assertInvalidDatetimeFormat('12:-12+01:00')
def test_set_incorrect_datetime_hour_overflow_in_hh_mm_minus_hh_mm(self):
self.assertInvalidDatetimeFormat('25:00-01:00')
def test_set_incorrect_datetime_huge_hour_overflow_in_hh_mm_minus_hh_mm(self):
self.assertInvalidDatetimeFormat('99:00-01:00')
def test_set_incorrect_datetime_minute_overflow_in_hh_mm_minus_hh_mm(self):
self.assertInvalidDatetimeFormat('12:60-01:00')
def test_set_incorrect_datetime_huge_minute_overflow_in_hh_mm_minus_hh_mm(self):
self.assertInvalidDatetimeFormat('12:99-01:00')
def test_set_incorrect_datetime_invalid_minutes_in_hh_mm_minus_hh_mm(self):
self.assertInvalidDatetimeFormat('12:ab-01:00')
def test_set_incorrect_datetime_invalid_hours_in_hh_mm_minus_hh_mm(self):
self.assertInvalidDatetimeFormat('ab:12-01:00')
def test_set_incorrect_datetime_invalid_time_in_hh_mm_minus_hh_mm(self):
self.assertInvalidDatetimeFormat('ab:cd-01:00')
def test_set_incorrect_datetime_negative_hours_in_hh_mm_minus_hh_mm(self):
self.assertInvalidDatetimeFormat('-12:12-01:00')
def test_set_incorrect_datetime_negative_minutes_in_hh_mm_minus_hh_mm(self):
self.assertInvalidDatetimeFormat('12:-12-01:00')
def test_set_incorrect_datetime_hour_overflow_in_hh_mm_ss(self):
self.assertInvalidDatetimeFormat('25:00:00')
def test_set_incorrect_datetime_huge_hour_overflow_in_hh_mm_ss(self):
self.assertInvalidDatetimeFormat('99:00:00')
def test_set_incorrect_datetime_minute_overflow_in_hh_mm_ss(self):
self.assertInvalidDatetimeFormat('12:60:00')
def test_set_incorrect_datetime_huge_minute_overflow_in_hh_mm_ss(self):
self.assertInvalidDatetimeFormat('12:99:00')
def test_set_incorrect_datetime_second_overflow_in_hh_mm_ss(self):
self.assertInvalidDatetimeFormat('12:12:60')
def test_set_incorrect_datetime_huge_second_overflow_in_hh_mm_ss(self):
self.assertInvalidDatetimeFormat('12:12:99')
def test_set_incorrect_datetime_invalid_minutes_in_hh_mm_ss(self):
self.assertInvalidDatetimeFormat('12:ab:00')
def test_set_incorrect_datetime_invalid_hours_in_hh_mm_ss(self):
self.assertInvalidDatetimeFormat('ab:12:00')
def test_set_incorrect_datetime_invalid_seconds_in_hh_mm_ss(self):
self.assertInvalidDatetimeFormat('12:12:ab')
def test_set_incorrect_datetime_invalid_time_in_hh_mm_ss(self):
self.assertInvalidDatetimeFormat('ab:cd:ef')
def test_set_incorrect_datetime_negative_hours_in_hh_mm_ss(self):
self.assertInvalidDatetimeFormat('-12:12:12')
def test_set_incorrect_datetime_negative_minutes_in_hh_mm_ss(self):
self.assertInvalidDatetimeFormat('12:-12:12')
def test_set_incorrect_datetime_negative_seconds_in_hh_mm_ss(self):
self.assertInvalidDatetimeFormat('12:12:-12')
def test_set_incorrect_datetime_hour_overflow_in_hh_mm_ssZ(self):
self.assertInvalidDatetimeFormat('25:00:00Z')
def test_set_incorrect_datetime_huge_hour_overflow_in_hh_mm_ssZ(self):
self.assertInvalidDatetimeFormat('99:00:00Z')
def test_set_incorrect_datetime_minute_overflow_in_hh_mm_ssZ(self):
self.assertInvalidDatetimeFormat('12:60:00Z')
def test_set_incorrect_datetime_huge_minute_overflow_in_hh_mm_ssZ(self):
self.assertInvalidDatetimeFormat('12:99:00Z')
def test_set_incorrect_datetime_second_overflow_in_hh_mm_ssZ(self):
self.assertInvalidDatetimeFormat('12:12:60Z')
def test_set_incorrect_datetime_huge_second_overflow_in_hh_mm_ssZ(self):
self.assertInvalidDatetimeFormat('12:12:99Z')
def test_set_incorrect_datetime_invalid_minutes_in_hh_mm_ssZ(self):
self.assertInvalidDatetimeFormat('12:ab:00Z')
def test_set_incorrect_datetime_invalid_hours_in_hh_mm_ssZ(self):
self.assertInvalidDatetimeFormat('ab:12:00Z')
def test_set_incorrect_datetime_invalid_seconds_in_hh_mm_ssZ(self):
self.assertInvalidDatetimeFormat('12:12:abZ')
def test_set_incorrect_datetime_invalid_time_in_hh_mm_ssZ(self):
self.assertInvalidDatetimeFormat('ab:cd:efZ')
def test_set_incorrect_datetime_negative_hours_in_hh_mm_ssZ(self):
self.assertInvalidDatetimeFormat('-12:12:12Z')
def test_set_incorrect_datetime_negative_minutes_in_hh_mm_ssZ(self):
self.assertInvalidDatetimeFormat('12:-12:12Z')
def test_set_incorrect_datetime_negative_seconds_in_hh_mm_ssZ(self):
self.assertInvalidDatetimeFormat('12:12:-12Z')
def test_set_incorrect_datetime_hour_overflow_in_hh_mm_ss_plus_hh_mm(self):
self.assertInvalidDatetimeFormat('25:00:00+01:00')
def test_set_incorrect_datetime_huge_hour_overflow_in_hh_mm_ss_plus_hh_mm(self):
self.assertInvalidDatetimeFormat('95:00:00+01:00')
def test_set_incorrect_datetime_minute_overflow_in_hh_mm_ss_plus_hh_mm(self):
self.assertInvalidDatetimeFormat('12:60:00+01:00')
def test_set_incorrect_datetime_huge_minute_overflow_in_hh_mm_ss_plus_hh_mm(self):
self.assertInvalidDatetimeFormat('12:99:00+01:00')
def test_set_incorrect_datetime_second_overflow_in_hh_mm_ss_plus_hh_mm(self):
self.assertInvalidDatetimeFormat('12:12:60+01:00')
def test_set_incorrect_datetime_huge_second_overflow_in_hh_mm_ss_plus_hh_mm(self):
self.assertInvalidDatetimeFormat('12:12:99+01:00')
def test_set_incorrect_datetime_invalid_minutes_in_hh_mm_ss_plus_hh_mm(self):
self.assertInvalidDatetimeFormat('12:ab:00+01:00')
def test_set_incorrect_datetime_invalid_hours_in_hh_mm_ss_plus_hh_mm(self):
self.assertInvalidDatetimeFormat('ab:12:00+01:00')
def test_set_incorrect_datetime_invalid_seconds_in_hh_mm_ss_plus_hh_mm(self):
self.assertInvalidDatetimeFormat('12:12:ab+01:00')
def test_set_incorrect_datetime_invalid_time_in_hh_mm_ss_plus_hh_mm(self):
self.assertInvalidDatetimeFormat('ab:cd:ef+01:00')
def test_set_incorrect_datetime_negative_hours_in_hh_mm_ss_plus_hh_mm(self):
self.assertInvalidDatetimeFormat('-12:12:12+01:00')
def test_set_incorrect_datetime_negative_minutes_in_hh_mm_ss_plus_hh_mm(self):
self.assertInvalidDatetimeFormat('12:-12:12+01:00')
def test_set_incorrect_datetime_negative_seconds_in_hh_mm_ss_plus_hh_mm(self):
self.assertInvalidDatetimeFormat('12:12:-12+01:00')
def test_set_incorrect_datetime_hour_overflow_in_hh_mm_ss_minus_hh_mm(self):
self.assertInvalidDatetimeFormat('25:00:00-01:00')
def test_set_incorrect_datetime_huge_hour_overflow_in_hh_mm_ss_minus_hh_mm(self):
self.assertInvalidDatetimeFormat('95:00:00-01:00')
def test_set_incorrect_datetime_minute_overflow_in_hh_mm_ss_minus_hh_mm(self):
self.assertInvalidDatetimeFormat('12:60:00-01:00')
def test_set_incorrect_datetime_huge_minute_overflow_in_hh_mm_ss_minus_hh_mm(self):
self.assertInvalidDatetimeFormat('12:99:00-01:00')
def test_set_incorrect_datetime_second_overflow_in_hh_mm_ss_minus_hh_mm(self):
self.assertInvalidDatetimeFormat('12:12:60-01:00')
def test_set_incorrect_datetime_huge_second_overflow_in_hh_mm_ss_minus_hh_mm(self):
self.assertInvalidDatetimeFormat('12:12:99-01:00')
def test_set_incorrect_datetime_invalid_minutes_in_hh_mm_ss_minus_hh_mm(self):
self.assertInvalidDatetimeFormat('12:ab:00-01:00')
def test_set_incorrect_datetime_invalid_hours_in_hh_mm_ss_minus_hh_mm(self):
self.assertInvalidDatetimeFormat('ab:12:00-01:00')
def test_set_incorrect_datetime_invalid_seconds_in_hh_mm_ss_minus_hh_mm(self):
self.assertInvalidDatetimeFormat('12:12:ab-01:00')
def test_set_incorrect_datetime_invalid_time_in_hh_mm_ss_minus_hh_mm(self):
self.assertInvalidDatetimeFormat('ab:cd:ef-01:00')
def test_set_incorrect_datetime_negative_hours_in_hh_mm_ss_minus_hh_mm(self):
self.assertInvalidDatetimeFormat('-12:12:12-01:00')
def test_set_incorrect_datetime_negative_minutes_in_hh_mm_ss_minus_hh_mm(self):
self.assertInvalidDatetimeFormat('12:-12:12-01:00')
def test_set_incorrect_datetime_negative_seconds_in_hh_mm_ss_minus_hh_mm(self):
self.assertInvalidDatetimeFormat('12:12:-12-01:00')
# There were a group of tests that failed for the wrong reason, and these
# have been removed.
#
# When an offset (+/-hh:mm[:ss]) exceeds the +/‐ 12 hour maximum, it is no
# longer considered an offset, and is instead considered to be the addition
# or subtraction of two times. Although valid, the tests are not
# datetime-negative.t tests.
#
# Tests were:
# 12:12:12-13:00
# 12:12:12-24:00
# 12:12:12-99:00
# 12:12:12-03:60
# 12:12:12-03:99
# 12:12:12-3:20
# 12:12:12-03:2
# 12:12:12-3:2
# 12:12:12+13:00
# 12:12:12+24:00
# 12:12:12+99:00
# 12:12:12+03:60
# 12:12:12+03:99
# 12:12:12+3:20
# 12:12:12+03:2
# 12:12:12+3:2
# 12:12-13:00
# 12:12-24:00
# 12:12-99:00
# 12:12-03:60
# 12:12-03:99
# 12:12-3:20
# 12:12-03:2
# 12:12-3:2
# 12:12+13:00
# 12:12+24:00
# 12:12+99:00
# 12:12+03:60
# 12:12+03:99
# 12:12+3:20
# 12:12+03:2
# 12:12+3:2
if __name__ == "__main__":
from simpletap import TAPTestRunner
unittest.main(testRunner=TAPTestRunner())
# vim: ai sts=4 et sw=4 ft=python
|