From a77e4292ab67882ed83cd5e05d8b3c79adb99856 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Wed, 11 Jun 2014 21:57:17 -0400 Subject: [PATCH] Unit Tests - Removed obsolete tests. --- test/bug.708.t | 48 ++++++++++++++++++++++++++---------------------- 1 file changed, 26 insertions(+), 22 deletions(-) diff --git a/test/bug.708.t b/test/bug.708.t index 79101bd11..fcf8f1f64 100755 --- a/test/bug.708.t +++ b/test/bug.708.t @@ -33,43 +33,47 @@ use Test::More tests => 4; delete $ENV{'TASKDATA'}; delete $ENV{'TASKRC'}; +use File::Basename; +my $ut = basename ($0); +my $rc = $ut . '.rc'; + # Create the rc file. -if (open my $fh, '>', 'bug.rc') +if (open my $fh, '>', $rc) { - print $fh "data.location=.\n"; - print $fh "bulk=100\n"; - print $fh "confirmation=no\n"; + print $fh "data.location=.\n", + "bulk=100\n", + "confirmation=off\n"; close $fh; } # Bug 708: Bad Math in Project is % Complete # Setup: Add a few tasks -qx{../src/task rc:bug.rc add One pro:p1 2>&1}; -qx{../src/task rc:bug.rc add Two pro:p1 2>&1}; -qx{../src/task rc:bug.rc add Three pro:p1 2>&1}; -qx{../src/task rc:bug.rc add Four pro:p1 2>&1}; -qx{../src/task rc:bug.rc add Five pro:p1 2>&1}; -qx{../src/task rc:bug.rc add Six pro:p1 2>&1}; -qx{../src/task rc:bug.rc add Seven pro:p1 2>&1}; -qx{../src/task rc:bug.rc add Eight pro:p1 2>&1}; -qx{../src/task rc:bug.rc add Nine pro:p1 2>&1}; -qx{../src/task rc:bug.rc add Ten pro:p1 2>&1}; +qx{../src/task rc:$rc add One pro:p1 2>&1}; +qx{../src/task rc:$rc add Two pro:p1 2>&1}; +qx{../src/task rc:$rc add Three pro:p1 2>&1}; +qx{../src/task rc:$rc add Four pro:p1 2>&1}; +qx{../src/task rc:$rc add Five pro:p1 2>&1}; +qx{../src/task rc:$rc add Six pro:p1 2>&1}; +qx{../src/task rc:$rc add Seven pro:p1 2>&1}; +qx{../src/task rc:$rc add Eight pro:p1 2>&1}; +qx{../src/task rc:$rc add Nine pro:p1 2>&1}; +qx{../src/task rc:$rc add Ten pro:p1 2>&1}; # Complete three tasks and ensure pending and done counts are updated correctly. -my $output = qx{../src/task rc:bug.rc 1-3 done 2>&1 >/dev/null}; -like ($output, qr/Project 'p1' is 30% complete \(7 of 10 tasks remaining\)\./ms, 'Project counts correct for a multiple done'); +my $output = qx{../src/task rc:$rc 1-3 done rc.debug=1 2>&1}; +like ($output, qr/Project 'p1' is 30% complete \(7 of 10 tasks remaining\)\./ms, 'Project counts correct for a multiple done'); # Change three projects and ensure pending and done counts are updated correctly. -$output = qx{../src/task rc:bug.rc 4-6 modify pro:p2 2>&1 >/dev/null}; -like ($output, qr/Project 'p1' is 42% complete \(4 of 7 tasks remaining\)\./ms, 'Project counts correct for a multiple project reassignment part a'); -like ($output, qr/Project 'p2' is 0% complete \(3 of 3 tasks remaining\)\./ms, 'Project counts correct for a multiple project reassignment part b'); +$output = qx{../src/task rc:$rc 4-6 modify pro:p2 2>&1 >/dev/null}; +like ($output, qr/Project 'p1' is 42% complete \(4 of 7 tasks remaining\)\./ms, 'Project counts correct for a multiple project reassignment part a'); +like ($output, qr/Project 'p2' is 0% complete \(3 of 3 tasks remaining\)\./ms, 'Project counts correct for a multiple project reassignment part b'); # Delete three tasks and ensure pending and done counts are updated correctly. -$output = qx{../src/task rc:bug.rc 7-9 delete 2>&1 >/dev/null}; -like ($output, qr/Project 'p1' is 75% complete \(1 of 4 tasks remaining\)\./ms, 'Project counts correct for a multiple delete'); +$output = qx{../src/task rc:$rc 7-9 delete 2>&1 >/dev/null}; +like ($output, qr/Project 'p1' is 75% complete \(1 of 4 tasks remaining\)\./ms, 'Project counts correct for a multiple delete'); # Cleanup. -unlink qw(pending.data completed.data undo.data backlog.data bug.rc); +unlink qw(pending.data completed.data undo.data backlog.data), $rc; exit 0;