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
|
# Before `make install' is performed this script should be runnable with
# `make test'. After `make install' it should work as `perl test.pl'
######################### We start with some black magic to print on failure.
# Change 1..1 below to 1..last_test_to_print .
# (It may become useful if the test is moved to ./t subdirectory.)
BEGIN { $| = 1; print "1..8\n"; }
END {print "not ok 1\n" unless $loaded;}
use IPC::ShareLite qw( LOCK_EX LOCK_SH LOCK_UN LOCK_NB );
$loaded = 1;
print "ok 1\n";
######################### End of black magic.
# If a semaphore or shared memory segment already uses this
# key, all tests will fail
$KEY = 192;
$num = 1;
# Test object construction
$num++;
my $share = new IPC::ShareLite( -key => $KEY,
-create => 'yes',
-destroy => 'yes',
-size => 100 );
print (defined $share ? "ok $num\n" : "not ok $num\n");
# Store value
$num++;
my $result = $share->store('maurice');
print (defined $result ? "ok $num\n" : "not ok $num\n");
# Retrieve value
$num++;
my $result = $share->fetch;
print ($result eq 'maurice' ? "ok $num\n" : "not ok $num\n");
# Fragmented store
$num++;
my $result = $share->store( "X" x 200 );
print (defined $result ? "ok $num\n" : "not ok $num\n");
# Check number of segments
$num++;
print ($share->num_segments == 3 ? "ok $num\n" : "not ok $num\n");
# Fragmented fetch
$num++;
my $result = $share->fetch;
print ($result eq 'X' x 200 ? "ok $num\n" : "not ok $num\n");
$num++;
$share->store( 0 );
my $pid = fork;
defined $pid or die $!;
if ($pid == 0) {
$share->destroy( 0 );
for(1..1000) {
$share->lock( LOCK_EX ) or die $!;
$val = $share->fetch;
$share->store( ++$val ) or die $!;
$share->unlock or die $!;
}
exit;
} else {
for(1..1000) {
$share->lock( LOCK_EX) or die $!;
$val = $share->fetch;
$share->store( ++$val ) or die $!;
$share->unlock or die $!;
}
wait;
$val = $share->fetch;
print ($val == 2000 ? "ok $num\n" : "not ok $num\n");
}
|