Skip to content

Commit

Permalink
Regression test for #1819
Browse files Browse the repository at this point in the history
(cherry picked from commit 50fdc5d)
  • Loading branch information
kevinbackhouse authored and mergify-bot committed Aug 1, 2021
1 parent 0eacac6 commit f3aaa56
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 0 deletions.
Binary file added test/data/issue_1819_poc.exv
Binary file not shown.
41 changes: 41 additions & 0 deletions tests/bugfixes/github/test_issue_1819.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
# -*- coding: utf-8 -*-

from system_tests import CaseMeta, CopyTmpFiles, path, check_no_ASAN_UBSAN_errors

class EmptyStringXmpTextValueRead(metaclass=CaseMeta):
"""
Regression test for the bug described in:
https://github.com/Exiv2/exiv2/issues/1819
"""
url = "https://github.com/Exiv2/exiv2/issues/1819"

filename = path("$data_path/issue_1819_poc.exv")
commands = ["$exiv2 -q $filename"]
stdout = ["""File name : $filename
File size : 1088 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 :
"""]
stderr = [""]
retval = [0]

0 comments on commit f3aaa56

Please sign in to comment.