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.
47 lines
2.2 KiB
Python
47 lines
2.2 KiB
Python
# -*- coding: utf-8 -*-
|
|
import re
|
|
import os
|
|
import system_tests
|
|
from lens_tests.utils import extract_lenses_from_cpp, make_test_cases, aperture_to_raw_exif
|
|
|
|
# NOTE
|
|
# Normally the canon maker note holds the max aperture of the lens at the focal length
|
|
# the picture was taken at. Thus for a f/4-6.3 lens, this value could be anywhere in that range.
|
|
# For the below tests we only test the scenario where the lens was used at it's shortest focal length.
|
|
# Thus we always pick the 'aperture_max_short' of a lens as the value to write into the
|
|
# Exif.CanonCs.MaxAperture field.
|
|
|
|
# get directory of the current file
|
|
file_dir = os.path.dirname(os.path.realpath(__file__))
|
|
# to get the canon maker note cpp file that contains list of all supported lenses
|
|
canon_lens_file = os.path.abspath(os.path.join(file_dir, "./../../src/canonmn_int.cpp"))
|
|
# tell the below function what the start of the lens array looks like
|
|
startpattern = "constexpr TagDetails canonCsLensType[] = {"
|
|
# use utils function to extract all lenses
|
|
lenses = extract_lenses_from_cpp(canon_lens_file, startpattern)
|
|
# use utils function to define test case data
|
|
test_cases = make_test_cases(lenses)
|
|
|
|
for lens_tc in test_cases:
|
|
|
|
testname = lens_tc["id"] + "_" + lens_tc["desc"]
|
|
|
|
globals()[testname] = system_tests.CaseMeta(
|
|
"canon_lenses." + testname,
|
|
tuple(),
|
|
{
|
|
"filename": "$data_path/template.exv",
|
|
"commands": [
|
|
'$exiv2 -M"set Exif.CanonCs.LensType $lens_id" -M"set Exif.CanonCs.Lens $focal_length_max $focal_length_min 1" -M"set Exif.CanonCs.MaxAperture $aperture_max" $filename && $exiv2 -pa -K Exif.CanonCs.LensType $filename'
|
|
],
|
|
"stderr": [""],
|
|
"stdout": ["Exif.CanonCs.LensType Short 1 $lens_description\n"],
|
|
"retval": [0],
|
|
"lens_id": lens_tc["id"],
|
|
"lens_description": lens_tc["target"],
|
|
"aperture_max": aperture_to_raw_exif(lens_tc["aperture_max_short"] * lens_tc["tc"]),
|
|
"focal_length_min": int(lens_tc["focal_length_min"] * lens_tc["tc"]),
|
|
"focal_length_max": int(lens_tc["focal_length_max"] * lens_tc["tc"]),
|
|
},
|
|
)
|