forked from Exiv2/exiv2
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3cb7b87
commit 313a030
Showing
2 changed files
with
43 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
<x:xmpmeta xmlns:x=" "><rdf:RDF xmlns:rdf=" "><rdf:Description xmlns:xmp="a"><xmp:CreateDate>-9223372034707290000</xmp:CreateDate></rdf:Description></rdf:RDF></x:xmpmeta> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
# -*- coding: utf-8 -*- | ||
|
||
from system_tests import CaseMeta, path | ||
|
||
class XMPUtilsSetTimeZoneIntegerOverflow(metaclass=CaseMeta): | ||
""" | ||
Regression test for the bug described in: | ||
https://github.com/Exiv2/exiv2/issues/1901 | ||
""" | ||
url = "https://github.com/Exiv2/exiv2/issues/1901" | ||
|
||
filename = path("$data_path/issue_1901_poc.xmp") | ||
commands = ["$exiv2 $filename"] | ||
stderr = ["""Warning: Unsupported date format | ||
"""] | ||
stdout = ["""File name : $filename | ||
File size : 170 Bytes | ||
MIME type : application/rdf+xml | ||
Image size : 0 x 0 | ||
Thumbnail : None | ||
Camera make : | ||
Camera model : | ||
Image timestamp : | ||
File number : | ||
Exposure time : | ||
Aperture : | ||
Exposure bias : | ||
Flash : | ||
Flash bias : | ||
Focal length : | ||
Subject distance: | ||
ISO speed : | ||
Exposure mode : | ||
Metering mode : | ||
Macro mode : | ||
Image quality : | ||
White balance : | ||
Copyright : | ||
Exif comment : | ||
"""] | ||
retval = [0] |