2007-11-11 13:40:12 +03:00
|
|
|
#!/usr/bin/env python
|
2010-02-13 01:34:53 +03:00
|
|
|
|
2011-01-07 04:44:19 +03:00
|
|
|
# bugX000.py - test for DateTime object allocation bug
|
|
|
|
#
|
2019-02-17 04:34:52 +03:00
|
|
|
# Copyright (C) 2007-2019 Federico Di Gregorio <fog@debian.org>
|
2021-06-15 02:37:22 +03:00
|
|
|
# Copyright (C) 2020-2021 The Psycopg Team
|
2011-01-07 04:44:19 +03:00
|
|
|
#
|
|
|
|
# psycopg2 is free software: you can redistribute it and/or modify it
|
|
|
|
# under the terms of the GNU Lesser General Public License as published
|
|
|
|
# by the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# In addition, as a special exception, the copyright holders give
|
|
|
|
# permission to link this program with the OpenSSL library (or with
|
|
|
|
# modified versions of OpenSSL that use the same license as OpenSSL),
|
|
|
|
# and distribute linked combinations including the two.
|
|
|
|
#
|
|
|
|
# You must obey the GNU Lesser General Public License in all respects for
|
|
|
|
# all of the code used other than OpenSSL.
|
|
|
|
#
|
|
|
|
# psycopg2 is distributed in the hope that it will be useful, but WITHOUT
|
|
|
|
# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
# FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
|
|
|
|
# License for more details.
|
|
|
|
|
2007-09-19 17:40:18 +04:00
|
|
|
import psycopg2
|
|
|
|
import time
|
2007-11-11 13:40:12 +03:00
|
|
|
import unittest
|
2007-09-19 17:40:18 +04:00
|
|
|
|
2016-10-11 02:10:53 +03:00
|
|
|
|
2007-11-11 13:40:12 +03:00
|
|
|
class DateTimeAllocationBugTestCase(unittest.TestCase):
|
|
|
|
def test_date_time_allocation_bug(self):
|
2016-10-11 02:10:53 +03:00
|
|
|
d1 = psycopg2.Date(2002, 12, 25)
|
|
|
|
d2 = psycopg2.DateFromTicks(time.mktime((2002, 12, 25, 0, 0, 0, 0, 0, 0)))
|
|
|
|
t1 = psycopg2.Time(13, 45, 30)
|
|
|
|
t2 = psycopg2.TimeFromTicks(time.mktime((2001, 1, 1, 13, 45, 30, 0, 0, 0)))
|
|
|
|
t1 = psycopg2.Timestamp(2002, 12, 25, 13, 45, 30)
|
2007-11-11 13:40:12 +03:00
|
|
|
t2 = psycopg2.TimestampFromTicks(
|
2016-10-11 02:10:53 +03:00
|
|
|
time.mktime((2002, 12, 25, 13, 45, 30, 0, 0, 0)))
|
|
|
|
del d1, d2, t1, t2
|
2007-09-19 17:40:18 +04:00
|
|
|
|
2007-11-11 13:40:12 +03:00
|
|
|
|
|
|
|
def test_suite():
|
|
|
|
return unittest.TestLoader().loadTestsFromName(__name__)
|
|
|
|
|
2018-10-23 02:39:14 +03:00
|
|
|
|
2007-11-11 13:40:12 +03:00
|
|
|
if __name__ == "__main__":
|
|
|
|
unittest.main()
|