| #!/usr/bin/python |
| # Copyright 2011 Google Inc. All Rights Reserved. |
| # |
| # Licensed under the Apache License, Version 2.0 (the "License"); |
| # you may not use this file except in compliance with the License. |
| # You may obtain a copy of the License at |
| # |
| # http://www.apache.org/licenses/LICENSE-2.0 |
| # |
| # Unless required by applicable law or agreed to in writing, software |
| # distributed under the License is distributed on an "AS IS" BASIS, |
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| # See the License for the specific language governing permissions and |
| # limitations under the License. |
| |
| # unittest requires method names starting in 'test' |
| # pylint:disable=invalid-name |
| # pylint:disable=unused-argument |
| |
| """Unit tests for cwmpdate.py.""" |
| |
| __author__ = 'dgentry@google.com (Denton Gentry)' |
| |
| import calendar |
| import datetime |
| import google3 |
| import cwmpdate |
| from wvtest import unittest |
| |
| |
| class UTC(datetime.tzinfo): |
| |
| def utcoffset(self, dt): |
| return datetime.timedelta(0) |
| |
| def tzname(self, dt): |
| return 'UTC' |
| |
| def dst(self, dt): |
| return datetime.timedelta(0) |
| |
| |
| class OTH(datetime.tzinfo): |
| |
| def utcoffset(self, dt): |
| return datetime.timedelta(0, 3600) |
| |
| def tzname(self, dt): |
| return 'OTH' |
| |
| def dst(self, dt): |
| return datetime.timedelta(0, 3600) |
| |
| |
| class CwmpDateTest(unittest.TestCase): |
| """Tests for date formatting.""" |
| |
| def testDatetimeNone(self): |
| self.assertEqual('0001-01-01T00:00:00Z', cwmpdate.format(None)) |
| |
| def testDatetimeNaive(self): |
| dt = datetime.datetime(1999, 12, 31, 23, 59, 58, 999999) |
| self.assertEqual('1999-12-31T23:59:58.999999Z', cwmpdate.format(dt)) |
| dt2 = datetime.datetime(1999, 12, 31, 23, 59, 58) |
| self.assertEqual('1999-12-31T23:59:58Z', cwmpdate.format(dt2)) |
| |
| def testDatetimeUTC(self): |
| dt = datetime.datetime(1999, 12, 31, 23, 59, 58, 999999, tzinfo=UTC()) |
| self.assertEqual('1999-12-31T23:59:58.999999Z', cwmpdate.format(dt)) |
| dt2 = datetime.datetime(1999, 12, 31, 23, 59, 58, tzinfo=UTC()) |
| self.assertEqual('1999-12-31T23:59:58Z', cwmpdate.format(dt2)) |
| |
| def testDatetimeOTH(self): |
| dt = datetime.datetime(1999, 12, 31, 23, 59, 58, 999999, tzinfo=OTH()) |
| self.assertEqual('1999-12-31T23:59:58.999999+01:00', |
| cwmpdate.format(dt)) |
| |
| def testTimedelta(self): |
| t = 1234567890.987654 |
| self.assertEqual('2009-02-13T23:31:30.987654Z', cwmpdate.format(t)) |
| |
| def testParse(self): |
| dt = cwmpdate.parse('2012-01-12T00:20:03.217691Z') |
| timestamp = calendar.timegm(dt.timetuple()) |
| self.assertEqual(timestamp, 1326327603.0) |
| |
| def testValid(self): |
| self.assertTrue(cwmpdate.valid('2009-02-13T23:31:30.987654Z')) |
| self.assertTrue(cwmpdate.valid('2009-02-13T23:31:30Z')) |
| self.assertFalse(cwmpdate.valid('2009-02-13T23:31:30')) |
| self.assertFalse(cwmpdate.valid('booga')) |
| |
| |
| if __name__ == '__main__': |
| unittest.main() |