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
|
from session_manager import SessionManager
from json import loads, dumps
testSession = [
{
"path" : "/path/to/another/song",
"ab_limits" : None
},
{
"path" : "/path/to/song",
"ab_limits" : [
[0.1, 0.2],
[0.3, 0.4]
]
},
{
"path" : "/path/to/something",
"ab_limits" : [
[0.1, 0.2]
]
}
]
class PlaylistMock:
def __init__(self):
self.lastAddedSong = None
self.songs = list()
def addSong(self, s):
self.songs.append(s)
self.lastAddedSong = s
def getSongs(self):
return self.songs
class ABControllerMock:
def __init__(self):
self.limits = dict()
def addLimits(self, aLimit, bLimit, song="current"):
if song not in self.limits:
self.limits[song] = list()
self.limits[song].append([aLimit, bLimit])
def getLimits(self, song):
return self.limits.get(song)
class MockFile:
def __init__(self, init=""):
self.contents = init
def open(self, *args):
pass
def write(self, s):
self.contents += s
def read(self):
return self.contents
def test_addSongs():
songs = [
"/path/to/song",
"/path/to/another/song"
]
playlistMock = PlaylistMock()
uut = SessionManager(playlistMock, None)
for s in songs:
uut.addSong(s)
assert playlistMock.lastAddedSong == s
def test_addAbLimits():
abLimits = [
[0.1, 0.2],
[0.3, 0.4]
]
abControllerMock = ABControllerMock()
uut = SessionManager(None, abControllerMock)
for i, ab in enumerate(abLimits):
uut.addLimits(ab[0], ab[1])
assert abControllerMock.limits["current"][i] == ab
def test_loadSession():
playlistMock = PlaylistMock()
abControllerMock = ABControllerMock()
uut = SessionManager(playlistMock, abControllerMock)
sessionFile = MockFile(dumps(testSession))
uut.loadSession(sessionFile)
for i, entry in enumerate(testSession):
expectedSong = entry["path"]
expectedLimits = entry["ab_limits"]
loadedSong = playlistMock.songs[i]
loadedLimits = abControllerMock.limits.get(expectedSong)
assert loadedSong == expectedSong
assert loadedLimits == expectedLimits
def test_saveSession():
playlistMock = PlaylistMock()
abControllerMock = ABControllerMock()
uut = SessionManager(playlistMock, abControllerMock)
for i, entry in enumerate(testSession):
song = entry["path"]
playlistMock.addSong(song)
abLimits = entry["ab_limits"]
if abLimits is not None:
for l in abLimits:
abControllerMock.addLimits(l[0], l[1], song)
sessionFile = MockFile()
uut.saveSession(sessionFile)
savedSession = loads(sessionFile.read())
assert savedSession == testSession
def test_loadAndSaveEmptySession():
playlistMock = PlaylistMock()
abControllerMock = ABControllerMock()
uut = SessionManager(playlistMock, abControllerMock)
sessionFile = MockFile()
uut.saveSession(sessionFile)
assert loads(sessionFile.read()) == list()
uut.loadSession(sessionFile)
songs = playlistMock.getSongs()
assert songs == list()
for s in songs:
assert abControllerMock.getLimits(s) == None
|