[Python-checkins] python/dist/src/Lib/test test_datetime.py,1.35,1.36

tim_one@users.sourceforge.net tim_one@users.sourceforge.net
Thu, 06 Feb 2003 08:42:17 -0800


Update of /cvsroot/python/python/dist/src/Lib/test
In directory sc8-pr-cvs1:/tmp/cvs-serv10637/python/Lib/test

Modified Files:
	test_datetime.py 
Log Message:
SF bug 680864:  test_datetime fails for non-unix epoch
Apparently MAC OS 9 doesn't have POSIX-conforming timestamps.  A test
fails as a result, but at least for this specific test it's easy enough
to get the POSIX epoch out of it.


Index: test_datetime.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/test/test_datetime.py,v
retrieving revision 1.35
retrieving revision 1.36
diff -C2 -d -r1.35 -r1.36
*** test_datetime.py	5 Feb 2003 04:08:07 -0000	1.35
--- test_datetime.py	6 Feb 2003 16:42:14 -0000	1.36
***************
*** 2258,2273 ****
  
          # Try to make sure tz= actually does some conversion.
!         timestamp = 1000000000  #  2001-09-09 01:46:40 UTC, give or take
!         utc = FixedOffset(0, "utc", 0)
!         expected = datetime(2001, 9, 9, 1, 46, 40)
!         got = datetime.utcfromtimestamp(timestamp)
!         # We don't support leap seconds, but maybe the platfrom insists
!         # on using them, so don't demand exact equality).
!         self.failUnless(abs(got - expected) < timedelta(minutes=1))
! 
!         est = FixedOffset(-5*60, "est", 0)
!         expected -= timedelta(hours=5)
!         got = datetime.fromtimestamp(timestamp, est).replace(tzinfo=None)
!         self.failUnless(abs(got - expected) < timedelta(minutes=1))
  
      def test_tzinfo_utcnow(self):
--- 2258,2272 ----
  
          # Try to make sure tz= actually does some conversion.
!         timestamp = 1000000000
!         utcdatetime = datetime.utcfromtimestamp(timestamp)
!         # In POSIX (epoch 1970), that's 2001-09-09 01:46:40 UTC, give or take.
!         # But on some flavor of Mac, it's nowhere near that.  So we can't have
!         # any idea here what time that actually is, we can only test that
!         # relative changes match.
!         utcoffset = timedelta(hours=-15, minutes=39) # arbitrary, but not zero
!         tz = FixedOffset(utcoffset, "tz", 0)
!         expected = utcdatetime + utcoffset
!         got = datetime.fromtimestamp(timestamp, tz)
!         self.assertEqual(expected, got.replace(tzinfo=None))
  
      def test_tzinfo_utcnow(self):