summaryrefslogtreecommitdiffstats
path: root/deluge/tests/test_bencode.py
blob: a4a76818fff0f69011a9ae84ba1de56607d47afb (plain)
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
#
# 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.
#

import pytest

from deluge import bencode

from . import common


class TestBencode:
    def test_bencode_unicode_metainfo(self):
        filename = common.get_test_data_file('test.torrent')
        with open(filename, 'rb') as _file:
            metainfo = bencode.bdecode(_file.read())[b'info']
        bencode.bencode({b'info': metainfo})

    def test_bencode_unicode_value(self):
        assert bencode.bencode(b'abc') == b'3:abc'
        assert bencode.bencode('abc') == b'3:abc'

    def test_bdecode(self):
        assert bencode.bdecode(b'3:dEf') == b'dEf'
        with pytest.raises(bencode.BTFailure):
            bencode.bdecode('dEf')
        with pytest.raises(bencode.BTFailure):
            bencode.bdecode(b'dEf')
        with pytest.raises(bencode.BTFailure):
            bencode.bdecode({'dEf': 123})