Arthur de Jong

Open Source / Free Software developer

summaryrefslogtreecommitdiffstats
path: root/tests/test_iso7064.doctest
blob: 7ccbda2077f5e98e2324bc01afdeea2a95d8be0a (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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
test_doctest - more detailed doctests for the stdnum.iso7064 package

Copyright (C) 2010, 2011 Arthur de Jong

This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.

This library 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
Lesser General Public License for more details.

You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301 USA


This file contains more detailed doctests for the stdnum.iso7064 package. It
tries to test more corner cases and detailed functionality that is not
really useful as module documentation.

>>> from stdnum.iso7064 import mod_11_10, mod_11_2, mod_37_2, mod_37_36, mod_97_10


These are normal variations of Mod 11, 10 that should just work.

>>> mod_11_10.is_valid('12323')
True
>>> mod_11_10.is_valid('546794')
True
>>> mod_11_10.calc_check_digit('0794')
'5'
>>> mod_11_10.is_valid('07945')
True
>>> mod_11_10.calc_check_digit('00200667308')
'5'
>>> mod_11_10.is_valid('002006673085')
True
>>> mod_11_10.is_valid('002006673084')
False
>>> mod_11_10.calc_check_digit('00200667309')
'3'
>>> mod_11_10.calc_check_digit('00200667310')
'8'
>>> mod_11_10.calc_check_digit('00200667311')
'6'
>>> mod_11_10.calc_check_digit('00200667312')
'4'


These normal tests of Mod 11, 2 should just work.

>>> mod_11_2.calc_check_digit('0794')
'0'
>>> mod_11_2.is_valid('07940')
True
>>> mod_11_2.calc_check_digit('079')
'X'
>>> mod_11_2.is_valid('079')
True

These normal tests of Mod 37, 2 should just work

>>> mod_37_2.calc_check_digit('G123498654321')
'H'


Furthermore the is_valid() method should be fairly robust against invalid
junk passed:

>>> testvalues = ( None, '*&^%$', False, object() )
>>> [ x for x in testvalues if mod_11_10.is_valid(x) ]
[]
>>> [ x for x in testvalues if mod_11_2.is_valid(x) ]
[]
>>> [ x for x in testvalues if mod_37_2.is_valid(x) ]
[]
>>> [ x for x in testvalues if mod_37_36.is_valid(x) ]
[]
>>> [ x for x in testvalues if mod_97_10.is_valid(x) ]
[]