File size: 22,380 Bytes
3eedfa7 | 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 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 | from __future__ import annotations
import sys
from pathlib import Path
import numpy as np
import pytest
from click.testing import CliRunner
from PIL import Image
from manim import capture, get_video_metadata
from manim.__main__ import __version__, main
from manim.utils.file_ops import add_version_before_extension
from ..utils.video_tester import video_comparison
@pytest.mark.slow
@video_comparison(
"SquareToCircleWithDefaultValues.json",
"videos/simple_scenes/1080p60/SquareToCircle.mp4",
)
def test_basic_scene_with_default_values(tmp_path, manim_cfg_file, simple_scenes_path):
scene_name = "SquareToCircle"
command = [
sys.executable,
"-m",
"manim",
"--media_dir",
str(tmp_path),
str(simple_scenes_path),
scene_name,
]
out, err, exit_code = capture(command)
assert exit_code == 0, err
@pytest.mark.slow
def test_resolution_flag(tmp_path, manim_cfg_file, simple_scenes_path):
scene_name = "NoAnimations"
# test different separators
resolutions = [
(720, 480, ";"),
(1280, 720, ","),
(1920, 1080, "-"),
(2560, 1440, ";"),
# (3840, 2160, ","),
# (640, 480, "-"),
# (800, 600, ";"),
]
for width, height, separator in resolutions:
command = [
sys.executable,
"-m",
"manim",
"--media_dir",
str(tmp_path),
"--resolution",
f"{width}{separator}{height}",
str(simple_scenes_path),
scene_name,
]
_, err, exit_code = capture(command)
assert exit_code == 0, err
path = (
tmp_path / "videos" / "simple_scenes" / f"{height}p60" / f"{scene_name}.mp4"
)
meta = get_video_metadata(path)
assert (width, height) == (meta["width"], meta["height"])
@pytest.mark.slow
@video_comparison(
"SquareToCircleWithlFlag.json",
"videos/simple_scenes/480p15/SquareToCircle.mp4",
)
def test_basic_scene_l_flag(tmp_path, manim_cfg_file, simple_scenes_path):
scene_name = "SquareToCircle"
command = [
sys.executable,
"-m",
"manim",
"-ql",
"--media_dir",
str(tmp_path),
str(simple_scenes_path),
scene_name,
]
out, err, exit_code = capture(command)
assert exit_code == 0, err
@pytest.mark.slow
@video_comparison(
"SceneWithMultipleCallsWithNFlag.json",
"videos/simple_scenes/480p15/SceneWithMultipleCalls.mp4",
)
def test_n_flag(tmp_path, simple_scenes_path):
scene_name = "SceneWithMultipleCalls"
command = [
sys.executable,
"-m",
"manim",
"-ql",
"-n 3,6",
"--media_dir",
str(tmp_path),
str(simple_scenes_path),
scene_name,
]
_, err, exit_code = capture(command)
assert exit_code == 0, err
@pytest.mark.slow
def test_s_flag_no_animations(tmp_path, manim_cfg_file, simple_scenes_path):
scene_name = "NoAnimations"
command = [
sys.executable,
"-m",
"manim",
"-ql",
"-s",
"--media_dir",
str(tmp_path),
str(simple_scenes_path),
scene_name,
]
out, err, exit_code = capture(command)
assert exit_code == 0, err
exists = (tmp_path / "videos").exists()
assert not exists, "running manim with -s flag rendered a video"
is_empty = not any((tmp_path / "images" / "simple_scenes").iterdir())
assert not is_empty, "running manim with -s flag did not render an image"
@pytest.mark.slow
def test_s_flag(tmp_path, manim_cfg_file, simple_scenes_path):
scene_name = "SquareToCircle"
command = [
sys.executable,
"-m",
"manim",
"-ql",
"-s",
"--media_dir",
str(tmp_path),
str(simple_scenes_path),
scene_name,
]
out, err, exit_code = capture(command)
assert exit_code == 0, err
exists = (tmp_path / "videos").exists()
assert not exists, "running manim with -s flag rendered a video"
is_empty = not any((tmp_path / "images" / "simple_scenes").iterdir())
assert not is_empty, "running manim with -s flag did not render an image"
@pytest.mark.slow
def test_s_flag_opengl_renderer(tmp_path, manim_cfg_file, simple_scenes_path):
scene_name = "SquareToCircle"
command = [
sys.executable,
"-m",
"manim",
"-ql",
"-s",
"--renderer",
"opengl",
"--media_dir",
str(tmp_path),
str(simple_scenes_path),
scene_name,
]
out, err, exit_code = capture(command)
assert exit_code == 0, err
exists = (tmp_path / "videos").exists()
assert not exists, "running manim with -s flag rendered a video"
is_empty = not any((tmp_path / "images" / "simple_scenes").iterdir())
assert not is_empty, "running manim with -s flag did not render an image"
@pytest.mark.slow
def test_r_flag(tmp_path, manim_cfg_file, simple_scenes_path):
scene_name = "SquareToCircle"
command = [
sys.executable,
"-m",
"manim",
"-ql",
"-s",
"--media_dir",
str(tmp_path),
"-r",
"200,100",
str(simple_scenes_path),
scene_name,
]
out, err, exit_code = capture(command)
assert exit_code == 0, err
is_not_empty = any((tmp_path / "images").iterdir())
assert is_not_empty, "running manim with -s, -r flag did not render a file"
filename = add_version_before_extension(
tmp_path / "images" / "simple_scenes" / "SquareToCircle.png",
)
assert np.asarray(Image.open(filename)).shape == (100, 200, 4)
@pytest.mark.slow
def test_a_flag(tmp_path, manim_cfg_file, infallible_scenes_path):
command = [
sys.executable,
"-m",
"manim",
"-ql",
"--media_dir",
str(tmp_path),
"-a",
str(infallible_scenes_path),
]
_, err, exit_code = capture(command)
assert exit_code == 0, err
one_is_not_empty = (
tmp_path / "videos" / "infallible_scenes" / "480p15" / "Wait1.mp4"
).is_file()
assert one_is_not_empty, "running manim with -a flag did not render the first scene"
two_is_not_empty = (
tmp_path / "images" / "infallible_scenes" / f"Wait2_ManimCE_v{__version__}.png"
).is_file()
assert two_is_not_empty, (
"running manim with -a flag did not render an image, possible leak of the config dictionary."
)
three_is_not_empty = (
tmp_path / "videos" / "infallible_scenes" / "480p15" / "Wait3.mp4"
).is_file()
assert three_is_not_empty, (
"running manim with -a flag did not render the second scene"
)
@pytest.mark.slow
def test_custom_folders(tmp_path, manim_cfg_file, simple_scenes_path):
scene_name = "SquareToCircle"
command = [
sys.executable,
"-m",
"manim",
"-ql",
"-s",
"--media_dir",
str(tmp_path),
"--custom_folders",
str(simple_scenes_path),
scene_name,
]
out, err, exit_code = capture(command)
assert exit_code == 0, err
exists = (tmp_path / "videos").exists()
assert not exists, "--custom_folders produced a 'videos/' dir"
exists = add_version_before_extension(tmp_path / "SquareToCircle.png").exists()
assert exists, "--custom_folders did not produce the output file"
@pytest.mark.slow
def test_custom_output_name_gif(tmp_path, simple_scenes_path):
scene_name = "SquareToCircle"
custom_name = "custom_name"
command = [
sys.executable,
"-m",
"manim",
"-ql",
"--media_dir",
str(tmp_path),
"--format=gif",
"-o",
custom_name,
str(simple_scenes_path),
scene_name,
]
out, err, exit_code = capture(command)
assert exit_code == 0, err
wrong_gif_path = add_version_before_extension(
tmp_path / "videos" / "simple_scenes" / "480p15" / f"{scene_name}.gif"
)
assert not wrong_gif_path.exists(), (
"The gif file does not respect the custom name: " + custom_name + ".gif"
)
unexpected_mp4_path = (
tmp_path / "videos" / "simple_scenes" / "480p15" / str(custom_name + ".mp4")
)
assert not unexpected_mp4_path.exists(), "Found an unexpected mp4 file at " + str(
unexpected_mp4_path
)
expected_gif_path = (
tmp_path / "videos" / "simple_scenes" / "480p15" / str(custom_name + ".gif")
)
assert expected_gif_path.exists(), "gif file not found at " + str(expected_gif_path)
@pytest.mark.slow
def test_custom_output_name_mp4(tmp_path, simple_scenes_path):
scene_name = "SquareToCircle"
custom_name = "custom_name"
command = [
sys.executable,
"-m",
"manim",
"-ql",
"--media_dir",
str(tmp_path),
"-o",
custom_name,
str(simple_scenes_path),
scene_name,
]
out, err, exit_code = capture(command)
assert exit_code == 0, err
wrong_mp4_path = (
tmp_path / "videos" / "simple_scenes" / "480p15" / str(scene_name + ".mp4")
)
assert not wrong_mp4_path.exists(), (
"The mp4 file does not respect the custom name: " + custom_name + ".mp4"
)
unexpected_gif_path = add_version_before_extension(
tmp_path / "videos" / "simple_scenes" / "480p15" / f"{custom_name}.gif"
)
assert not unexpected_gif_path.exists(), "Found an unexpected gif file at " + str(
unexpected_gif_path
)
expected_mp4_path = (
tmp_path / "videos" / "simple_scenes" / "480p15" / str(custom_name + ".mp4")
)
assert expected_mp4_path.exists(), "mp4 file not found at " + str(expected_mp4_path)
@pytest.mark.slow
def test_dash_as_filename(tmp_path):
code = (
"class Test(Scene):\n"
" def construct(self):\n"
" self.add(Circle())\n"
" self.wait()"
)
command = [
"-ql",
"-s",
"--media_dir",
str(tmp_path),
"-",
]
runner = CliRunner()
result = runner.invoke(main, command, input=code)
assert result.exit_code == 0
exists = add_version_before_extension(
tmp_path / "images" / "-" / "Test.png",
).exists()
assert exists, result.output
@pytest.mark.slow
def test_gif_format_output(tmp_path, manim_cfg_file, simple_scenes_path):
"""Test only gif created with manim version in file name when --format gif is set"""
scene_name = "SquareToCircle"
command = [
sys.executable,
"-m",
"manim",
"-ql",
"--media_dir",
str(tmp_path),
"--format",
"gif",
str(simple_scenes_path),
scene_name,
]
out, err, exit_code = capture(command)
assert exit_code == 0, err
unexpected_mp4_path = (
tmp_path / "videos" / "simple_scenes" / "480p15" / "SquareToCircle.mp4"
)
assert not unexpected_mp4_path.exists(), "unexpected mp4 file found at " + str(
unexpected_mp4_path,
)
expected_gif_path = add_version_before_extension(
tmp_path / "videos" / "simple_scenes" / "480p15" / "SquareToCircle.gif"
)
assert expected_gif_path.exists(), "gif file not found at " + str(expected_gif_path)
@pytest.mark.slow
def test_mp4_format_output(tmp_path, manim_cfg_file, simple_scenes_path):
"""Test only mp4 created without manim version in file name when --format mp4 is set"""
scene_name = "SquareToCircle"
command = [
sys.executable,
"-m",
"manim",
"-ql",
"--media_dir",
str(tmp_path),
"--format",
"mp4",
str(simple_scenes_path),
scene_name,
]
out, err, exit_code = capture(command)
assert exit_code == 0, err
unexpected_gif_path = add_version_before_extension(
tmp_path / "videos" / "simple_scenes" / "480p15" / "SquareToCircle.gif"
)
assert not unexpected_gif_path.exists(), "unexpected gif file found at " + str(
unexpected_gif_path,
)
expected_mp4_path = (
tmp_path / "videos" / "simple_scenes" / "480p15" / "SquareToCircle.mp4"
)
assert expected_mp4_path.exists(), "expected mp4 file not found at " + str(
expected_mp4_path,
)
@pytest.mark.slow
def test_videos_not_created_when_png_format_set(
tmp_path,
manim_cfg_file,
simple_scenes_path,
):
"""Test mp4 and gifs are not created when --format png is set"""
scene_name = "SquareToCircle"
command = [
sys.executable,
"-m",
"manim",
"-ql",
"--media_dir",
str(tmp_path),
"--format",
"png",
str(simple_scenes_path),
scene_name,
]
out, err, exit_code = capture(command)
assert exit_code == 0, err
unexpected_gif_path = add_version_before_extension(
tmp_path / "videos" / "simple_scenes" / "480p15" / "SquareToCircle.gif"
)
assert not unexpected_gif_path.exists(), "unexpected gif file found at " + str(
unexpected_gif_path,
)
unexpected_mp4_path = (
tmp_path / "videos" / "simple_scenes" / "480p15" / "SquareToCircle.mp4"
)
assert not unexpected_mp4_path.exists(), "expected mp4 file not found at " + str(
unexpected_mp4_path,
)
@pytest.mark.slow
def test_images_are_created_when_png_format_set(
tmp_path,
manim_cfg_file,
simple_scenes_path,
):
"""Test images are created in media directory when --format png is set"""
scene_name = "SquareToCircle"
command = [
sys.executable,
"-m",
"manim",
"-ql",
"--media_dir",
str(tmp_path),
"--format",
"png",
str(simple_scenes_path),
scene_name,
]
out, err, exit_code = capture(command)
assert exit_code == 0, err
expected_png_path = tmp_path / "images" / "simple_scenes" / "SquareToCircle0000.png"
assert expected_png_path.exists(), "png file not found at " + str(expected_png_path)
@pytest.mark.slow
def test_images_are_created_when_png_format_set_for_opengl(
tmp_path,
manim_cfg_file,
simple_scenes_path,
):
"""Test images are created in media directory when --format png is set for opengl"""
scene_name = "SquareToCircle"
command = [
sys.executable,
"-m",
"manim",
"-ql",
"--renderer",
"opengl",
"--media_dir",
str(tmp_path),
"--format",
"png",
str(simple_scenes_path),
scene_name,
]
out, err, exit_code = capture(command)
assert exit_code == 0, err
expected_png_path = tmp_path / "images" / "simple_scenes" / "SquareToCircle0000.png"
assert expected_png_path.exists(), "png file not found at " + str(expected_png_path)
@pytest.mark.slow
def test_images_are_zero_padded_when_zero_pad_set(
tmp_path,
manim_cfg_file,
simple_scenes_path,
):
"""Test images are zero padded when --format png and --zero_pad n are set"""
scene_name = "SquareToCircle"
command = [
sys.executable,
"-m",
"manim",
"-ql",
"--media_dir",
str(tmp_path),
"--format",
"png",
"--zero_pad",
"3",
str(simple_scenes_path),
scene_name,
]
out, err, exit_code = capture(command)
assert exit_code == 0, err
unexpected_png_path = tmp_path / "images" / "simple_scenes" / "SquareToCircle0.png"
assert not unexpected_png_path.exists(), "non zero padded png file found at " + str(
unexpected_png_path,
)
expected_png_path = tmp_path / "images" / "simple_scenes" / "SquareToCircle000.png"
assert expected_png_path.exists(), "png file not found at " + str(expected_png_path)
@pytest.mark.slow
def test_images_are_zero_padded_when_zero_pad_set_for_opengl(
tmp_path,
manim_cfg_file,
simple_scenes_path,
):
"""Test images are zero padded when --format png and --zero_pad n are set with the opengl renderer"""
scene_name = "SquareToCircle"
command = [
sys.executable,
"-m",
"manim",
"-ql",
"--renderer",
"opengl",
"--media_dir",
str(tmp_path),
"--format",
"png",
"--zero_pad",
"3",
str(simple_scenes_path),
scene_name,
]
out, err, exit_code = capture(command)
assert exit_code == 0, err
unexpected_png_path = tmp_path / "images" / "simple_scenes" / "SquareToCircle0.png"
assert not unexpected_png_path.exists(), "non zero padded png file found at " + str(
unexpected_png_path,
)
expected_png_path = tmp_path / "images" / "simple_scenes" / "SquareToCircle000.png"
assert expected_png_path.exists(), "png file not found at " + str(expected_png_path)
@pytest.mark.slow
def test_webm_format_output(tmp_path, manim_cfg_file, simple_scenes_path):
"""Test only webm created when --format webm is set"""
scene_name = "SquareToCircle"
command = [
sys.executable,
"-m",
"manim",
"-ql",
"--media_dir",
str(tmp_path),
"--format",
"webm",
str(simple_scenes_path),
scene_name,
]
out, err, exit_code = capture(command)
assert exit_code == 0, err
unexpected_mp4_path = (
tmp_path / "videos" / "simple_scenes" / "480p15" / "SquareToCircle.mp4"
)
assert not unexpected_mp4_path.exists(), "unexpected mp4 file found at " + str(
unexpected_mp4_path,
)
expected_webm_path = (
tmp_path / "videos" / "simple_scenes" / "480p15" / "SquareToCircle.webm"
)
assert expected_webm_path.exists(), "expected webm file not found at " + str(
expected_webm_path,
)
@pytest.mark.slow
def test_default_format_output_for_transparent_flag(
tmp_path,
manim_cfg_file,
simple_scenes_path,
):
"""Test .mov is created by default when transparent flag is set"""
scene_name = "SquareToCircle"
command = [
sys.executable,
"-m",
"manim",
"-ql",
"--media_dir",
str(tmp_path),
"-t",
str(simple_scenes_path),
scene_name,
]
out, err, exit_code = capture(command)
assert exit_code == 0, err
unexpected_webm_path = (
tmp_path / "videos" / "simple_scenes" / "480p15" / "SquareToCircle.webm"
)
assert not unexpected_webm_path.exists(), "unexpected webm file found at " + str(
unexpected_webm_path,
)
expected_mov_path = (
tmp_path / "videos" / "simple_scenes" / "480p15" / "SquareToCircle.mov"
)
assert expected_mov_path.exists(), "expected .mov file not found at " + str(
expected_mov_path,
)
@pytest.mark.slow
def test_mov_can_be_set_as_output_format(tmp_path, manim_cfg_file, simple_scenes_path):
"""Test .mov is created by when set using --format mov arg"""
scene_name = "SquareToCircle"
command = [
sys.executable,
"-m",
"manim",
"-ql",
"--media_dir",
str(tmp_path),
"--format",
"mov",
str(simple_scenes_path),
scene_name,
]
out, err, exit_code = capture(command)
assert exit_code == 0, err
unexpected_webm_path = (
tmp_path / "videos" / "simple_scenes" / "480p15" / "SquareToCircle.webm"
)
assert not unexpected_webm_path.exists(), "unexpected webm file found at " + str(
unexpected_webm_path,
)
expected_mov_path = (
tmp_path / "videos" / "simple_scenes" / "480p15" / "SquareToCircle.mov"
)
assert expected_mov_path.exists(), "expected .mov file not found at " + str(
expected_mov_path,
)
@pytest.mark.slow
def test_reproducible_animation(tmp_path: Path, manim_cfg_file, simple_scenes_path):
scene_name = "SceneWithRandomness"
command = [
sys.executable,
"-m",
"manim",
"-ql",
"--media_dir",
str(tmp_path),
"--seed",
"42",
str(simple_scenes_path),
scene_name,
]
out, err, exit_code = capture(command)
assert exit_code == 0, err
first_path = tmp_path / "videos" / "simple_scenes" / "480p15" / f"{scene_name}.mp4"
command = [
sys.executable,
"-m",
"manim",
"-ql",
"--media_dir",
str(tmp_path),
"--seed",
"42",
str(simple_scenes_path),
scene_name,
]
out, err, exit_code = capture(command)
assert exit_code == 0, err
second_path = first_path.with_name(scene_name).with_suffix(".mp4")
with open(first_path, "rb") as f1, open(second_path, "rb") as f2:
first_data = f1.read()
second_data = f2.read()
assert first_data == second_data, "Videos with the same seed differ."
@pytest.mark.slow
@video_comparison(
"InputFileViaCfg.json",
"videos/simple_scenes/480p15/SquareToCircle.mp4",
)
def test_input_file_via_cfg(tmp_path, manim_cfg_file, simple_scenes_path):
scene_name = "SquareToCircle"
(tmp_path / "manim.cfg").write_text(
f"""
[CLI]
input_file = {simple_scenes_path}
"""
)
command = [
sys.executable,
"-m",
"manim",
"-ql",
"--media_dir",
".",
str(tmp_path),
scene_name,
]
out, err, exit_code = capture(command, cwd=tmp_path)
assert exit_code == 0, err
@pytest.mark.slow
def test_dry_run_via_config_file_no_output(tmp_path, simple_scenes_path):
"""Test that no file is created when dry_run is set to true in a config file."""
scene_name = "SquareToCircle"
config_file = tmp_path / "test_config.cfg"
config_file.write_text(
"""
[CLI]
dry_run = true
"""
)
command = [
sys.executable,
"-m",
"manim",
"--config_file",
str(config_file),
"--media_dir",
str(tmp_path),
str(simple_scenes_path),
scene_name,
]
out, err, exit_code = capture(command)
assert exit_code == 0, err
assert not (tmp_path / "videos").exists(), "videos folder was created in dry_run"
assert not (tmp_path / "images").exists(), "images folder was created in dry_run"
|