python-stdnum branch master updated. 1.17-38-gfbe094c
[
Date Prev][
Date Next]
[
Thread Prev][
Thread Next]
python-stdnum branch master updated. 1.17-38-gfbe094c
- From: Commits of the python-stdnum project <python-stdnum-commits [at] lists.arthurdejong.org>
- To: python-stdnum-commits [at] lists.arthurdejong.org
- Reply-to: python-stdnum-users [at] lists.arthurdejong.org, python-stdnum-commits [at] lists.arthurdejong.org
- Subject: python-stdnum branch master updated. 1.17-38-gfbe094c
- Date: Sun, 25 Sep 2022 16:47:55 +0200 (CEST)
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "python-stdnum".
The branch, master has been updated
via fbe094c750ca959eac2130a21195a3886a7fbabe (commit)
from a261a931cb00854fc92b7278b7eb9086116e4c10 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
https://arthurdejong.org/git/python-stdnum/commit/?id=fbe094c750ca959eac2130a21195a3886a7fbabe
commit fbe094c750ca959eac2130a21195a3886a7fbabe
Author: Leandro Regueiro <leandro.regueiro@gmail.com>
Date: Sat Sep 10 17:18:31 2022 +0200
Add Faroe Islands V-number
Closes https://github.com/arthurdejong/python-stdnum/pull/323
Closes https://github.com/arthurdejong/python-stdnum/issues/219
diff --git a/stdnum/fo/__init__.py b/stdnum/fo/__init__.py
new file mode 100644
index 0000000..3c9b274
--- /dev/null
+++ b/stdnum/fo/__init__.py
@@ -0,0 +1,24 @@
+# __init__.py - collection of Faroe Islands numbers
+# coding: utf-8
+#
+# Copyright (C) 2022 Leandro Regueiro
+#
+# 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
+
+"""Collection of Faroe Islands numbers."""
+
+# provide aliases
+from stdnum.fo import vn as vat # noqa: F401
diff --git a/stdnum/fo/vn.py b/stdnum/fo/vn.py
new file mode 100644
index 0000000..a634571
--- /dev/null
+++ b/stdnum/fo/vn.py
@@ -0,0 +1,84 @@
+# vn.py - functions for handling Faroe Islands V-number numbers
+# coding: utf-8
+#
+# Copyright (C) 2022 Leandro Regueiro
+#
+# 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
+
+"""V-number (Vinnutal, Faroe Islands tax number).
+
+In the Faroe Islands the legal persons TIN equals the V number issued by the
+Faroese Tax Administration. It is a consecutive number.
+
+More information:
+
+* https://www.taks.fo/fo/borgari/bolkar/at-stovna-virki/
+*
https://www.oecd.org/tax/automatic-exchange/crs-implementation-and-assistance/tax-identification-numbers/Faroe-islands-TIN.pdf
+
+>>> validate('623857')
+'623857'
+>>> validate('1234')
+Traceback (most recent call last):
+ ...
+InvalidLength: ...
+>>> validate('12345X')
+Traceback (most recent call last):
+ ...
+InvalidFormat: ...
+>>> format('602 590')
+'602590'
+""" # noqa: E501
+
+from stdnum.exceptions import *
+from stdnum.util import clean, isdigits
+
+
+def compact(number):
+ """Convert the number to the minimal representation.
+
+ This strips the number of any valid separators and removes surrounding
+ whitespace.
+ """
+ number = clean(number, ' -.').upper().strip()
+ if number.startswith('FO'):
+ return number[2:]
+ return number
+
+
+def validate(number):
+ """Check if the number is a valid Faroe Islands V-number number.
+
+ This checks the length and formatting.
+ """
+ number = compact(number)
+ if len(number) != 6:
+ raise InvalidLength()
+ if not isdigits(number):
+ raise InvalidFormat()
+ return number
+
+
+def is_valid(number):
+ """Check if the number is a valid Faroe Islands V-number number."""
+ try:
+ return bool(validate(number))
+ except ValidationError:
+ return False
+
+
+def format(number):
+ """Reformat the number to the standard presentation format."""
+ return compact(number)
diff --git a/tests/test_fo_vn.doctest b/tests/test_fo_vn.doctest
new file mode 100644
index 0000000..b72f634
--- /dev/null
+++ b/tests/test_fo_vn.doctest
@@ -0,0 +1,167 @@
+test_fo_vn.doctest - more detailed doctests for stdnum.fo.vn module
+
+Copyright (C) 2022 Leandro Regueiro
+
+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.fo.vn module. It
+tries to test more corner cases and detailed functionality that is not really
+useful as module documentation.
+
+>>> from stdnum.fo import vn
+
+
+Tests for some corner cases.
+
+>>> vn.validate('623857')
+'623857'
+>>> vn.validate('602 590')
+'602590'
+>>> vn.validate('563.609')
+'563609'
+>>> vn.validate('FO384941')
+'384941'
+>>> vn.format('623857')
+'623857'
+>>> vn.format('602 590')
+'602590'
+>>> vn.format('33 28 28')
+'332828'
+>>> vn.format('563.609')
+'563609'
+>>> vn.format('FO384941')
+'384941'
+>>> vn.validate('12345')
+Traceback (most recent call last):
+ ...
+InvalidLength: ...
+>>> vn.validate('12345X')
+Traceback (most recent call last):
+ ...
+InvalidFormat: ...
+
+
+These have been found online and should all be valid numbers.
+
+>>> numbers = '''
+...
+... 308382
+... 309273
+... 321079
+... 322059
+... 322407
+... 323853
+... 324213
+... 328863
+... 328871
+... 328944
+... 33 28 28
+... 330833
+... 331538
+... 339849
+... 344338
+... 345334
+... 345490
+... 353477
+... 355186
+... 355216
+... 366161
+... 369497
+... 374989
+... 379778
+... 401900
+... 403369
+... 403687
+... 408638
+... 427888
+... 437.115
+... 443921
+... 452432
+... 463000
+... 476897
+... 478 865
+... 488135
+... 489042
+... 498.289
+... 502855
+... 504572
+... 509078
+... 516244
+... 519324
+... 522821
+... 537.535
+... 537.543
+... 538485
+... 539813
+... 546.089
+... 549118
+... 55 16 00
+... 550558
+... 550612
+... 551.023
+... 552569
+... 554375
+... 557 692
+... 559679
+... 563.609
+... 568 031
+... 568 597
+... 569682
+... 575712
+... 576174
+... 578 509
+... 579319
+... 585335
+... 587974
+... 589.810
+... 589306
+... 597570
+... 601470
+... 602 590
+... 602221
+... 603937
+... 604097
+... 605 174
+... 606294
+... 607436
+... 613606
+... 616 923
+... 617105
+... 617121
+... 619388
+... 619558
+... 620092
+... 620785
+... 623016
+... 623385
+... 623792
+... 623857
+... 625485
+... 625590
+... 627976
+... 628980
+... 630713
+... 636223
+... 636568
+... 637114
+... 638722
+... 641154
+... FO384941
+...
+... '''
+>>> [x for x in numbers.splitlines() if x and not vn.is_valid(x)]
+[]
-----------------------------------------------------------------------
Summary of changes:
stdnum/{ke => fo}/__init__.py | 6 +-
stdnum/{za/tin.py => fo/vn.py} | 49 ++++++------
tests/test_fo_vn.doctest | 167 +++++++++++++++++++++++++++++++++++++++++
3 files changed, 194 insertions(+), 28 deletions(-)
copy stdnum/{ke => fo}/__init__.py (85%)
copy stdnum/{za/tin.py => fo/vn.py} (62%)
create mode 100644 tests/test_fo_vn.doctest
hooks/post-receive
--
python-stdnum
- python-stdnum branch master updated. 1.17-38-gfbe094c,
Commits of the python-stdnum project