From df82fade2ca1e1badf835150f5c272d1a199b5df Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Sun, 15 Mar 2009 11:31:27 -0400 Subject: [PATCH] Unit Tests - bug.summry, custom.columns, next - Added unit tests to verify that the next report returns the correct tasks. - Added unit test to verify that unrecognized columns in a custom report are flagged. - Added unit tests to verify that only pending and completed tasks are included in the summary report. --- src/tests/bug.summary.t | 67 ++++++++++++++++++++++++++++++++++++++ src/tests/custom.columns.t | 57 ++++++++++++++++++++++++++++++++ src/tests/next.t | 61 ++++++++++++++++++++++++++++++++++ 3 files changed, 185 insertions(+) create mode 100755 src/tests/bug.summary.t create mode 100755 src/tests/custom.columns.t create mode 100755 src/tests/next.t diff --git a/src/tests/bug.summary.t b/src/tests/bug.summary.t new file mode 100755 index 000000000..c98b58d03 --- /dev/null +++ b/src/tests/bug.summary.t @@ -0,0 +1,67 @@ +#! /usr/bin/perl +################################################################################ +## task - a command line task list manager. +## +## Copyright 2006 - 2009, Paul Beckingham. +## All rights reserved. +## +## This program is free software; you can redistribute it and/or modify it under +## the terms of the GNU General Public License as published by the Free Software +## Foundation; either version 2 of the License, or (at your option) any later +## version. +## +## This program 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 General Public License for more +## details. +## +## You should have received a copy of the GNU General Public License along with +## this program; if not, write to the +## +## Free Software Foundation, Inc., +## 51 Franklin Street, Fifth Floor, +## Boston, MA +## 02110-1301 +## USA +## +################################################################################ + +use strict; +use warnings; +use Test::More tests => 6; + +# Create the rc file. +if (open my $fh, '>', 'summary.rc') +{ + print $fh "data.location=.\n", + "confirmation=no\n"; + close $fh; + ok (-r 'summary.rc', 'Created summary.rc'); +} + +# Add three tasks. Do 1, delete 1, leave 1 pending. Summary should depict a +# 50% completion. +qx{../task rc:summary.rc add project:A one}; +qx{../task rc:summary.rc add project:A two}; +qx{../task rc:summary.rc add project:A three}; +qx{../task rc:summary.rc do 1}; +qx{../task rc:summary.rc delete 2}; +my $output = qx{../task rc:summary.rc summary}; +like ($output, qr/A\s+1\s+-\s+50%/, 'summary correctly shows 50% before report'); + +qx{../task rc:summary.rc list}; +$output = qx{../task rc:summary.rc summary}; +like ($output, qr/A\s+1\s+-\s+50%/, 'summary correctly shows 50% after report'); + +# Cleanup. +unlink 'pending.data'; +ok (!-r 'pending.data', 'Removed pending.data'); + +unlink 'completed.data'; +ok (!-r 'completed.data', 'Removed completed.data'); + +unlink 'summary.rc'; +ok (!-r 'summary.rc', 'Removed summary.rc'); + +exit 0; + diff --git a/src/tests/custom.columns.t b/src/tests/custom.columns.t new file mode 100755 index 000000000..ab1927b65 --- /dev/null +++ b/src/tests/custom.columns.t @@ -0,0 +1,57 @@ +#! /usr/bin/perl +################################################################################ +## task - a command line task list manager. +## +## Copyright 2006 - 2009, Paul Beckingham. +## All rights reserved. +## +## This program is free software; you can redistribute it and/or modify it under +## the terms of the GNU General Public License as published by the Free Software +## Foundation; either version 2 of the License, or (at your option) any later +## version. +## +## This program 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 General Public License for more +## details. +## +## You should have received a copy of the GNU General Public License along with +## this program; if not, write to the +## +## Free Software Foundation, Inc., +## 51 Franklin Street, Fifth Floor, +## Boston, MA +## 02110-1301 +## USA +## +################################################################################ + +use strict; +use warnings; +use Test::More tests => 4; + +# Create the rc file. +if (open my $fh, '>', 'custom.rc') +{ + print $fh "data.location=.\n", + "report.foo.description=DESC\n", + "report.foo.columns=id,foo,description\n", + "report.foo.sort=id+\n", + "report.foo.filter=project:A\n"; + close $fh; + ok (-r 'custom.rc', 'Created custom.rc'); +} + +# Generate the usage screen, and locate the custom report on it. +my $output = qx{../task rc:custom.rc foo 2>&1}; +like ($output, qr/Unrecognized column name: foo\n/, 'custom report spotted invalid column'); + +# Cleanup. +unlink 'pending.data'; +ok (!-r 'pending.data', 'Removed pending.data'); + +unlink 'custom.rc'; +ok (!-r 'custom.rc', 'Removed custom.rc'); + +exit 0; + diff --git a/src/tests/next.t b/src/tests/next.t new file mode 100755 index 000000000..2130f6626 --- /dev/null +++ b/src/tests/next.t @@ -0,0 +1,61 @@ +#! /usr/bin/perl +################################################################################ +## task - a command line task list manager. +## +## Copyright 2006 - 2009, Paul Beckingham. +## All rights reserved. +## +## This program is free software; you can redistribute it and/or modify it under +## the terms of the GNU General Public License as published by the Free Software +## Foundation; either version 2 of the License, or (at your option) any later +## version. +## +## This program 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 General Public License for more +## details. +## +## You should have received a copy of the GNU General Public License along with +## this program; if not, write to the +## +## Free Software Foundation, Inc., +## 51 Franklin Street, Fifth Floor, +## Boston, MA +## 02110-1301 +## USA +## +################################################################################ + +use strict; +use warnings; +use Test::More tests => 5; + +# Create the rc file. +if (open my $fh, '>', 'next.rc') +{ + print $fh "data.location=.\n", + "next=1\n"; + close $fh; + ok (-r 'next.rc', 'Created next.rc'); +} + +# Add two tasks for each of two projects, then run next. There should be only +# one task from each project shown. +qx{../task rc:next.rc add project:A priority:H AH}; +qx{../task rc:next.rc add project:A priority:M AM}; +qx{../task rc:next.rc add project:B priority:H BH}; +qx{../task rc:next.rc add project:B Bnone}; + +my $output = qx{../task rc:next.rc next}; +like ($output, qr/\s1\sA\s+H\s+-\sAH\n/, 'AH shown'); +like ($output, qr/\s3\sB\s+H\s+-\sBH\n/, 'BH shown'); + +# Cleanup. +unlink 'pending.data'; +ok (!-r 'pending.data', 'Removed pending.data'); + +unlink 'next.rc'; +ok (!-r 'next.rc', 'Removed next.rc'); + +exit 0; +