67 lines
2.1 KiB
Python
67 lines
2.1 KiB
Python
# -*- coding: utf-8 -*-
|
|
#
|
|
# This file is part of Deluge and is licensed under GNU General Public License 3.0, or later, with
|
|
# the additional special exception to link portions of this program with the OpenSSL library.
|
|
# See LICENSE for more details.
|
|
#
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
import os
|
|
import tempfile
|
|
|
|
from twisted.trial import unittest
|
|
|
|
from deluge import metafile
|
|
from deluge.common import windows_check
|
|
|
|
|
|
def check_torrent(filename):
|
|
# Test loading with libtorrent to make sure it's valid
|
|
from deluge._libtorrent import lt
|
|
lt.torrent_info(filename)
|
|
|
|
# Test loading with our internal TorrentInfo class
|
|
from deluge.ui.common import TorrentInfo
|
|
TorrentInfo(filename)
|
|
|
|
|
|
class MetafileTestCase(unittest.TestCase):
|
|
def test_save_multifile(self):
|
|
# Create a temporary folder for torrent creation
|
|
tmp_path = tempfile.mkdtemp()
|
|
with open(os.path.join(tmp_path, 'file_A'), 'wb') as tmp_file:
|
|
tmp_file.write('a' * (312 * 1024))
|
|
with open(os.path.join(tmp_path, 'file_B'), 'wb') as tmp_file:
|
|
tmp_file.write('b' * (2354 * 1024))
|
|
with open(os.path.join(tmp_path, 'file_C'), 'wb') as tmp_file:
|
|
tmp_file.write('c' * (11 * 1024))
|
|
|
|
tmp_fd, tmp_file = tempfile.mkstemp('.torrent')
|
|
metafile.make_meta_file(tmp_path, '', 32768, target=tmp_file)
|
|
|
|
check_torrent(tmp_file)
|
|
|
|
os.remove(os.path.join(tmp_path, 'file_A'))
|
|
os.remove(os.path.join(tmp_path, 'file_B'))
|
|
os.remove(os.path.join(tmp_path, 'file_C'))
|
|
os.rmdir(tmp_path)
|
|
os.close(tmp_fd)
|
|
os.remove(tmp_file)
|
|
|
|
def test_save_singlefile(self):
|
|
if windows_check():
|
|
raise unittest.SkipTest('on windows \ != / for path names')
|
|
tmp_path = tempfile.mkstemp('testdata')[1]
|
|
with open(tmp_path, 'wb') as tmp_file:
|
|
tmp_file.write('a' * (2314 * 1024))
|
|
|
|
tmp_fd, tmp_file = tempfile.mkstemp('.torrent')
|
|
metafile.make_meta_file(tmp_path, '', 32768, target=tmp_file)
|
|
|
|
check_torrent(tmp_file)
|
|
|
|
os.remove(tmp_path)
|
|
os.close(tmp_fd)
|
|
os.remove(tmp_file)
|