Algorithm-LUHN

 view release on metacpan or  search on metacpan

t/01-cc.t  view on Meta::CPAN

#!/usr/bin/perl -w

use strict;
use Test;
use Algorithm::LUHN qw/check_digit is_valid/;

BEGIN { plan tests => 15 }

# Check some straight-forward, numeric only values
my @values = qw/83764912 8 123456781234567 0 4992739871 6/;
while (@values) {
  my ($v, $expected) = splice @values, 0, 2;
  my $c = check_digit($v);
  ok($c, $expected, "check_digit($v): expected $expected; got $c\n");
  ok(is_valid("$v$c"));
  ok(!is_valid("$v".(9-$c)));
  ok($Algorithm::LUHN::ERROR, qr/^Check digit/,
   "  Did not get the expected error. Got $Algorithm::LUHN::ERROR\n");

}

# Check a value including alphas (should fail).
my ($v, $c);
$v = 'A2';
ok(!($c=check_digit($v)));
$c ||= ''; # make sure $c is defined or we get an "uninit val" warning
ok($Algorithm::LUHN::ERROR, qr/\S/,
   "  Expected an error, but got a check_digit instead: $v => $c\n");
ok($Algorithm::LUHN::ERROR, qr/^Invalid/,
   "  Did not get the expected error. Got $Algorithm::LUHN::ERROR\n");

__END__



( run in 1.781 second using v1.01-cache-2.11-cpan-140bd7fdf52 )