exiv2/tests/bugfixes/github/test_pr_906.py
postscript-dev 4ac8ac9ba0
Update Sony2Fp makernote tags (tag 9402)
Changes:
+ Add pretty printing for all tags
+ Add camera selector, to prevent incompatible models using tags
+ Update testing with new values

Source: Exiftool (https://exiftool.org/TagNames/Sony.html)
2021-07-13 16:53:15 +01:00

18 lines
552 B
Python

# -*- coding: utf-8 -*-
from system_tests import CaseMeta, path
class Sony2FpTest(metaclass=CaseMeta):
filename = path("$data_path/exiv2-pr906.exv")
commands = ["$exiv2 -pa --grep Sony2Fp $filename"]
stdout = ["""Exif.Sony2Fp.AmbientTemperature SByte 1 19 °C
Exif.Sony2Fp.FocusMode Byte 1 DMF
Exif.Sony2Fp.AFAreaMode Byte 1 Expanded Flexible Spot
Exif.Sony2Fp.FocusPosition2 Byte 1 140
"""
]
stderr = [""]
retval = [0]