rename Reader implementation all over [0.02]
[Biblio-RFID.git] / t / 10-3M-810.t
index 972b41a..1099a21 100755 (executable)
@@ -1,23 +1,40 @@
 #!/usr/bin/perl
 
-use Test::More tests => 3;
+use Test::More; # tests => 3;
 use Data::Dump qw(dump);
 
 use lib 'lib';
 
 BEGIN {
-       use_ok( 'RFID::Serial::3M810' );
+       use_ok( 'RFID::Biblio::Reader::3M810' );
 }
 
-ok( my $o = RFID::Serial::3M810->new( device => '/dev/ttyUSB0' ), 'new' );
+ok( my $o = RFID::Biblio::Reader::3M810->new( device => '/dev/ttyUSB0' ), 'new' );
 
 ok( my @tags = $o->inventory, 'inventory' );
 diag dump @tags;
 
-ok( my $blocks = $o->read_blocks( $_ ), "read_blocks $_" ) foreach @tags;
+my $old_afi;
 
-ok( my $afi = $o->read_afi( $_ ), "read_afi $_" ) foreach @tags;
+foreach my $tag ( @tags ) {
+
+       ok( my $blocks = $o->read_blocks( $tag ), "read_blocks $tag" );
+
+       ok( my $afi = $o->read_afi( $tag ), "read_afi $tag" );
+
+       ok( $o->write_blocks( $tag, $blocks->{$tag} ), "write_blocks $tag" );
+
+       my $new_afi = "\x42";
+
+       ok( $o->write_afi( $tag, $new_afi ), sprintf( "write_afi %s %x", $tag, $new_afi ) );
+
+       cmp_ok( $o->read_afi( $tag ), 'eq', $new_afi, 'AFI check' );
+
+       ok( $o->write_afi( $tag, $afi ), sprintf( "write_afi %s %x", $tag, $afi ) );
+
+}
 
 ok( my $visible = $o->scan, 'scan' );
 diag dump $visible;
 
+done_testing();