forked from quodlibet/quodlibet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_plugins___init__.py
164 lines (128 loc) · 5.26 KB
/
test_plugins___init__.py
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, list_wrapper
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.assertRaises(AttributeError, breakme)
def test_cmp(self):
songs = [SongWrapper(AudioFile({"tracknumber": str(i)}))
for i in range(10)]
songs.reverse()
songs.sort()
self.assertEqual([s("~#track") for s in songs], list(range(10)))
def test_needs_write_yes(self):
self.assertFalse(self.wrap._needs_write)
self.wrap["woo"] = "bar"
self.assertTrue(self.wrap._needs_write)
def test_needs_write_no(self):
self.assertFalse(self.wrap._needs_write)
self.wrap["~woo"] = "bar"
self.assertFalse(self.wrap._needs_write)
def test_pop(self):
self.assertFalse(self.wrap._needs_write)
self.wrap.pop("artist", None)
self.assertTrue(self.wrap._needs_write)
def test_getitem(self):
self.assertEqual(self.wrap["title"], "woo")
def test_get(self):
self.assertEqual(self.wrap.get("title"), "woo")
self.assertEqual(self.wrap.get("dne"), None)
self.assertEqual(self.wrap.get("dne", "huh"), "huh")
def test_delitem(self):
self.assertTrue("title" in self.wrap)
del(self.wrap["title"])
self.assertFalse("title" in self.wrap)
self.assertTrue(self.wrap._needs_write)
def test_realkeys(self):
self.assertEqual(self.pwrap.realkeys(), self.psong.realkeys())
def test_can_change(self):
for key in ["~foo", "title", "whee", "a test", "foo=bar", ""]:
self.assertEqual(
self.pwrap.can_change(key), self.psong.can_change(key))
def test_comma(self):
for key in ["title", "artist", "album", "notexist", "~length"]:
self.assertEqual(self.pwrap.comma(key), self.psong.comma(key))
def test_list(self):
for key in ["title", "artist", "album", "notexist", "~length"]:
self.assertEqual(self.pwrap.list(key), self.psong.list(key))
def test_dicty(self):
self.assertEqual(self.pwrap.keys(), self.psong.keys())
self.assertEqual(
list(self.pwrap.values()), list(self.psong.values()))
self.assertEqual(self.pwrap.items(), self.psong.items())
def test_mtime(self):
self.wrap._song.sanitize()
self.assertTrue(self.wrap.valid())
self.wrap["~#mtime"] = os.path.getmtime(self.filename) - 2
self.wrap._updated = False
self.assertFalse(self.wrap.valid())
def test_setitem(self):
self.assertFalse(self.wrap._was_updated())
self.wrap["title"] = "bar"
self.assertTrue(self.wrap._was_updated())
self.assertEqual(self.wrap["title"], "bar")
def test_not_really_updated(self):
self.assertFalse(self.wrap._was_updated())
self.wrap["title"] = "woo"
self.assertFalse(self.wrap._was_updated())
self.wrap["title"] = "quux"
self.assertTrue(self.wrap._was_updated())
def test_new_tag(self):
self.assertFalse(self.wrap._was_updated())
self.wrap["version"] = "bar"
self.assertTrue(self.wrap._was_updated())
def test_bookmark(self):
self.assertEqual(self.psong.bookmarks, self.pwrap.bookmarks)
self.pwrap.bookmarks = [(43, "another mark")]
self.assertEqual(self.psong["~bookmark"], "0:43 another mark")
self.assertEqual(self.psong.bookmarks, self.pwrap.bookmarks)
class TListWrapper(TestCase):
def test_empty(self):
wrapped = list_wrapper([])
self.assertEqual(wrapped, [])
def test_empty_song(self):
wrapped = list_wrapper([{}])
self.assertTrue(len(wrapped) == 1)
self.assertFalse(isinstance(wrapped[0], dict))
def test_none(self):
wrapped = list_wrapper([None, None])
self.assertTrue(len(wrapped) == 2)
self.assertEqual(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")