You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
458 B
18 lines
458 B
from src.decoder import get_otpauth_url
|
|
from src.otpauth_migration_pb2 import Payload
|
|
|
|
|
|
def test_get_otpauth_url():
|
|
# arrange
|
|
otp = Payload.OtpParameters(
|
|
secret=b'Hello!\336\255\276\357',
|
|
name='Example:alice@google.com',
|
|
issuer='Example',
|
|
type=2
|
|
)
|
|
|
|
# act
|
|
result = get_otpauth_url(otp)
|
|
|
|
# assert
|
|
assert result == 'otpauth://totp/Example%3Aalice%40google.com?issuer=Example&secret=JBSWY3DPEHPK3PXP'
|