added pass generation function

This commit is contained in:
Rossen Georgiev 2014-12-30 15:34:58 +00:00
parent 43722660ab
commit d5d1fab3bd
3 changed files with 69 additions and 1 deletions

View File

@ -29,12 +29,16 @@ del _date
__version__ = "0.6.31"
__author__ = "Rossen Georgiev"
__all__ = ['IS', 'parse']
__all__ = ['IS', 'parse', 'passcode']
from .parse import parse as refparse
parse = refparse
del refparse
from .passcode import passcode as refpasscode
passcode = refpasscode
del refpasscode
from .IS import IS as refIS

34
aprslib/passcode.py Normal file
View File

@ -0,0 +1,34 @@
# aprs - Python library for dealing with APRS
# Copyright (C) 2013-2014 Rossen Georgiev
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
"""
Contains a function for generating passcode from callsign
"""
def passcode(callsign):
"""
Takes a CALLSIGN and returns passcode
"""
assert isinstance(callsign, str)
callsign = callsign.split('-')[0].upper()
code = 0x73e2
for i, char in enumerate(callsign):
code ^= ord(char) << (8 if not i % 2 else 0)
return code & 0x7fff

30
tests/test_passcode.py Normal file
View File

@ -0,0 +1,30 @@
import unittest
from aprslib import passcode
class TC_pascode(unittest.TestCase):
def test_nonstring(self):
with self.assertRaises(AssertionError):
passcode(5)
def test_valid_input(self):
testData = [
['TESTCALL', 31742],
['testcall', 31742],
['tEsTcAlL', 31742],
['tEsTcAlL', 31742],
['TESTCALL-', 31742],
['TESTCALL-12', 31742],
['TESTCALL-0', 31742],
['N0CALL', 13023],
['SUCHCALL', 27890],
['MUCHSIGN', 27128],
['WOW', 29613],
]
results = []
for callsign, x in testData:
results.append([callsign, passcode(callsign)])
self.assertEqual(testData, results)