1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322
|
#!/usr/bin/env python3
# Fluster - testing framework for decoders conformance
# Copyright (C) 2020-2024, Fluendo, S.A.
# Author: Martin Cesarini <mcesarini@fluendo.com>, Fluendo, S.A.
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public License
# as published by the Free Software Foundation, either version 3
# of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library. If not, see <https://www.gnu.org/licenses/>.
import argparse
import os
import re
import subprocess
import sys
import urllib.error
import zipfile
from time import sleep
from typing import Any, List
sys.path.append(os.path.join(os.path.dirname(__file__), ".."))
from fluster import utils
from fluster.codec import Codec, OutputFormat
from fluster.test_suite import TestSuite
from fluster.test_vector import TestVector
ARGON_URL = "https://storage.googleapis.com/downloads.aomedia.org/assets/zip/"
class AV1ArgonGenerator:
"""Generates a test suite from the conformance bitstreams"""
def __init__(
self,
name: str,
suite_name: str,
codec: Codec,
description: str,
site: str,
test_vector_groups: List[str],
use_ffprobe: bool = False,
):
self.name = name
self.suite_name = suite_name
self.codec = codec
self.description = description
self.site = site
self.test_vector_groups = test_vector_groups
self.use_ffprobe = use_ffprobe
self.is_single_archive = True
def generate(self, download: bool) -> None:
"""Generates the test suite and saves it to a file"""
output_filepath = os.path.join(self.suite_name + ".json")
absolute_dest_dir = os.path.dirname(os.path.abspath(__file__))
extract_folder = os.path.join(absolute_dest_dir, "resources")
test_suite = TestSuite(
output_filepath,
extract_folder,
self.suite_name,
self.codec,
self.description,
{},
self.is_single_archive,
)
os.makedirs(extract_folder, exist_ok=True)
source_url = self.site + self.name
source_checksum_ref_url = self.site + self.name + ".md5sum"
# Download source checksum reference file
try:
utils.download(source_checksum_ref_url, extract_folder)
source_checksum_ref = self._fill_checksum_argon(extract_folder + "/" + self.name + ".md5sum")
except urllib.error.URLError as ex:
raise Exception(f"\tUnable to download {source_checksum_ref_url} to {extract_folder}, {str(ex)}") from ex
except Exception as ex:
raise Exception(str(ex)) from ex
# Calculate checksum of source file on disk
try:
source_checksum = utils.file_checksum(extract_folder + "/" + self.name)
except Exception as ex:
source_checksum = ""
print(f"{ex}")
# Download the zip file
if download and source_checksum != source_checksum_ref:
print(f"Download test suite archive from {source_url}")
try:
utils.download(source_url, extract_folder)
source_checksum = utils.file_checksum(extract_folder + "/" + self.name)
except urllib.error.URLError as ex:
raise Exception(f"\tUnable to download {source_url} to {extract_folder}, {str(ex)}") from ex
except Exception as ex:
raise Exception(str(ex)) from ex
elif not download and source_checksum and source_checksum != source_checksum_ref:
print(
"WARNING: You have chosen not to download the source file. However the checksum of the source file "
"on disk does not coincide with its reference checksum, indicating some kind of issue. Please enable "
"download and execute the script again. Reporting error through exit code 1"
)
sleep(10)
# Unzip the source file
test_vector_files = []
with zipfile.ZipFile(extract_folder + "/" + self.name, "r") as zip_ref:
print(f"Unzip test streams and checksums from {self.name}")
for file_info in zip_ref.namelist():
# Process test vector groups
file_info_split = file_info.split("/")
test_vector_group = file_info_split[1]
if test_vector_group in self.test_vector_groups:
# Extract test vector files
if file_info.endswith(".obu"):
zip_ref.extract(file_info, extract_folder)
test_vector_files.append(file_info)
# Extract md5 files
if file_info.endswith(".md5") and "md5_ref/" in file_info and "layers/" not in file_info:
zip_ref.extract(file_info, extract_folder)
# Create test vectors and test suite
print("Creating test vectors and test suite")
for idx, file in enumerate(test_vector_files):
filename = os.path.splitext(os.path.basename(file))[0]
# ffprobe execution
if self.use_ffprobe:
full_path = os.path.abspath(extract_folder + "/" + file)
ffprobe = utils.normalize_binary_cmd("ffprobe")
command = [
ffprobe,
"-v",
"error",
"-select_streams",
"v:0",
"-show_entries",
"stream=pix_fmt",
"-of",
"default=nokey=1:noprint_wrappers=1",
full_path,
]
try:
result = utils.run_command_with_output(command).splitlines()
pix_fmt = result[0]
if pix_fmt == "unknown":
pix_fmt = "Unknown"
except subprocess.CalledProcessError:
pix_fmt = "None"
# Processing md5 files
md5_file_to_find = os.path.splitext(filename)[0] + ".md5"
full_path_split = full_path.split("/")
md5_directory_path = "/".join(full_path_split[: len(full_path_split) - 2]) + "/" + "md5_ref"
md5_file_path = os.path.join(md5_directory_path, md5_file_to_find)
# Check the .md5 file and get checksum
if os.path.exists(md5_file_path):
try:
result_checksum = self._fill_checksum_argon(md5_file_path)
except Exception as ex:
print("MD5 does not match")
raise ex
else:
try:
result_checksum = utils.file_checksum(full_path)
except Exception as ex:
print("MD5 cannot be calculated")
raise ex
# Add data to the test vector and the test suite
test_vector = TestVector(
filename,
source_url,
source_checksum,
file,
OutputFormat[pix_fmt.upper()],
result_checksum,
)
test_suite.test_vectors[filename] = test_vector
absolute_output_filepath = os.path.join(absolute_dest_dir, output_filepath)
test_suite.to_json_file(absolute_output_filepath)
print("Generate new test suite: " + test_suite.name + ".json")
@staticmethod
def _fill_checksum_argon(dest_dir: str) -> Any:
checksum_file = dest_dir
if checksum_file is None:
raise Exception("MD5 not found")
with open(checksum_file, "r") as checksum_fh:
regex = re.compile(r"\b([a-fA-F0-9]{32})\b")
lines = checksum_fh.readlines()
# Prefer lines matching the regex pattern
match = next((regex.search(line) for line in lines if regex.search(line)), None)
if match:
result = match.group(1)[:32].lower()
else:
result = -1
# Assert that we have extracted a valid MD5 from the file
assert len(result) == 32 and re.search(r"^[a-fA-F0-9]{32}$", result) is not None, (
f"{result} is not a valid MD5 hash"
)
return result
if __name__ == "__main__":
parser = argparse.ArgumentParser()
parser.add_argument(
"--skip-download",
help="skip downloading zip",
action="store_true",
default=False,
)
args = parser.parse_args()
generator = AV1ArgonGenerator(
"argon_coveragetool_av1_base_and_extended_profiles_v2.1.1.zip",
"AV1-ARGON-PROFILE0-CORE-ANNEX-B",
Codec.AV1,
"AV1 Argon Profile0 Core Annex B test suite",
ARGON_URL,
["profile0_core", "profile0_core_special"],
True,
)
generator.generate(not args.skip_download)
generator = AV1ArgonGenerator(
"argon_coveragetool_av1_base_and_extended_profiles_v2.1.1.zip",
"AV1-ARGON-PROFILE0-NON-ANNEX-B",
Codec.AV1,
"AV1 Argon Profile 0 Non-Annex B test suite",
ARGON_URL,
["profile0_error", "profile0_not_annexb", "profile0_not_annexb_special"],
True,
)
generator.generate(not args.skip_download)
generator = AV1ArgonGenerator(
"argon_coveragetool_av1_base_and_extended_profiles_v2.1.1.zip",
"AV1-ARGON-PROFILE0-STRESS-ANNEX-B",
Codec.AV1,
"AV1 Argon Profile0 Stress Annex B test suite",
ARGON_URL,
["profile0_stress"],
True,
)
generator.generate(not args.skip_download)
generator = AV1ArgonGenerator(
"argon_coveragetool_av1_base_and_extended_profiles_v2.1.1.zip",
"AV1-ARGON-PROFILE1-CORE-ANNEX-B",
Codec.AV1,
"AV1 Argon Profile1 Core Annex B test suite",
ARGON_URL,
["profile1_core", "profile1_core_special"],
True,
)
generator.generate(not args.skip_download)
generator = AV1ArgonGenerator(
"argon_coveragetool_av1_base_and_extended_profiles_v2.1.1.zip",
"AV1-ARGON-PROFILE1-NON-ANNEX-B",
Codec.AV1,
"AV1 Argon Profile 1 Non-Annex B test suite",
ARGON_URL,
["profile1_error", "profile1_not_annexb", "profile1_not_annexb_special"],
True,
)
generator.generate(not args.skip_download)
generator = AV1ArgonGenerator(
"argon_coveragetool_av1_base_and_extended_profiles_v2.1.1.zip",
"AV1-ARGON-PROFILE1-STRESS-ANNEX-B",
Codec.AV1,
"AV1 Argon Profile1 Stress Annex B test suite",
ARGON_URL,
["profile1_stress"],
True,
)
generator.generate(not args.skip_download)
generator = AV1ArgonGenerator(
"argon_coveragetool_av1_base_and_extended_profiles_v2.1.1.zip",
"AV1-ARGON-PROFILE2-CORE-ANNEX-B",
Codec.AV1,
"AV1 Argon Profile2 Core Annex B test suite",
ARGON_URL,
["profile2_core", "profile2_core_special"],
True,
)
generator.generate(not args.skip_download)
generator = AV1ArgonGenerator(
"argon_coveragetool_av1_base_and_extended_profiles_v2.1.1.zip",
"AV1-ARGON-PROFILE2-NON-ANNEX-B",
Codec.AV1,
"AV1 Argon Profile 2 Non-Annex B test suite",
ARGON_URL,
["profile2_error", "profile2_not_annexb", "profile2_not_annexb_special"],
True,
)
generator.generate(not args.skip_download)
generator = AV1ArgonGenerator(
"argon_coveragetool_av1_base_and_extended_profiles_v2.1.1.zip",
"AV1-ARGON-PROFILE2-STRESS-ANNEX-B",
Codec.AV1,
"AV1 Argon Profile2 Stress Annex B test suite",
ARGON_URL,
["profile2_stress"],
True,
)
generator.generate(not args.skip_download)
|