mirror of
https://github.com/beetbox/beets.git
synced 2026-07-22 02:06:50 -04:00
63 lines
1.8 KiB
Python
63 lines
1.8 KiB
Python
from unittest.mock import patch
|
|
|
|
from beets import util
|
|
from beets.library import Item
|
|
from beets.test.helper import AsIsImporterMixin, ImportHelper, PluginMixin
|
|
|
|
|
|
@patch("beets.util.command_output")
|
|
class TestKeyFinder(AsIsImporterMixin, PluginMixin, ImportHelper):
|
|
plugin = "keyfinder"
|
|
|
|
def test_add_key(self, command_output):
|
|
item = Item(path="/file")
|
|
item.add(self.lib)
|
|
|
|
command_output.return_value = util.CommandOutput(b"dbm", b"")
|
|
self.run_command("keyfinder")
|
|
|
|
item.load()
|
|
assert item["initial_key"] == "C#m"
|
|
command_output.assert_called_with(
|
|
["KeyFinder", "-f", util.syspath(item.path)]
|
|
)
|
|
|
|
def test_add_key_on_import(self, command_output):
|
|
command_output.return_value = util.CommandOutput(b"dbm", b"")
|
|
self.run_asis_importer()
|
|
|
|
item = self.lib.items().get()
|
|
assert item["initial_key"] == "C#m"
|
|
|
|
def test_force_overwrite(self, command_output):
|
|
self.config["keyfinder"]["overwrite"] = True
|
|
|
|
item = Item(path="/file", initial_key="F")
|
|
item.add(self.lib)
|
|
|
|
command_output.return_value = util.CommandOutput(b"C#m", b"")
|
|
self.run_command("keyfinder")
|
|
|
|
item.load()
|
|
assert item["initial_key"] == "C#m"
|
|
|
|
def test_do_not_overwrite(self, command_output):
|
|
item = Item(path="/file", initial_key="F")
|
|
item.add(self.lib)
|
|
|
|
command_output.return_value = util.CommandOutput(b"dbm", b"")
|
|
self.run_command("keyfinder")
|
|
|
|
item.load()
|
|
assert item["initial_key"] == "F"
|
|
|
|
def test_no_key(self, command_output):
|
|
item = Item(path="/file")
|
|
item.add(self.lib)
|
|
|
|
command_output.return_value = util.CommandOutput(b"", b"")
|
|
self.run_command("keyfinder")
|
|
|
|
item.load()
|
|
assert item["initial_key"] is None
|