From c6c99c2e38fa0c98749d7a750ec9401b401c7495 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Sat, 19 Jan 2013 15:46:24 -0500 Subject: [PATCH] Unit Tests - Added template.t as an example for all new unit tests. --- DEVELOPER | 2 ++ test/template.t | 65 +++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 67 insertions(+) create mode 100755 test/template.t diff --git a/DEVELOPER b/DEVELOPER index 776bb4939..911c38531 100644 --- a/DEVELOPER +++ b/DEVELOPER @@ -168,6 +168,8 @@ Unit Tests Needed * Note that running the unit tests requires the Perl JSON module to be installed. + Note that all new unit tests should follow the test/template.t standard. + Work in Progress Things that are currently in flux, which is another way of saying leave it alone while it is being worked on. diff --git a/test/template.t b/test/template.t new file mode 100755 index 000000000..2f2a8445f --- /dev/null +++ b/test/template.t @@ -0,0 +1,65 @@ +#! /usr/bin/env perl +################################################################################ +## taskwarrior - a command line task list manager. +## +## Copyright 2006-2012, Paul Beckingham, Federico Hernandez. +## +## Permission is hereby granted, free of charge, to any person obtaining a copy +## of this software and associated documentation files (the "Software"), to deal +## in the Software without restriction, including without limitation the rights +## to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +## copies of the Software, and to permit persons to whom the Software is +## furnished to do so, subject to the following conditions: +## +## The above copyright notice and this permission notice shall be included +## in all copies or substantial portions of the Software. +## +## THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS +## OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +## FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL +## THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +## LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +## OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +## SOFTWARE. +## +## http://www.opensource.org/licenses/mit-license.php +## +################################################################################ + +use strict; +use warnings; +use Test::More tests => 4; + +use File::Basename; +my $ut = basename ($0); +my $rc = $ut . '.rc'; + +# Create the rc file. +if (open my $fh, '>', $rc) +{ + print $fh "data.location=.\n", + "confirmation=off\n"; + close $fh; + ok (-r $rc, "$ut: Created $rc"); +} + +# Note: all commands checked for $? == 0 +# Note: all commands redirect 2>&1 + +# Bug - +qx{../src/task rc:$rc add sample 2>&1}; +ok ($? == 0, "$ut: add sample"); + +my $output = qx{../src/task rc:$rc ls 2>&1}; +like ($output, qr/sample/ms, "$ut: sample task found"); + +## Cleanup. +unlink qw(pending.data completed.data undo.data backlog.data synch.key), $rc; +ok (! -r 'pending.data' && + ! -r 'completed.data' && + ! -r 'undo.data' && + ! -r 'backlog.data' && + ! -r 'synch.key' && + ! -r $rc, "$ut: Cleanup"); + +exit 0;