本文整理汇总了Python中django.utils.datetime_safe.date方法的典型用法代码示例。如果您正苦于以下问题:Python datetime_safe.date方法的具体用法?Python datetime_safe.date怎么用?Python datetime_safe.date使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类django.utils.datetime_safe
的用法示例。
在下文中一共展示了datetime_safe.date方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_import_a_few
# 需要导入模块: from django.utils import datetime_safe [as 别名]
# 或者: from django.utils.datetime_safe import date [as 别名]
def test_import_a_few(self):
dataset = tablib.Dataset(
["15/6/2016", "5.10", "Example payment"],
["16/6/2016", "10.91", "Another payment"],
["17/6/2016", "-1.23", "Paying someone"],
headers=["date", "amount", "description"],
)
self.makeResource().import_data(dataset)
self.assertEqual(StatementLine.objects.count(), 3)
objs = StatementLine.objects.all().order_by("pk")
self.assertEqual(objs[0].date, date(2016, 6, 15))
self.assertEqual(objs[0].amount, Decimal("5.10"))
self.assertEqual(objs[0].description, "Example payment")
self.assertEqual(objs[1].date, date(2016, 6, 16))
self.assertEqual(objs[1].amount, Decimal("10.91"))
self.assertEqual(objs[1].description, "Another payment")
self.assertEqual(objs[2].date, date(2016, 6, 17))
self.assertEqual(objs[2].amount, Decimal("-1.23"))
self.assertEqual(objs[2].description, "Paying someone")
示例2: test_split_amounts
# 需要导入模块: from django.utils import datetime_safe [as 别名]
# 或者: from django.utils.datetime_safe import date [as 别名]
def test_split_amounts(self):
dataset = tablib.Dataset(
["15/6/2016", "", "100.56", "Example payment"],
["16/6/2016", "60.31", "", "Example income"],
["17/6/2016", "", "-102.56", "Example payment 2"],
headers=["date", "amount_in", "amount_out", "description"],
)
self.makeResource().import_data(dataset)
self.assertEqual(StatementLine.objects.count(), 3)
obj = StatementLine.objects.all().order_by("date")
self.assertEqual(obj[0].date, date(2016, 6, 15))
self.assertEqual(obj[0].amount, Decimal("-100.56"))
self.assertEqual(obj[0].description, "Example payment")
self.assertEqual(obj[1].date, date(2016, 6, 16))
self.assertEqual(obj[1].amount, Decimal("60.31"))
self.assertEqual(obj[1].description, "Example income")
self.assertEqual(obj[2].date, date(2016, 6, 17))
self.assertEqual(obj[2].amount, Decimal("-102.56"))
self.assertEqual(obj[2].description, "Example payment 2")
示例3: test_serialize_datetime
# 需要导入模块: from django.utils import datetime_safe [as 别名]
# 或者: from django.utils.datetime_safe import date [as 别名]
def test_serialize_datetime(self):
self.assertSerializedEqual(datetime.datetime.utcnow())
self.assertSerializedEqual(datetime.datetime.utcnow)
self.assertSerializedEqual(datetime.datetime.today())
self.assertSerializedEqual(datetime.datetime.today)
self.assertSerializedEqual(datetime.date.today())
self.assertSerializedEqual(datetime.date.today)
self.assertSerializedEqual(datetime.datetime.now().time())
self.assertSerializedEqual(datetime.datetime(2014, 1, 1, 1, 1, tzinfo=get_default_timezone()))
self.assertSerializedEqual(datetime.datetime(2013, 12, 31, 22, 1, tzinfo=FixedOffset(180)))
self.assertSerializedResultEqual(
datetime.datetime(2014, 1, 1, 1, 1),
("datetime.datetime(2014, 1, 1, 1, 1)", {'import datetime'})
)
self.assertSerializedResultEqual(
datetime.datetime(2012, 1, 1, 1, 1, tzinfo=utc),
(
"datetime.datetime(2012, 1, 1, 1, 1, tzinfo=utc)",
{'import datetime', 'from django.utils.timezone import utc'},
)
)
示例4: test_compare_datetimes
# 需要导入模块: from django.utils import datetime_safe [as 别名]
# 或者: from django.utils.datetime_safe import date [as 别名]
def test_compare_datetimes(self):
self.assertEqual(original_datetime(*self.more_recent), datetime(*self.more_recent))
self.assertEqual(original_datetime(*self.really_old), datetime(*self.really_old))
self.assertEqual(original_date(*self.more_recent), date(*self.more_recent))
self.assertEqual(original_date(*self.really_old), date(*self.really_old))
self.assertEqual(
original_date(*self.just_safe).strftime('%Y-%m-%d'), date(*self.just_safe).strftime('%Y-%m-%d')
)
self.assertEqual(
original_datetime(*self.just_safe).strftime('%Y-%m-%d'), datetime(*self.just_safe).strftime('%Y-%m-%d')
)
self.assertEqual(
original_time(*self.just_time).strftime('%H:%M:%S'), time(*self.just_time).strftime('%H:%M:%S')
)
示例5: test_safe_strftime
# 需要导入模块: from django.utils import datetime_safe [as 别名]
# 或者: from django.utils.datetime_safe import date [as 别名]
def test_safe_strftime(self):
self.assertEqual(date(*self.just_unsafe[:3]).strftime('%Y-%m-%d (weekday %w)'), '1899-12-31 (weekday 0)')
self.assertEqual(date(*self.just_safe).strftime('%Y-%m-%d (weekday %w)'), '1900-01-01 (weekday 1)')
self.assertEqual(
datetime(*self.just_unsafe).strftime('%Y-%m-%d %H:%M:%S (weekday %w)'), '1899-12-31 23:59:59 (weekday 0)'
)
self.assertEqual(
datetime(*self.just_safe).strftime('%Y-%m-%d %H:%M:%S (weekday %w)'), '1900-01-01 00:00:00 (weekday 1)'
)
self.assertEqual(time(*self.just_time).strftime('%H:%M:%S AM'), '11:30:59 AM')
# %y will error before this date
self.assertEqual(date(*self.just_safe).strftime('%y'), '00')
self.assertEqual(datetime(*self.just_safe).strftime('%y'), '00')
self.assertEqual(date(1850, 8, 2).strftime("%Y/%m/%d was a %A"), '1850/08/02 was a Friday')
示例6: test_safe_strftime
# 需要导入模块: from django.utils import datetime_safe [as 别名]
# 或者: from django.utils.datetime_safe import date [as 别名]
def test_safe_strftime(self):
self.assertEqual(date(*self.just_unsafe[:3]).strftime('%Y-%m-%d (weekday %w)'), '0999-12-31 (weekday 2)')
self.assertEqual(date(*self.just_safe).strftime('%Y-%m-%d (weekday %w)'), '1000-01-01 (weekday 3)')
self.assertEqual(
datetime(*self.just_unsafe).strftime('%Y-%m-%d %H:%M:%S (weekday %w)'), '0999-12-31 23:59:59 (weekday 2)'
)
self.assertEqual(
datetime(*self.just_safe).strftime('%Y-%m-%d %H:%M:%S (weekday %w)'), '1000-01-01 00:00:00 (weekday 3)'
)
self.assertEqual(time(*self.just_time).strftime('%H:%M:%S AM'), '11:30:59 AM')
# %y will error before this date
self.assertEqual(date(*self.percent_y_safe).strftime('%y'), '00')
self.assertEqual(datetime(*self.percent_y_safe).strftime('%y'), '00')
with self.assertRaisesMessage(TypeError, 'strftime of dates before 1000 does not handle %y'):
datetime(*self.just_unsafe).strftime('%y')
self.assertEqual(date(1850, 8, 2).strftime("%Y/%m/%d was a %A"), '1850/08/02 was a Friday')
示例7: serialize
# 需要导入模块: from django.utils import datetime_safe [as 别名]
# 或者: from django.utils.datetime_safe import date [as 别名]
def serialize(self):
value_repr = repr(self.value)
if isinstance(self.value, datetime_safe.date):
value_repr = "datetime.%s" % value_repr
return value_repr, {"import datetime"}
示例8: test_import_one
# 需要导入模块: from django.utils import datetime_safe [as 别名]
# 或者: from django.utils.datetime_safe import date [as 别名]
def test_import_one(self):
dataset = tablib.Dataset(
["15/6/2016", "5.10", "Example payment"], headers=["date", "amount", "description"]
)
self.makeResource().import_data(dataset)
self.assertEqual(StatementLine.objects.count(), 1)
obj = StatementLine.objects.get()
self.assertEqual(obj.date, date(2016, 6, 15))
self.assertEqual(obj.amount, Decimal("5.10"))
self.assertEqual(obj.description, "Example payment")
示例9: test_import_skip_duplicates
# 需要导入模块: from django.utils import datetime_safe [as 别名]
# 或者: from django.utils.datetime_safe import date [as 别名]
def test_import_skip_duplicates(self):
dataset = tablib.Dataset(
["15/6/2016", "5.10", "Example payment"], headers=["date", "amount", "description"]
)
self.makeResource().import_data(dataset)
# Now do the import again
self.makeResource().import_data(dataset)
# The record in the second should have been ignored
self.assertEqual(StatementLine.objects.count(), 1)
示例10: test_import_skip_duplicates_whitespace
# 需要导入模块: from django.utils import datetime_safe [as 别名]
# 或者: from django.utils.datetime_safe import date [as 别名]
def test_import_skip_duplicates_whitespace(self):
dataset1 = tablib.Dataset(
["15/6/2016", "5.10", "Example payment"], headers=["date", "amount", "description"]
)
dataset2 = tablib.Dataset(
["15/6/2016", "5.10", "Example payment "], # Whitespace added
headers=["date", "amount", "description"],
)
self.makeResource().import_data(dataset1)
self.makeResource().import_data(dataset2)
# The record in the second should have been ignored
self.assertEqual(StatementLine.objects.count(), 1)
示例11: test_import_two_identical
# 需要导入模块: from django.utils import datetime_safe [as 别名]
# 或者: from django.utils.datetime_safe import date [as 别名]
def test_import_two_identical(self):
"""Ensure they both get imported and that one doesnt get skipped as a duplicate
After all, if there are two imported rows that look identical, it is probably because
there are two identical transactions.
"""
dataset = tablib.Dataset(
["15/6/2016", "5.10", "Example payment"],
["15/6/2016", "5.10", "Example payment"],
headers=["date", "amount", "description"],
)
self.makeResource().import_data(dataset)
self.assertEqual(StatementLine.objects.count(), 2)
示例12: test_error_no_date
# 需要导入模块: from django.utils import datetime_safe [as 别名]
# 或者: from django.utils.datetime_safe import date [as 别名]
def test_error_no_date(self):
dataset = tablib.Dataset(["5.10", "Example payment"], headers=["amount", "description"])
result = self.makeResource().import_data(dataset)
self.assertEqual(len(result.row_errors()), 1)
self.assertIn("No date", str(result.row_errors()[0][1][0].error))
示例13: test_error_empty_date
# 需要导入模块: from django.utils import datetime_safe [as 别名]
# 或者: from django.utils.datetime_safe import date [as 别名]
def test_error_empty_date(self):
dataset = tablib.Dataset(
["", "5.10", "Example payment"], headers=["date", "amount", "description"]
)
result = self.makeResource().import_data(dataset)
self.assertEqual(len(result.row_errors()), 1)
self.assertIn("Expected dd/mm/yyyy", str(result.row_errors()[0][1][0].error))
示例14: test_error_empty_amounts
# 需要导入模块: from django.utils import datetime_safe [as 别名]
# 或者: from django.utils.datetime_safe import date [as 别名]
def test_error_empty_amounts(self):
dataset = tablib.Dataset(
["15/6/2016", "", "", "Example payment"],
headers=["date", "amount_in", "amount_out", "description"],
)
result = self.makeResource().import_data(dataset)
self.assertEqual(len(result.row_errors()), 1)
self.assertIn("Value required", str(result.row_errors()[0][1][0].error))
示例15: test_error_empty_amount
# 需要导入模块: from django.utils import datetime_safe [as 别名]
# 或者: from django.utils.datetime_safe import date [as 别名]
def test_error_empty_amount(self):
dataset = tablib.Dataset(
["15/6/2016", "", "Example payment"], headers=["date", "amount", "description"]
)
result = self.makeResource().import_data(dataset)
self.assertEqual(len(result.row_errors()), 1)
self.assertIn("No value found", str(result.row_errors()[0][1][0].error))