test_tzinfo.py 3.27 KB
Newer Older
1
import copy
2 3
import datetime
import os
4
import pickle
5
import time
6
import unittest
7
import warnings
8

9
from django.test.utils import IgnorePendingDeprecationWarningsMixin
10

11 12 13 14 15
# Swallow the import-time warning to test the deprecated implementation.
with warnings.catch_warnings():
    warnings.filterwarnings("ignore", category=PendingDeprecationWarning)
    from django.utils.tzinfo import FixedOffset, LocalTimezone

Jason Myers's avatar
Jason Myers committed
16

17
class TzinfoTests(IgnorePendingDeprecationWarningsMixin, unittest.TestCase):
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
    @classmethod
    def setUpClass(cls):
        cls.old_TZ = os.environ.get('TZ')
        os.environ['TZ'] = 'US/Eastern'

        try:
            # Check if a timezone has been set
            time.tzset()
            cls.tz_tests = True
        except AttributeError:
            # No timezone available. Don't run the tests that require a TZ
            cls.tz_tests = False

    @classmethod
    def tearDownClass(cls):
        if cls.old_TZ is None:
            del os.environ['TZ']
        else:
            os.environ['TZ'] = cls.old_TZ

        # Cleanup - force re-evaluation of TZ environment variable.
        if cls.tz_tests:
            time.tzset()

43
    def test_fixedoffset(self):
44 45 46 47 48 49 50
        self.assertEqual(repr(FixedOffset(0)), '+0000')
        self.assertEqual(repr(FixedOffset(60)), '+0100')
        self.assertEqual(repr(FixedOffset(-60)), '-0100')
        self.assertEqual(repr(FixedOffset(280)), '+0440')
        self.assertEqual(repr(FixedOffset(-280)), '-0440')
        self.assertEqual(repr(FixedOffset(-78.4)), '-0118')
        self.assertEqual(repr(FixedOffset(78.4)), '+0118')
Jason Myers's avatar
Jason Myers committed
51 52 53 54
        self.assertEqual(repr(FixedOffset(-5.5 * 60)), '-0530')
        self.assertEqual(repr(FixedOffset(5.5 * 60)), '+0530')
        self.assertEqual(repr(FixedOffset(-.5 * 60)), '-0030')
        self.assertEqual(repr(FixedOffset(.5 * 60)), '+0030')
55 56 57 58 59 60 61 62 63 64

    def test_16899(self):
        if not self.tz_tests:
            return
        ts = 1289106000
        # Midnight at the end of DST in US/Eastern: 2010-11-07T05:00:00Z
        dt = datetime.datetime.utcfromtimestamp(ts)
        # US/Eastern -- we force its representation to "EST"
        tz = LocalTimezone(dt + datetime.timedelta(days=1))
        self.assertEqual(
65 66
            repr(datetime.datetime.fromtimestamp(ts - 3600, tz)),
            'datetime.datetime(2010, 11, 7, 0, 0, tzinfo=EST)')
67
        self.assertEqual(
68 69
            repr(datetime.datetime.fromtimestamp(ts, tz)),
            'datetime.datetime(2010, 11, 7, 1, 0, tzinfo=EST)')
70
        self.assertEqual(
71 72
            repr(datetime.datetime.fromtimestamp(ts + 3600, tz)),
            'datetime.datetime(2010, 11, 7, 1, 0, tzinfo=EST)')
73 74 75 76 77 78 79 80 81 82 83 84 85 86 87

    def test_copy(self):
        now = datetime.datetime.now()
        self.assertIsInstance(copy.copy(FixedOffset(90)), FixedOffset)
        self.assertIsInstance(copy.copy(LocalTimezone(now)), LocalTimezone)

    def test_deepcopy(self):
        now = datetime.datetime.now()
        self.assertIsInstance(copy.deepcopy(FixedOffset(90)), FixedOffset)
        self.assertIsInstance(copy.deepcopy(LocalTimezone(now)), LocalTimezone)

    def test_pickling_unpickling(self):
        now = datetime.datetime.now()
        self.assertIsInstance(pickle.loads(pickle.dumps(FixedOffset(90))), FixedOffset)
        self.assertIsInstance(pickle.loads(pickle.dumps(LocalTimezone(now))), LocalTimezone)