Blame tests/bugfixes/redmine/test_issue_816.py

Packit Service 21b5d1
# -*- coding: utf-8 -*-
Packit Service 21b5d1
Packit Service 21b5d1
import system_tests
Packit Service 21b5d1
Packit Service 21b5d1
Packit Service 21b5d1
class DetectionOfSigma55_200mmLens(metaclass=system_tests.CaseMeta):
Packit Service 21b5d1
Packit Service 21b5d1
    url = "http://dev.exiv2.org/issues/816"
Packit Service 21b5d1
Packit Service 21b5d1
    filenames = [
Packit Service 21b5d1
        "$data_path/exiv2-bug816{!s}.exv".format(char)
Packit Service 21b5d1
        for char in ["a", "b", "c", "d", "e"]
Packit Service 21b5d1
    ]
Packit Service 21b5d1
Packit Service 21b5d1
    commands = [
Packit Service 21b5d1
        "$exiv2 -pa --grep Lens " + filename for filename in filenames
Packit Service 21b5d1
    ]
Packit Service 21b5d1
    stdout = [
Packit Service 21b5d1
        """Exif.Pentax.LensType                         Byte        2  Sigma 55-200mm F4-5.6 DC
Packit Service 21b5d1
Exif.Pentax.LensInfo                         Undefined  36  3 255 0 0 40 148 71 152 80 6 241 65 237 153 88 36 1 76 107 251 255 255 255 0 0 80 6 241 0 0 0 0 0 0 0 0
Packit Service 21b5d1
""",
Packit Service 21b5d1
        """Exif.PentaxDng.LensType                      Byte        3  Sigma 55-200mm F4-5.6 DC
Packit Service 21b5d1
Exif.PentaxDng.LensInfo                      Undefined  69  131 0 0 255 0 40 148 68 244 112 6 243 65 197 153 88 35 1 73 107 251 255 255 255 0 0 112 6 243 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Packit Service 21b5d1
""",
Packit Service 21b5d1
        """Exif.Pentax.LensType                         Byte        3  Sigma 55-200mm F4-5.6 DC
Packit Service 21b5d1
Exif.Pentax.LensInfo                         Undefined  69  131 0 0 255 0 40 148 68 244 112 6 243 65 197 153 88 35 1 73 107 251 255 255 255 0 0 112 6 243 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Packit Service 21b5d1
""",
Packit Service 21b5d1
        """Exif.Pentax.LensType                         Byte        3  Sigma 55-200mm F4-5.6 DC
Packit Service 21b5d1
Exif.Pentax.LensInfo                         Undefined  69  131 0 0 255 0 40 148 68 244 112 6 243 65 197 153 88 35 1 73 107 251 255 255 255 0 0 112 6 243 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Packit Service 21b5d1
""",
Packit Service 21b5d1
        """Exif.PentaxDng.LensType                      Byte        4  Sigma 55-200mm F4-5.6 DC
Packit Service 21b5d1
Exif.PentaxDng.LensInfo                      Undefined 128  0 131 128 0 0 255 1 184 0 0 0 0 0 0 0 0 40 148 71 78 128 70 244 65 89 136 88 61 1 64 107 251 255 255 255 0 0 128 70 244 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Packit Service 21b5d1
"""
Packit Service 21b5d1
    ]
Packit Service 21b5d1
    stderr = [""] * 5
Packit Service 21b5d1
    retval = [0] * 5