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
|
# Copyright 2012,2013 Christoph Reiter
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
import os
import sys
from quodlibet.util import is_osx, is_windows
from senf import fsnative, path2fsn
from tests import TestCase, get_data_path, mkstemp, skipIf
from .helper import capture_output, get_temp_copy
from quodlibet import config
from quodlibet.formats import MusicFile
from quodlibet.operon.main import main as operon_main
def call(args):
args = [path2fsn(a) for a in args]
with capture_output() as (out, err):
try:
return_code = operon_main([path2fsn("operon.py")] + args)
except SystemExit as e:
return_code = e.code
return (return_code, out.getvalue(), err.getvalue())
class TOperonBase(TestCase):
def setUp(self):
config.init()
self.f = get_temp_copy(get_data_path("silence-44-s.ogg"))
self.f2 = get_temp_copy(get_data_path("silence-44-s.mp3"))
self.s = MusicFile(self.f)
self.s2 = MusicFile(self.f2)
fd, self.f3 = mkstemp(".mp3")
os.write(fd, b"garbage")
os.close(fd)
def tearDown(self):
os.unlink(self.f)
os.unlink(self.f2)
os.unlink(self.f3)
config.quit()
def check_true(self, args, stdout_not_empty, stderr_not_empty, **kwargs):
"""Assert success status code"""
return self._check(args, True, stdout_not_empty, stderr_not_empty, **kwargs)
def check_false(self, args, stdout_not_empty, stderr_not_empty, **kwargs):
"""Assert error status code"""
return self._check(args, False, stdout_not_empty, stderr_not_empty, **kwargs)
def _check(self, args, command_succeeds, stdout_not_empty, stderr_not_empty):
s, o, e = call(args)
assert (s == 0) == command_succeeds, repr((s, o, e))
assert bool(o) == stdout_not_empty, repr(o)
assert bool(e) == stderr_not_empty, repr(e)
return o, e
class TOperonMain(TOperonBase):
# [--version] [--help] [--verbose] <command> [<args>]
def test_main(self):
self.check_false([], False, True)
self.check_true(["help"], True, False)
self.check_false(["help", "foobar"], False, True)
# TODO: "image-extract", "rename", "fill", "fill-tracknumber", "edit"
# "load"
for sub in [
"help",
"copy",
"set",
"clear",
"remove",
"add",
"list",
"print",
"info",
"tags",
]:
self.check_true(["help", sub], True, False)
self.check_true(["help", "-h"], True, False)
self.check_true(["help", "--help"], True, False)
self.check_false(["help", "--foobar"], False, True)
self.check_true(["--verbose", "help", "help"], True, False)
self.check_true(["-v", "help", "help"], True, False)
self.check_false(["--foobar", "help", "help"], False, True)
self.check_true(["--version"], True, False)
class TOperonAdd(TOperonBase):
# add <tag> <value> <file> [<files>]
def test_add_misc(self):
self.check_false(["add"], False, True)
self.check_false(["add", "tag"], False, True)
self.check_false(["add", "tag", "value"], False, True)
self.check_true(["add", "tag", "value", self.f], False, False)
self.check_true(["add", "tag", "value", self.f, self.f], False, False)
def test_add_check(self):
keys = list(self.s.keys())
self.check_true(["add", "foo", "bar", self.f], False, False)
self.s.reload()
self.assertEqual(self.s["foo"], "bar")
self.assertEqual(len(keys) + 1, len(self.s.keys()))
self.check_true(["-v", "add", "foo", "bar2", self.f], False, True)
self.s.reload()
self.assertEqual(set(self.s.list("foo")), {"bar", "bar2"})
def test_add_backlisted(self):
self.check_false(["add", "playcount", "bar", self.f], False, True)
def test_permissions(self):
try:
os.chmod(self.f, 0o000)
self.check_false(["add", "foo", "bar", self.f, self.f], False, True)
os.chmod(self.f, 0o444)
self.check_false(["add", "foo", "bar", self.f, self.f], False, True)
finally:
os.chmod(self.f, 0o666)
class TOperonPrint(TOperonBase):
# [-p <pattern>] <file> [<files>]
def test_print(self):
self.check_false(["print"], False, True)
o, e = self.check_true(["print", self.f], True, False)
self.assertEqual(
o.splitlines()[0], "piman, jzig - Quod Libet Test Data - 02/10 - Silence"
)
o, e = self.check_true(["print", "-p", "<title>", self.f], True, False)
self.assertEqual(o.splitlines()[0], "Silence")
o, e = self.check_true(["print", "-p", "<title>", self.f, self.f], True, False)
self.assertEqual(o.splitlines(), ["Silence", "Silence"])
def test_print_invalid(self):
# passing a song which can't be loaded results in fail
self.check_false(["print", self.f3], False, True)
# in case some fail and some don't, print the error messages for
# the failed ones, the patterns for the working ones and return
# an error status
o, e = self.check_false(["print", self.f3, self.f2], True, True)
assert "Quod Libet Test Data" in o
@skipIf(is_windows(), "doesn't prevent reading under wine...")
def test_permissions(self):
os.chmod(self.f, 0o000)
self.check_false(["print", "-p", "<title>", self.f], False, True)
class TOperonRemove(TOperonBase):
# [--dry-run] <tag> [-e <pattern> | <value>] <file> [<files>]
def test_error(self):
self.check_false(["remove"], False, True)
self.check_false(["remove", "tag", "value"], False, True)
def test_remove(self):
self.s["test"] = "foo\nbar\nfoo"
self.s.write()
self.check_true(["remove", "tag", "value", self.f], False, False)
self.check_true(["remove", "test", "foo", self.f], False, False)
self.s.reload()
self.assertEqual(self.s["test"], "bar")
self.check_true(["-v", "remove", "test", "xxx", self.f, self.f], False, True)
self.s.reload()
self.assertEqual(self.s["test"], "bar")
def test_dry_run(self):
self.s["test"] = "foo\nbar\nfoo"
self.s.write()
self.check_true(["remove", "--dry-run", "test", "foo", self.f], False, True)
self.s.reload()
self.assertEqual(len(self.s.list("test")), 3)
def test_pattern(self):
self.s["test"] = "fao\nbar\nfoo"
self.s.write()
self.check_true(["remove", "test", "-e", "f[ao]o", self.f], False, False)
self.s.reload()
self.assertEqual(self.s.list("test"), ["bar"])
self.check_true(["-v", "remove", "test", "-e", ".*", self.f], False, True)
self.s.reload()
assert not self.s.list("test")
class TOperonClear(TOperonBase):
# [--dry-run] [-a | -e <pattern> | <tag>] <file> [<files>]
def test_misc(self):
self.check_false(["clear"], False, True)
self.check_false(["clear", self.f], False, True)
self.check_true(["clear", "-a", self.f], False, False)
self.check_false(["-v", "clear", "-e", self.f], False, True)
self.check_true(["-v", "clear", "-e", "xx", self.f], False, True)
self.check_true(["clear", "-e", "xx", self.f], False, False)
self.check_false(["clear", "-e", "x", "-a", self.f], False, True)
def _test_all(self):
self.check(["clear", "-a", self.f], True, output=False)
self.s.reload()
assert not self.s.realkeys()
self.check(["clear", "-a", self.f, self.f], True, output=False)
def _test_all_dry_run(self):
old_len = len(self.s.realkeys())
assert old_len
self.check(["clear", "-a", "--dry-run", self.f], True)
self.s.reload()
self.assertEqual(len(self.s.realkeys()), old_len)
def _test_pattern(self):
old_len = len(self.s.realkeys())
self.check(["clear", "-e", "a.*", self.f], True, output=False)
self.s.reload()
self.assertEqual(len(self.s.realkeys()), old_len - 2)
def _test_simple(self):
old_len = len(self.s.realkeys())
self.check(["clear", "a.*", self.f], True, output=False)
self.s.reload()
self.assertEqual(len(self.s.realkeys()), old_len)
self.check(["clear", "--dry-run", "artist", self.f], True)
self.s.reload()
self.assertEqual(len(self.s.realkeys()), old_len)
self.check(["clear", "artist", self.f], True, output=False)
self.s.reload()
self.assertEqual(len(self.s.realkeys()), old_len - 1)
class TOperonSet(TOperonBase):
# [--dry-run] <tag> <value> <file> [<files>]
def test_misc(self):
self.check_false(["set"], False, True)
self.check_true(["set", "-h"], True, False)
self.check_false(["set", "tag", "value"], False, True)
self.check_true(["set", "tag", "value", self.f], False, False)
self.check_true(["set", "tag", "value", self.f, self.f], False, False)
self.check_true(["set", "--dry-run", "tag", "value", self.f], False, False)
def test_simple(self):
self.check_true(["set", "foo", "bar", self.f], False, False)
self.s.reload()
self.assertEqual(self.s["foo"], "bar")
self.check_true(["set", "--dry-run", "foo", "x", self.f], False, False)
self.s.reload()
self.assertEqual(self.s["foo"], "bar")
def test_replace(self):
self.assertNotEqual(self.s["artist"], "foobar")
self.check_true(["set", "artist", "foobar", self.f], False, False)
self.s.reload()
self.assertEqual(self.s["artist"], "foobar")
class TOperonCopy(TOperonBase):
# [--dry-run] [--ignore-errors] <source> <dest>
def test_misc(self):
self.check_false(["copy"], False, True)
self.check_true(["copy", "-h"], True, False)
self.check_false(["copy", "foo"], False, True)
self.check_true(["copy", self.f, self.f2], False, False)
self.check_true(["-v", "copy", self.f, self.f2], False, True)
def test_simple(self):
for key in self.s2.realkeys():
del self.s2[key]
self.s2.write()
self.s2.reload()
assert not self.s2.realkeys()
self.check_true(["copy", self.f, self.f2], False, False)
self.s2.reload()
assert self.s2.realkeys()
def test_not_changable(self):
self.s2["rating"] = "foo"
self.s2.write()
self.check_false(["copy", self.f2, self.f], False, True)
self.check_true(["copy", "--ignore-errors", self.f2, self.f], False, False)
def test_add(self):
self.assertEqual(len(self.s2.list("genre")), 1)
self.check_true(["copy", self.f, self.f2], False, False)
self.s2.reload()
self.assertEqual(len(self.s2.list("genre")), 2)
def test_dry_run(self):
for key in self.s2.realkeys():
del self.s2[key]
self.s2.write()
self.s2.reload()
self.check_true(["copy", "--dry-run", self.f, self.f2], False, True)
self.s2.reload()
assert not self.s2.realkeys()
class TOperonEdit(TOperonBase):
# [--dry-run] <file>
def test_misc(self):
self.check_false(["edit"], False, True)
self.check_true(["edit", "-h"], True, False)
self.check_false(["edit", "foo", "bar"], False, True)
def test_nonexist_editor(self):
editor = fsnative("/this/path/does/not/exist/hopefully")
os.environ["VISUAL"] = editor
e = self.check_false(["edit", self.f], False, True)[1]
assert editor in e
def test_no_edit(self):
if os.name == "nt":
return
os.environ["VISUAL"] = "touch -t 197001010101"
def realitems(s):
return [(k, s[k]) for k in s.realkeys()]
old_items = realitems(self.s)
self.check_true(["edit", self.f], False, False)
self.s.reload()
self.assertEqual(sorted(old_items), sorted(realitems(self.s)))
def test_mtime(self):
if os.name == "nt":
return
os.environ["VISUAL"] = "true"
self.check_false(["edit", self.f], False, True)
os.environ["VISUAL"] = "false"
self.check_false(["edit", self.f], False, True)
def test_dry_run(self):
if os.name == "nt" or sys.platform == "darwin":
return
def realitems(s):
return [(k, s[k]) for k in s.realkeys()]
os.environ["VISUAL"] = "sed -i -n /^File:/p"
old_items = realitems(self.s)
os.utime(self.f, (42, 42))
e = self.check_true(["edit", "--dry-run", self.f], False, True)[1]
# log all removals
for key in self.s.realkeys():
assert key in e
# nothing should have changed
self.s.reload()
self.assertEqual(sorted(old_items), sorted(realitems(self.s)))
@skipIf(is_windows() or is_osx(), "Linux only, uses truncate")
def test_remove_all(self):
os.environ["VISUAL"] = "sed -i -n /^File:/p"
os.utime(self.f, (42, 42))
self.check_true(["edit", self.f], False, False)
# all should be gone
self.s.reload()
assert not self.s.realkeys()
def test_multi_remove_all(self):
if os.name == "nt" or sys.platform == "darwin":
return
os.environ["VISUAL"] = "sed -i -n /^File:/p"
os.utime(self.f, (42, 42))
self.check_true(["edit", self.f, self.f2], False, False)
# all should be gone on both files
self.s.reload()
assert not self.s.realkeys()
self.s2.reload()
assert not self.s2.realkeys()
def test_multi_edit(self):
if os.name == "nt" or sys.platform == "darwin":
return
os.environ["VISUAL"] = "sed -i '/^File:/a comment=multi edited'"
os.utime(self.f, (42, 42))
self.check_true(["edit", self.f, self.f2], False, False)
# all should be gone on both files
self.s.reload()
self.assertEqual(self.s["comment"], "multi edited")
self.s2.reload()
self.assertEqual(self.s2["comment"], "multi edited")
class TOperonInfo(TOperonBase):
# [-t] [-c <c1>,<c2>...] <file>
def test_misc(self):
self.check_false(["info"], False, True)
self.check_true(["info", self.f], True, False)
self.check_false(["info", self.f, self.f2], False, True)
self.check_true(["info", "-h"], True, False)
def test_normal(self):
self.check_true(["info", "-cdesc", self.f], True, False)
self.check_true(["info", "-cvalue", self.f], True, False)
self.check_true(["info", "-cdesc,value", self.f], True, False)
self.check_true(["info", "-cvalue, desc", self.f], True, False)
self.check_false(["info", "-cfoo", self.f], False, True)
def test_terse(self):
self.check_true(["info", "-t", self.f], True, False)
self.check_true(["info", "-t", "-cdesc", self.f], True, False)
self.check_true(["info", "-t", "-cvalue", self.f], True, False)
self.check_true(["info", "-t", "-cdesc,value", self.f], True, False)
self.check_true(["info", "-t", "-cvalue, desc", self.f], True, False)
self.check_false(["info", "-t", "-cfoo", self.f], False, True)
class TOperonList(TOperonBase):
# [-t] [-c <c1>,<c2>...] <file>
def test_misc(self):
self.check_true(["list", "-h"], True, False)
self.check_false(["list"], False, True)
self.check_true(["list", self.f], True, False)
self.check_false(["list", self.f, self.f2], False, True)
def test_normal(self):
self.check_true(["list", "-cdesc", self.f], True, False)
self.check_true(["list", "-cvalue,tag", self.f], True, False)
self.check_true(["list", "-cdesc,value", self.f], True, False)
self.check_true(["list", "-cvalue, desc", self.f], True, False)
self.check_false(["list", "-cfoo", self.f], False, True)
def test_terse(self):
self.check_true(["list", "-t", self.f], True, False)
self.check_true(["list", "-t", "-cdesc", self.f], True, False)
self.check_true(["list", "-t", "-cvalue,tag", self.f], True, False)
self.check_true(["list", "-t", "-cdesc,value", self.f], True, False)
self.check_true(["list", "-t", "-cvalue, desc", self.f], True, False)
self.check_false(["list", "-t", "-cfoo", self.f], False, True)
def test_terse_escape(self):
self.s["foobar"] = "a:bc\\:"
self.s.write()
d = self.check_true(["list", "-t", "-cvalue", self.f], True, False)[0]
lines = d.splitlines()
assert "a\\:bc\\\\\\:" in lines
class TOperonTags(TOperonBase):
# [-t] [-c <c1>,<c2>...]
def test_misc(self):
self.check_true(["tags", "-h"], True, False)
self.check_false(["tags", self.f], False, True)
self.check_false(["tags", self.f, self.f2], False, True)
def test_normal(self):
self.check_true(["tags", "-cdesc"], True, False)
self.check_true(["tags", "-ctag"], True, False)
self.check_true(["tags", "-ctag, desc"], True, False)
self.check_false(["tags", "-cfoo"], False, True)
def test_terse(self):
self.check_true(["tags", "-t"], True, False)
self.check_true(["tags", "-t", "-cdesc"], True, False)
self.check_true(["tags", "-t", "-cdesc,tag"], True, False)
self.check_true(["tags", "-t", "-ctag, desc"], True, False)
self.check_false(["tags", "-t", "-cfoo"], False, True)
def test_output(self):
o, e = self.check_true(["tags"], True, False)
assert not e
assert "tracknumber" in o
assert "replaygain_album_gain" not in o
o, e = self.check_true(["tags", "-a"], True, False)
assert not e
assert "tracknumber" in o
assert "replaygain_album_gain" in o
class TOperonImageExtract(TOperonBase):
# [--dry-run] [--primary] [-d <destination>] <file> [<files>]
def setUp(self):
super().setUp()
self.fcover = get_temp_copy(get_data_path("test-2.wma"))
self.cover = MusicFile(self.fcover)
def tearDown(self):
os.unlink(self.fcover)
super().tearDown()
def test_misc(self):
self.check_true(["image-extract", "-h"], True, False)
self.check_true(["image-extract", self.f], False, False)
self.check_true(["image-extract", self.f, self.f2], False, False)
self.check_false(["image-extract"], False, True)
def test_extract_all(self):
target_dir = os.path.dirname(self.fcover)
self.check_true(["image-extract", "-d", target_dir, self.fcover], False, False)
self.assertEqual(len(self.cover.get_images()), 1)
image = self.cover.get_primary_image()
name = os.path.splitext(os.path.basename(self.fcover))[0]
expected = f"{name}-00.{image.extensions[0]}"
expected_path = os.path.join(target_dir, expected)
assert os.path.exists(expected_path)
with open(expected_path, "rb") as h:
self.assertEqual(h.read(), image.read())
def test_extract_primary(self):
target_dir = os.path.dirname(self.fcover)
self.check_true(
["image-extract", "-d", target_dir, "--primary", self.fcover], False, False
)
self.assertEqual(len(self.cover.get_images()), 1)
image = self.cover.get_primary_image()
name = os.path.splitext(os.path.basename(self.fcover))[0]
expected = f"{name}.{image.extensions[0]}"
expected_path = os.path.join(target_dir, expected)
assert os.path.exists(expected_path)
with open(expected_path, "rb") as h:
self.assertEqual(h.read(), image.read())
class TOperonImageSet(TOperonBase):
# <image-file> <file> [<files>]
def setUp(self):
super().setUp()
from gi.repository import GdkPixbuf
h, self.filename = mkstemp(".png")
os.close(h)
wide = GdkPixbuf.Pixbuf.new(GdkPixbuf.Colorspace.RGB, True, 8, 150, 10)
wide.savev(self.filename, "png", [], [])
self.fcover = get_temp_copy(get_data_path("test-2.wma"))
self.cover = MusicFile(self.fcover)
self.fcover2 = get_temp_copy(get_data_path("test-2.wma"))
self.cover2 = MusicFile(self.fcover2)
def tearDown(self):
os.unlink(self.fcover)
os.unlink(self.filename)
super().tearDown()
def test_misc(self):
self.check_true(["image-set", "-h"], True, False)
self.check_false(["image-set", self.fcover], False, True)
self.check_false(["image-set"], False, True)
self.check_false(["image-set", self.filename], False, True)
def test_not_supported(self):
path = get_data_path("test.mid")
out, err = self.check_false(["image-set", self.filename, path], False, True)
assert "supported" in err
def test_set(self):
self.check_true(["image-set", self.filename, self.fcover], False, False)
self.check_true(["-v", "image-set", self.filename, self.fcover], False, True)
self.cover.reload()
images = self.cover.get_images()
self.assertEqual(len(images), 1)
with open(self.filename, "rb") as h:
self.assertEqual(h.read(), images[0].read())
def test_set_two(self):
self.check_true(
["image-set", self.filename, self.fcover, self.fcover2], False, False
)
with open(self.filename, "rb") as h:
image_data = h.read()
for audio in [self.cover, self.cover2]:
audio.reload()
image = audio.get_images()[0]
self.assertEqual(image.read(), image_data)
class TOperonImageClear(TOperonBase):
# <image-file> <file> [<files>]
def setUp(self):
super().setUp()
self.fcover = get_temp_copy(get_data_path("test-2.wma"))
self.cover = MusicFile(self.fcover)
def tearDown(self):
os.unlink(self.fcover)
super().tearDown()
def test_misc(self):
self.check_true(["image-clear", "-h"], True, False)
self.check_true(["image-clear", self.fcover], False, False)
self.check_false(["image-clear"], False, True)
def test_not_supported(self):
path = get_data_path("test.mid")
out, err = self.check_false(["image-clear", path], False, True)
assert "supported" in err
def test_clear(self):
images = self.cover.get_images()
self.assertEqual(len(images), 1)
self.check_true(["image-clear", self.fcover], False, False)
self.cover.reload()
images = self.cover.get_images()
self.assertEqual(len(images), 0)
class TOperonFill(TOperonBase):
# [--dry-run] <pattern> <file> [<files>]
def test_misc(self):
self.check_true(["fill", "-h"], True, False)
self.check_false(["fill", self.f], False, True)
self.check_true(["fill", "foo", self.f2], False, False)
self.check_true(["fill", "foo", self.f, self.f2], False, False)
def test_apply(self):
basename = self.s("~basename")
self.check_true(["fill", "<title>", self.f], False, False)
self.s.reload()
self.assertEqual(self.s("title"), os.path.splitext(basename)[0])
def test_apply_no_match(self):
old_title = self.s("title")
self.check_true(["fill", "<tracknumber>. <title>", self.f], False, False)
self.s.reload()
self.assertEqual(self.s("title"), old_title)
def test_preview(self):
o, e = self.check_true(["fill", "--dry-run", "<title>", self.f], True, False)
assert "title" in o
assert self.s("~basename") in o
def test_preview_no_match(self):
o, e = self.check_true(
["fill", "--dry-run", "<tracknumber>. <title>", self.f], True, False
)
assert "title" in o
assert self.s("~basename") in o
|