mirror of
https://github.com/beetbox/beets.git
synced 2025-12-09 18:12:19 +01:00
The first fix avoids contaminating all future tests if the plugin fails to load. The second skips the CLI backend tests when the appropriate tool is not available (just as we do with the GStreamer tests).
156 lines
4.8 KiB
Python
156 lines
4.8 KiB
Python
# This file is part of beets.
|
|
# Copyright 2013, Thomas Scholtes
|
|
#
|
|
# Permission is hereby granted, free of charge, to any person obtaining
|
|
# a copy of this software and associated documentation files (the
|
|
# "Software"), to deal in the Software without restriction, including
|
|
# without limitation the rights to use, copy, modify, merge, publish,
|
|
# distribute, sublicense, and/or sell copies of the Software, and to
|
|
# permit persons to whom the Software is furnished to do so, subject to
|
|
# the following conditions:
|
|
#
|
|
# The above copyright notice and this permission notice shall be
|
|
# included in all copies or substantial portions of the Software.
|
|
|
|
|
|
import os
|
|
import shutil
|
|
from glob import glob
|
|
import subprocess
|
|
|
|
import _common
|
|
from _common import unittest
|
|
from helper import TestHelper
|
|
|
|
from beets.library import Item, Album
|
|
from beets.mediafile import MediaFile
|
|
|
|
try:
|
|
import gi
|
|
gi.require_version('Gst', '1.0')
|
|
GST_AVAILABLE = True
|
|
except ImportError, ValueError:
|
|
GST_AVAILABLE = False
|
|
|
|
|
|
class ReplayGainCliTestBase(TestHelper):
|
|
|
|
def setUp(self):
|
|
self.setup_beets()
|
|
|
|
try:
|
|
self.load_plugins('replaygain')
|
|
except:
|
|
self.teardown_beets()
|
|
self.unload_plugins()
|
|
raise
|
|
|
|
self.config['replaygain']['backend'] = self.backend
|
|
self.config['plugins'] = ['replaygain']
|
|
self.setupLibrary(2)
|
|
|
|
def tearDown(self):
|
|
self.teardown_beets()
|
|
self.unload_plugins()
|
|
|
|
def setupLibrary(self, file_count):
|
|
"""Add an album to the library with ``file_count`` items.
|
|
"""
|
|
album = Album(id=1)
|
|
album.add(self.lib)
|
|
|
|
fixture_glob = os.path.join(_common.RSRC, '*.mp3')
|
|
for src in glob(fixture_glob)[0:file_count]:
|
|
dst = os.path.join(self.libdir, os.path.basename(src))
|
|
shutil.copy(src, dst)
|
|
item = Item.from_path(dst)
|
|
item.album_id = 1
|
|
item.add(self.lib)
|
|
self._reset_replaygain(item)
|
|
|
|
def _reset_replaygain(self, item):
|
|
item['rg_track_peak'] = None
|
|
item['rg_track_gain'] = None
|
|
item['rg_album_gain'] = None
|
|
item['rg_album_gain'] = None
|
|
item.write()
|
|
item.store()
|
|
|
|
def test_cli_saves_track_gain(self):
|
|
for item in self.lib.items():
|
|
self.assertIsNone(item.rg_track_peak)
|
|
self.assertIsNone(item.rg_track_gain)
|
|
mediafile = MediaFile(item.path)
|
|
self.assertIsNone(mediafile.rg_track_peak)
|
|
self.assertIsNone(mediafile.rg_track_gain)
|
|
|
|
self.run_command('replaygain')
|
|
for item in self.lib.items():
|
|
self.assertIsNotNone(item.rg_track_peak)
|
|
self.assertIsNotNone(item.rg_track_gain)
|
|
mediafile = MediaFile(item.path)
|
|
self.assertAlmostEqual(
|
|
mediafile.rg_track_peak, item.rg_track_peak, places=6)
|
|
self.assertAlmostEqual(
|
|
mediafile.rg_track_gain, item.rg_track_gain, places=2)
|
|
|
|
def test_cli_skips_calculated_tracks(self):
|
|
self.run_command('replaygain')
|
|
item = self.lib.items()[0]
|
|
peak = item.rg_track_peak
|
|
item.rg_track_gain = 0.0
|
|
self.run_command('replaygain')
|
|
self.assertEqual(item.rg_track_gain, 0.0)
|
|
self.assertEqual(item.rg_track_peak, peak)
|
|
|
|
def test_cli_saves_album_gain_to_file(self):
|
|
for item in self.lib.items():
|
|
mediafile = MediaFile(item.path)
|
|
self.assertIsNone(mediafile.rg_album_peak)
|
|
self.assertIsNone(mediafile.rg_album_gain)
|
|
|
|
self.run_command('replaygain', '-a')
|
|
|
|
peaks = []
|
|
gains = []
|
|
for item in self.lib.items():
|
|
mediafile = MediaFile(item.path)
|
|
peaks.append(mediafile.rg_album_peak)
|
|
gains.append(mediafile.rg_album_gain)
|
|
|
|
# Make sure they are all the same
|
|
self.assertEqual(max(peaks), min(peaks))
|
|
self.assertEqual(max(gains), min(gains))
|
|
|
|
self.assertNotEqual(max(gains), 0.0)
|
|
self.assertNotEqual(max(peaks), 0.0)
|
|
|
|
|
|
@unittest.skipIf(not GST_AVAILABLE, 'gstreamer cannot be found')
|
|
class ReplayGainGstCliTest(ReplayGainCliTestBase, unittest.TestCase):
|
|
backend = u'gstreamer'
|
|
|
|
|
|
class ReplayGainCmdCliTest(ReplayGainCliTestBase, unittest.TestCase):
|
|
backend = u'command'
|
|
|
|
def setUp(self):
|
|
# Check for the backend command.
|
|
for command in ['mp3gain', 'aacgain']:
|
|
try:
|
|
subprocess.check_call([command, '-v'])
|
|
except OSError:
|
|
pass
|
|
else:
|
|
break
|
|
else:
|
|
self.skipTest('no *gain command found')
|
|
|
|
super(ReplayGainCmdCliTest, self).setUp()
|
|
|
|
|
|
def suite():
|
|
return unittest.TestLoader().loadTestsFromName(__name__)
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main(defaultTest='suite')
|