mirror of
https://github.com/beetbox/beets.git
synced 2025-12-09 18:12:19 +01:00
48 lines
1.5 KiB
Python
48 lines
1.5 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
"""Tests for the play plugin"""
|
|
|
|
from __future__ import (division, absolute_import, print_function,
|
|
unicode_literals)
|
|
|
|
from mock import patch, ANY
|
|
|
|
from test._common import unittest
|
|
from test.helper import TestHelper
|
|
|
|
|
|
class PlayPluginTest(unittest.TestCase, TestHelper):
|
|
def setUp(self):
|
|
self.setup_beets()
|
|
self.load_plugins('play')
|
|
self.item = self.add_item(title='aNiceTitle')
|
|
|
|
def tearDown(self):
|
|
self.teardown_beets()
|
|
self.unload_plugins()
|
|
|
|
@patch('beetsplug.play.util.interactive_open')
|
|
def test_basic(self, open_mock):
|
|
self.run_command('play', 'title:aNiceTitle')
|
|
|
|
open_mock.assert_called_once_with(ANY, None)
|
|
playlist = open(open_mock.call_args[0][0][0], 'r')
|
|
self.assertEqual(self.item.path.decode('utf-8') + '\n',
|
|
playlist.read().decode('utf-8'))
|
|
|
|
@patch('beetsplug.play.util.interactive_open')
|
|
def test_args_option(self, open_mock):
|
|
self.config['play']['command'] = 'true'
|
|
self.run_command('play', '-A', 'foo', 'title:aNiceTitle')
|
|
|
|
open_mock.assert_called_once_with(ANY, 'true foo')
|
|
playlist = open(open_mock.call_args[0][0][0], 'r')
|
|
self.assertEqual(self.item.path.decode('utf-8') + '\n',
|
|
playlist.read().decode('utf-8'))
|
|
|
|
|
|
def suite():
|
|
return unittest.TestLoader().loadTestsFromName(__name__)
|
|
|
|
if __name__ == b'__main__':
|
|
unittest.main(defaultTest='suite')
|