lbry-sdk/lbry/tests/unit/dht/protocol/test_distance.py

14 lines
524 B
Python
Raw Normal View History

import unittest
from lbrynet.dht.protocol.distance import Distance
class DistanceTests(unittest.TestCase):
def test_invalid_key_length(self):
self.assertRaises(ValueError, Distance, b'1' * 47)
self.assertRaises(ValueError, Distance, b'1' * 49)
self.assertRaises(ValueError, Distance, b'')
self.assertRaises(ValueError, Distance(b'0' * 48), b'1' * 47)
self.assertRaises(ValueError, Distance(b'0' * 48), b'1' * 49)
self.assertRaises(ValueError, Distance(b'0' * 48), b'')