コード例 #1
0
ファイル: test_bases.py プロジェクト: x2nie/python-basehash
def test_bases():
    b36 = base36()
    b52 = base52()
    b56 = base56()
    b58 = base58()
    b62 = base62()
    b94 = base94()
コード例 #2
0
from nose.tools import raises

from basehash import base52


base52 = base52()


def test_base52_encode_with_1234567890_3DrByB():
    assert base52.encode(1234567890) == '3DrByB'


def test_base52_decode_with_3DrByB_123456789():
    assert base52.decode('3DrByB') == 1234567890


def test_base52_hash_with_1234567890_10_QqhsMHZ7Pf():
    assert base52.hash(1234567890, 10) == 'QqhsMHZ7Pf'


def test_base52_unhash_with_QqhsMHZ7Pf_1234567890():
    assert base52.unhash('QqhsMHZ7Pf') == 1234567890


def test_base52_maximum_value_with_6_19770609663():
    assert base52.maximum_value(6) == 19770609663


@raises(ValueError)
def test_base52_hash_fail_with_19770609664_6():
    assert base52.hash(19770609664, 6)
コード例 #3
0
from basehash import HASH_LENGTH, base36, base52, base56, base58, base62, base94

base36 = base36()
base52 = base52()
base56 = base56()
base58 = base58()
base62 = base62()
base94 = base94()

# Base encode an integer/long
print(base36.encode(200))
print(base52.encode(200))
print(base56.encode(200))
print(base58.encode(200))
print(base62.encode(200))
print(base94.encode(200))

# Base decode encoded string.
print(base36.decode('5K'))
print(base52.decode('3r'))
print(base56.decode('5a'))
print(base58.decode('4T'))
print(base62.decode('3E'))
print(base94.decode('#-'))

# Base hash an integer/long
# Takes an option param, length, which is defaulted to
# basehash.base.HASH_LENGTH
print(base36.hash(200))
print(base52.hash(200))
print(base56.hash(200))
コード例 #4
0
ファイル: test_base52.py プロジェクト: tbabej/python-basehash
from nose.tools import raises

from basehash import base52

bh52 = base52()
bh6 = base52(6)
bh10 = base52(10)


def test_base52_encode_with_1234567890_3DrByB():
    assert bh52.encode(1234567890) == '3DrByB'


def test_base52_decode_with_3DrByB_123456789():
    assert bh52.decode('3DrByB') == 1234567890


def test_base52_hash_with_1234567890_10_QqhsMHZ7Pf():
    assert bh10.hash(1234567890) == 'QqhsMHZ7Pf'


def test_base52_unhash_with_QqhsMHZ7Pf_1234567890():
    assert bh10.unhash('QqhsMHZ7Pf') == 1234567890


def test_base52_maximum_value_with_6_19770609663():
    assert bh6.maximum == 19770609663


@raises(ValueError)
def test_base52_hash_fail_with_19770609664_6():
コード例 #5
0
ファイル: test_base52.py プロジェクト: calve/python-basehash
from nose.tools import raises

from basehash import base52


bh52 = base52()
bh6 = base52(6)
bh10 = base52(10)


def test_base52_encode_with_1234567890_3DrByB():
    assert bh52.encode(1234567890) == "3DrByB"


def test_base52_decode_with_3DrByB_123456789():
    assert bh52.decode("3DrByB") == 1234567890


def test_base52_hash_with_1234567890_10_QqhsMHZ7Pf():
    assert bh10.hash(1234567890) == "QqhsMHZ7Pf"


def test_base52_unhash_with_QqhsMHZ7Pf_1234567890():
    assert bh10.unhash("QqhsMHZ7Pf") == 1234567890


def test_base52_maximum_value_with_6_19770609663():
    assert bh6.maximum == 19770609663


@raises(ValueError)