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
|
import os
from tests.test_tools import _TTools
from tests import DATA_DIR, get_temp_copy
class TMOggSPlit(_TTools):
TOOL_NAME = u"moggsplit"
def setUp(self):
super(TMOggSPlit, self).setUp()
self.filename = get_temp_copy(
os.path.join(DATA_DIR, 'multipagecomment.ogg'))
# append the second file
with open(self.filename, "ab") as first:
to_append = os.path.join(
DATA_DIR, 'multipage-setup.ogg')
with open(to_append, "rb") as second:
first.write(second.read())
def tearDown(self):
super(TMOggSPlit, self).tearDown()
os.unlink(self.filename)
def test_basic(self):
d = os.path.dirname(self.filename)
p = os.path.join(d, "%(stream)d.%(ext)s")
res, out = self.call("--pattern", p, self.filename)
self.failIf(res)
self.failIf(out)
for stream in [1002429366, 1806412655]:
stream_path = os.path.join(
d, str(stream) + ".ogg")
self.failUnless(os.path.exists(stream_path))
os.unlink(stream_path)
|