mirror of
https://github.com/beetbox/beets.git
synced 2025-12-06 08:39:17 +01:00
80 lines
2.9 KiB
Python
80 lines
2.9 KiB
Python
# This file is part of beets.
|
|
# Copyright 2021, Graham R. Cobb.
|
|
|
|
"""Tests for the 'bareasc' plugin."""
|
|
|
|
from beets import logging
|
|
from beets.test.helper import PluginTestCase, capture_stdout
|
|
|
|
|
|
class BareascPluginTest(PluginTestCase):
|
|
"""Test bare ASCII query matching."""
|
|
|
|
plugin = "bareasc"
|
|
|
|
def setUp(self):
|
|
"""Set up test environment for bare ASCII query matching."""
|
|
super().setUp()
|
|
self.log = logging.getLogger("beets.web")
|
|
self.config["bareasc"]["prefix"] = "#"
|
|
|
|
# Add library elements. Note that self.lib.add overrides any "id=<n>"
|
|
# and assigns the next free id number.
|
|
self.add_item(title="with accents", album_id=2, artist="Antonín Dvořák")
|
|
self.add_item(title="without accents", artist="Antonín Dvorak")
|
|
self.add_item(title="with umlaut", album_id=2, artist="Brüggen")
|
|
self.add_item(title="without umlaut or e", artist="Bruggen")
|
|
self.add_item(title="without umlaut with e", artist="Brueggen")
|
|
|
|
def test_bareasc_search(self):
|
|
test_cases = [
|
|
(
|
|
"dvorak",
|
|
["without accents"],
|
|
), # Normal search, no accents, not using bare-ASCII match.
|
|
(
|
|
"dvořák",
|
|
["with accents"],
|
|
), # Normal search, with accents, not using bare-ASCII match.
|
|
(
|
|
"#dvorak",
|
|
["without accents", "with accents"],
|
|
), # Bare-ASCII search, no accents.
|
|
(
|
|
"#dvořák",
|
|
["without accents", "with accents"],
|
|
), # Bare-ASCII search, with accents.
|
|
(
|
|
"#dvořäk",
|
|
["without accents", "with accents"],
|
|
), # Bare-ASCII search, with incorrect accent.
|
|
(
|
|
"#Bruggen",
|
|
["without umlaut or e", "with umlaut"],
|
|
), # Bare-ASCII search, with no umlaut.
|
|
(
|
|
"#Brüggen",
|
|
["without umlaut or e", "with umlaut"],
|
|
), # Bare-ASCII search, with umlaut.
|
|
]
|
|
|
|
for query, expected_titles in test_cases:
|
|
with self.subTest(query=query, expected_titles=expected_titles):
|
|
items = self.lib.items(query)
|
|
assert [item.title for item in items] == expected_titles
|
|
|
|
def test_bareasc_list_output(self):
|
|
"""Bare-ASCII version of list command - check output."""
|
|
with capture_stdout() as output:
|
|
self.run_command("bareasc", "with accents")
|
|
|
|
assert "Antonin Dvorak" in output.getvalue()
|
|
|
|
def test_bareasc_format_output(self):
|
|
"""Bare-ASCII version of list -f command - check output."""
|
|
with capture_stdout() as output:
|
|
self.run_command(
|
|
"bareasc", "with accents", "-f", "$artist:: $title"
|
|
)
|
|
|
|
assert "Antonin Dvorak:: with accents\n" == output.getvalue()
|