File: TestErrors.py

package info (click to toggle)
parsedatetime 2.6-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 568 kB
  • sloc: python: 5,161; makefile: 44
file content (81 lines) | stat: -rw-r--r-- 3,470 bytes parent folder | download | duplicates (3)
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
# -*- coding: utf-8 -*-
"""
Test parsing of units
"""
from __future__ import unicode_literals

import sys
import time
import datetime
import parsedatetime as pdt
from . import utils

if sys.version_info < (2, 7):
    import unittest2 as unittest
else:
    import unittest


class test(unittest.TestCase):

    @utils.assertEqualWithComparator
    def assertExpectedResult(self, result, check, **kwargs):
        return utils.compareResultByTimeTuplesAndFlags(result, check, **kwargs)

    @utils.assertEqualWithComparator
    def assertExpectedErrorFlag(self, result, check, **kwargs):
        return utils.compareResultByFlags(result, check, **kwargs)

    def setUp(self):
        self.cal = pdt.Calendar()
        (self.yr, self.mth, self.dy, self.hr,
         self.mn, self.sec, self.wd, self.yd, self.isdst) = time.localtime()

    def testErrors(self):
        s = datetime.datetime.now()
        start = s.timetuple()

        # These tests all return current date/time as they are out of range
        self.assertExpectedResult(self.cal.parse('01/0', start), (start, 0))
        self.assertExpectedResult(self.cal.parse('08/35', start), (start, 0))
        self.assertExpectedResult(self.cal.parse('18/35', start), (start, 0))
        self.assertExpectedResult(self.cal.parse('1799', start), (start, 0))
        self.assertExpectedResult(self.cal.parse('781', start), (start, 0))
        self.assertExpectedResult(self.cal.parse('2702', start), (start, 0))
        self.assertExpectedResult(self.cal.parse('78', start), (start, 0))
        self.assertExpectedResult(self.cal.parse('11', start), (start, 0))
        self.assertExpectedResult(self.cal.parse('1', start), (start, 0))
        self.assertExpectedResult(self.cal.parse('174565', start), (start, 0))
        self.assertExpectedResult(self.cal.parse('177505', start), (start, 0))
        # ensure short month names do not cause false positives within a word -
        # jun (june)
        self.assertExpectedResult(
            self.cal.parse('injunction', start), (start, 0))
        # ensure short month names do not cause false positives at the start of
        # a word - jul (juuly)
        self.assertExpectedResult(self.cal.parse('julius', start), (start, 0))
        # ensure short month names do not cause false positives at the end of a
        # word - mar (march)
        self.assertExpectedResult(self.cal.parse('lamar', start), (start, 0))
        # ensure short weekday names do not cause false positives within a word
        # - mon (monday)
        self.assertExpectedResult(
            self.cal.parse('demonize', start), (start, 0))
        # ensure short weekday names do not cause false positives at the start
        # of a word - mon (monday)
        self.assertExpectedResult(self.cal.parse('money', start), (start, 0))
        # ensure short weekday names do not cause false positives at the end of
        # a word - th (thursday)
        self.assertExpectedResult(self.cal.parse('month', start), (start, 0))
        self.assertExpectedErrorFlag(
            self.cal.parse('30/030/01/071/07', start), (start, 0))
        # overflow due to Python's datetime
        self.assertExpectedResult(self.cal.parse('12345 y', start), (start, 0))
        self.assertExpectedResult(
            self.cal.parse('654321 w', start), (start, 0))
        self.assertExpectedResult(
            self.cal.parse('3700000 d', start), (start, 0))


if __name__ == "__main__":
    unittest.main()