From ac9c726782cc0388cb018396e3010390a696936c Mon Sep 17 00:00:00 2001 From: Renato Alves Date: Thu, 19 Feb 2015 12:50:40 +0000 Subject: [PATCH] Tests - convert args.2.t to python --- test/args.2.t | 137 ++++++++++++++++++++++++++------------------------ 1 file changed, 71 insertions(+), 66 deletions(-) diff --git a/test/args.2.t b/test/args.2.t index 7c3842c13..076bb4daf 100755 --- a/test/args.2.t +++ b/test/args.2.t @@ -1,78 +1,83 @@ -#! /usr/bin/env perl -################################################################################ -## -## Copyright 2006 - 2015, 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 -## -################################################################################ +#!/usr/bin/env python2.7 +# -*- coding: utf-8 -*- +############################################################################### +# +# Copyright 2006 - 2015, 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 => 5; +import sys +import os +import unittest +# Ensure python finds the local simpletap module +sys.path.append(os.path.dirname(os.path.abspath(__file__))) -# Ensure environment has no influence. -delete $ENV{'TASKDATA'}; -delete $ENV{'TASKRC'}; +from basetest import Task, TestCase -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; -} +class TestDoneEnpassant(TestCase): + def setUp(self): + """Executed before each test in the class""" + self.t = Task() + # No journal log which may contain the words we are looking for + self.t.config("journal.info", "off") -# Test 'done' with en-passant changes. -qx{../src/task rc:$rc add one 2>&1}; -qx{../src/task rc:$rc add two 2>&1}; -qx{../src/task rc:$rc add three 2>&1}; -qx{../src/task rc:$rc add four 2>&1}; -qx{../src/task rc:$rc add five 2>&1}; + def test_done(self): + """Test 'done' with en-passant changes""" + self.t(("add", "one")) + self.t(("add", "two")) + self.t(("add", "three")) + self.t(("add", "four")) + self.t(("add", "five")) -qx{../src/task rc:$rc 1 done oneanno 2>&1}; -my $output = qx{../src/task rc:$rc 1 info 2>&1}; -like ($output, qr/oneanno/, "$ut: done enpassant anno"); + self.t(("1", "done", "oneanno")) + code, out, err = self.t(("1", "info")) + self.assertRegexpMatches(out, "Description +one\n[0-9: -]+ oneanno", + msg="done enpassant annotation") -qx{../src/task rc:$rc 2 done /two/TWO/ 2>&1}; -$output = qx{../src/task rc:$rc 2 info 2>&1}; -like ($output, qr/Description\s+TWO/, "$ut: done enpassant subst"); + self.t(("2", "done", "/two/TWO/")) + code, out, err = self.t(("2", "info")) + self.assertRegexpMatches(out, "Description +TWO", + msg="done enpassant modify") -qx{../src/task rc:$rc 3 done +threetag 2>&1}; -$output = qx{../src/task rc:$rc 3 info 2>&1}; -like ($output, qr/Tags\s+threetag/, "$ut: done enpassant tag"); + self.t(("3", "done", "+threetag")) + code, out, err = self.t(("3", "info")) + self.assertRegexpMatches(out, "Tags +threetag", + msg="done enpassant tag") -qx{../src/task rc:$rc 4 done pri:H 2>&1}; -$output = qx{../src/task rc:$rc 4 info 2>&1}; -like ($output, qr/Priority\s+H/, "$ut: done enpassant priority"); + self.t(("4", "done", "pri:H")) + code, out, err = self.t(("4", "info")) + self.assertRegexpMatches(out, "Priority +H", + msg="done enpassant priority") -qx{../src/task rc:$rc 5 done pro:A 2>&1}; -$output = qx{../src/task rc:$rc 5 info 2>&1}; -like ($output, qr/Project\s+A/, "$ut: done enpassant project"); + self.t(("5", "done", "pro:PROJ")) + code, out, err = self.t(("5", "info")) + self.assertRegexpMatches(out, "Project +PROJ", + msg="done enpassant project") -# Cleanup. -unlink qw(pending.data completed.data undo.data backlog.data), $rc; -exit 0; +if __name__ == "__main__": + from simpletap import TAPTestRunner + unittest.main(testRunner=TAPTestRunner()) + +# vim: ai sts=4 et sw=4