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
|
# 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.
from tests import TestCase, mkstemp
import os
from quodlibet import config
from quodlibet.formats import AudioFile
from quodlibet.util.songwrapper import SongWrapper, ListWrapper
from quodlibet.plugins import PluginConfig
class TSongWrapper(TestCase):
psong = AudioFile({
"~filename": "does not/exist",
"title": "more songs",
"discnumber": "2/2", "tracknumber": "1",
"artist": "Foo\nI have two artists", "album": "Bar",
"~bookmark": "2:10 A bookmark"})
pwrap = SongWrapper(psong)
def setUp(self):
fd, self.filename = mkstemp()
os.close(fd)
config.init()
self.wrap = SongWrapper(AudioFile(
{"title": "woo", "~filename": self.filename}))
def tearDown(self):
os.unlink(self.filename)
config.quit()
def test_slots(self):
def breakme():
self.wrap.woo = 1
self.failUnlessRaises(AttributeError, breakme)
def test_cmp(self):
songs = [SongWrapper(AudioFile({"tracknumber": str(i)}))
for i in range(10)]
songs.reverse()
songs.sort()
self.failUnlessEqual([s("~#track") for s in songs], list(range(10)))
def test_needs_write_yes(self):
self.failIf(self.wrap._needs_write)
self.wrap["woo"] = "bar"
self.failUnless(self.wrap._needs_write)
def test_needs_write_no(self):
self.failIf(self.wrap._needs_write)
self.wrap["~woo"] = "bar"
self.failIf(self.wrap._needs_write)
def test_pop(self):
self.failIf(self.wrap._needs_write)
self.wrap.pop("artist", None)
self.failUnless(self.wrap._needs_write)
def test_getitem(self):
self.failUnlessEqual(self.wrap["title"], "woo")
def test_get(self):
self.failUnlessEqual(self.wrap.get("title"), "woo")
self.failUnlessEqual(self.wrap.get("dne"), None)
self.failUnlessEqual(self.wrap.get("dne", "huh"), "huh")
def test_delitem(self):
self.failUnless("title" in self.wrap)
del(self.wrap["title"])
self.failIf("title" in self.wrap)
self.failUnless(self.wrap._needs_write)
def test_realkeys(self):
self.failUnlessEqual(self.pwrap.realkeys(), self.psong.realkeys())
def test_can_change(self):
for key in ["~foo", "title", "whee", "a test", "foo=bar", ""]:
self.failUnlessEqual(
self.pwrap.can_change(key), self.psong.can_change(key))
def test_comma(self):
for key in ["title", "artist", "album", "notexist", "~length"]:
self.failUnlessEqual(self.pwrap.comma(key), self.psong.comma(key))
def test_list(self):
for key in ["title", "artist", "album", "notexist", "~length"]:
self.failUnlessEqual(self.pwrap.list(key), self.psong.list(key))
def test_dicty(self):
self.failUnlessEqual(self.pwrap.keys(), self.psong.keys())
self.failUnlessEqual(
list(self.pwrap.values()), list(self.psong.values()))
self.failUnlessEqual(self.pwrap.items(), self.psong.items())
def test_mtime(self):
self.wrap._song.sanitize()
self.failUnless(self.wrap.valid())
self.wrap["~#mtime"] = os.path.getmtime(self.filename) - 2
self.wrap._updated = False
self.failIf(self.wrap.valid())
def test_setitem(self):
self.failIf(self.wrap._was_updated())
self.wrap["title"] = "bar"
self.failUnless(self.wrap._was_updated())
self.failUnlessEqual(self.wrap["title"], "bar")
def test_not_really_updated(self):
self.failIf(self.wrap._was_updated())
self.wrap["title"] = "woo"
self.failIf(self.wrap._was_updated())
self.wrap["title"] = "quux"
self.failUnless(self.wrap._was_updated())
def test_new_tag(self):
self.failIf(self.wrap._was_updated())
self.wrap["version"] = "bar"
self.failUnless(self.wrap._was_updated())
def test_bookmark(self):
self.failUnlessEqual(self.psong.bookmarks, self.pwrap.bookmarks)
self.pwrap.bookmarks = [(43, "another mark")]
self.failUnlessEqual(self.psong["~bookmark"], "0:43 another mark")
self.failUnlessEqual(self.psong.bookmarks, self.pwrap.bookmarks)
class TListWrapper(TestCase):
def test_empty(self):
wrapped = ListWrapper([])
self.failUnlessEqual(wrapped, [])
def test_empty_song(self):
wrapped = ListWrapper([{}])
self.failUnless(len(wrapped) == 1)
self.failIf(isinstance(wrapped[0], dict))
def test_none(self):
wrapped = ListWrapper([None, None])
self.failUnless(len(wrapped) == 2)
self.failUnlessEqual(wrapped, [None, None])
class TPluginConfig(TestCase):
def setUp(self):
config.init()
def tearDown(self):
config.quit()
def test_mapping(self):
c = PluginConfig("some")
c.set("foo", "bar")
self.assertEqual(config.get("plugins", "some_foo"), "bar")
def test_defaults(self):
c = PluginConfig("some")
c.defaults.set("hm", "mh")
self.assertEqual(c.get("hm"), "mh")
|