You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
829 B
Python

# -*- coding: utf-8 -*-
import system_tests
from system_tests import CaseMeta, path
class TestXmpDateTimeSetting(metaclass=CaseMeta):
"""
Test fix for issue 1998.
"""
infile = path("$data_path/issue_1998.xmp")
commands = [
"$exiv2 -M\"set Xmp.xmp.CreateDate XmpText 2021-02-03T12:00:00+01:00\" $infile",
"$exiv2 -K Xmp.xmp.CreateDate $infile",
"$exiv2 -M\"set Xmp.xmp.CreateDate XmpText 2021-02-03T12:34:56+02:00\" $infile",
"$exiv2 -K Xmp.xmp.CreateDate $infile",
]
stdout = [
"",
"""Xmp.xmp.CreateDate XmpText 25 2021-02-03T12:00:00+01:00
""",
"",
"""Xmp.xmp.CreateDate XmpText 25 2021-02-03T12:34:56+02:00
""",
]
stderr = [""]*4
retval = [0]*4