Test: Converted to Python

This commit is contained in:
Paul Beckingham
2015-07-24 17:01:57 -04:00
parent 70e4d16768
commit 29b18c216c

View File

@@ -1,248 +1,198 @@
#! /usr/bin/env perl #!/usr/bin/env python2.7
################################################################################ # -*- coding: utf-8 -*-
## ###############################################################################
## Copyright 2006 - 2015, Paul Beckingham, Federico Hernandez. #
## # 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 # Permission is hereby granted, free of charge, to any person obtaining a copy
## in the Software without restriction, including without limitation the rights # of this software and associated documentation files (the "Software"), to deal
## to use, copy, modify, merge, publish, distribute, sublicense, and/or sell # in the Software without restriction, including without limitation the rights
## copies of the Software, and to permit persons to whom the Software is # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
## furnished to do so, subject to the following conditions: # 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 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, # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
## FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL # OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
## THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
## LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, # THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
## OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
## SOFTWARE. # 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 #
## # http://www.opensource.org/licenses/mit-license.php
################################################################################ #
###############################################################################
use strict; import sys
use warnings; import os
use Test::More tests => 41; import unittest
# Ensure python finds the local simpletap module
sys.path.append(os.path.dirname(os.path.abspath(__file__)))
# Ensure environment has no influence. from basetest import Task, TestCase
delete $ENV{'TASKDATA'};
delete $ENV{'TASKRC'};
# Create the rc file.
if (open my $fh, '>', 'dep.rc')
{
print $fh "data.location=.\n";
print $fh "dependency.confirmation=yes\n";
print $fh "report.depreport.columns=id,depends,description\n";
print $fh "report.depreport.labels=ID,Depends,Description\n";
print $fh "report.depreport.filter=status:pending\n";
print $fh "report.depreport.sort=depends+\n";
close $fh;
}
qx{../src/task rc:dep.rc add One 2>&1}; class TestDependencies(TestCase):
qx{../src/task rc:dep.rc add Two 2>&1}; def setUp(self):
"""Executed before each test in the class"""
self.t = Task()
self.t("add one")
self.t("add two")
# [2] def test_removing_missing_dep(self):
my $output = qx{../src/task rc:dep.rc 1 modify dep:-2 2>&1 >/dev/null}; """Remove a dependency that isn't there"""
like ($output, qr/Could not delete a dependency on task 2 - not found\./, 'dependencies - remove nonexistent dependency'); code, out, err = self.t.runError("1 modify dep:-2")
self.assertIn("Could not delete a dependency on task 2 - not found.", err)
# [3] def test_add_missing_dep(self):
$output = qx{../src/task rc:dep.rc 1 modify dep:99 2>&1 >/dev/null}; """Add a dependency on a missing task"""
like ($output, qr/Could not create a dependency on task 99 - not found\./, 'dependencies - add dependency for nonexistent task'); code, out, err = self.t.runError("1 modify dep:99")
self.assertIn("Could not create a dependency on task 99 - not found.", err)
# [4] def test_add_dep_to_missing_task(self):
$output = qx{../src/task rc:dep.rc 99 modify dep:1 2>&1 >/dev/null}; """Add a dependency to a missing task"""
like ($output, qr/No tasks specified\./, 'dependencies - add dependency to nonexistent task'); code, out, err = self.t.runError("99 modify dep:1")
self.assertIn("No tasks specified.", err)
# [5,6] t 1 dep:2; t info 1 => blocked by 2 def test_add_dep_to_missing_task(self):
$output = qx{../src/task rc:dep.rc 1 modify dep:2 2>&1; ../src/task rc:dep.rc info 1 2>&1}; """Add a dependency to a missing task"""
like ($output, qr/This task blocked by\s+2 Two\n/, 'dependencies - trivial blocked'); code, out, err = self.t.runError("99 modify dep:1")
unlike ($output, qr/This task is blocking\n/, 'dependencies - trivial blocked'); self.assertIn("No tasks specified.", err)
# [7,8] t info 2 => blocking 1 def test_double_dep(self):
$output = qx{../src/task rc:dep.rc info 2 2>&1}; """Check adding a dep twice is an error"""
unlike ($output, qr/This task blocked by/, 'dependencies - trivial blocking'); self.t("2 modify dep:1")
like ($output, qr/This task is blocking\s+1 One\n/, 'dependencies - trivial blocking'); code, out, err = self.t("2 modify dep:1")
self.assertIn("Task 2 already depends on task 1.", err)
# [9] t 1 dep:2 (again) def test_circular_1(self):
$output = qx{../src/task rc:dep.rc 1 modify dep:2 2>&1 >/dev/null}; """Check a task cannot depend on itself"""
like ($output, qr/Task 1 already depends on task 2\./, 'dependencies - add already existing dependency'); code, out, err = self.t.runError("1 modify dep:1")
self.assertIn("A task cannot be dependent on itself.", err)
# [10,11] t 1 dep:1 => error def test_circular_2(self):
$output = qx{../src/task rc:dep.rc 1 modify dep:1 2>&1}; """Check circular dependencies are caught, using 2 tasks"""
like ($output, qr/A task cannot be dependent on itself\./, 'dependencies - cannot depend on self'); self.t("2 modify dep:1")
unlike ($output, qr/Modified 1 task\./, 'dependencies - cannot depend on self'); code, out, err = self.t.runError("1 modify dep:2")
self.assertIn("Circular dependency detected and disallowed.", err)
# [12,13] t 1 dep:2; t 2 dep:1 => error def test_circular_5(self):
$output = qx{../src/task rc:dep.rc 2 modify dep:1 2>&1}; """Check circular dependencies are caught, using 5 tasks"""
like ($output, qr/Circular dependency detected and disallowed\./, 'dependencies - trivial circular'); self.t("add three")
unlike ($output, qr/Modified 1 task\./, 'dependencies - trivial circular'); self.t("add four")
self.t("add five")
self.t("5 modify dep:4")
self.t("4 modify dep:3")
self.t("3 modify dep:2")
self.t("2 modify dep:1")
code, out, err = self.t.runError("1 modify dep:5")
self.assertIn("Circular dependency detected and disallowed.", err)
# [14,15] t 1 dep:2; t 2 dep:3; t 1 dep:3 => not circular def test_dag(self):
qx{../src/task rc:dep.rc 1 modify dep:2 2>&1}; """Check acyclic graph support"""
qx{../src/task rc:dep.rc add Three 2>&1}; self.t("add three")
qx{../src/task rc:dep.rc 2 modify dep:3 2>&1}; self.t("1 modify dep:2")
$output = qx{../src/task rc:dep.rc 1 modify dep:3 2>&1}; self.t("1 modify dep:3")
unlike ($output, qr/Circular dependency detected and disallowed\./, 'dependencies - diamond, non-circular'); self.t("2 modify dep:3")
like ($output, qr/Modified 1 task\./, 'dependencies - diamond, non-circular'); code, out, err = self.t("1 modify dep:2")
self.assertNotIn("Circular dependency detected and disallowed.", err)
# [16] def test_blocked_blocking(self):
unlink 'pending.data'; """Check blocked/blocking status of two tasks"""
self.t("2 modify dep:1")
qx{../src/task rc:dep.rc add One 2>&1}; code, out, err = self.t("_get 1.tag.BLOCKED")
qx{../src/task rc:dep.rc add Two 2>&1}; self.assertEqual("\n", out)
qx{../src/task rc:dep.rc add Three 2>&1}; code, out, err = self.t("_get 1.tag.BLOCKING")
qx{../src/task rc:dep.rc add Four 2>&1}; self.assertEqual("BLOCKING\n", out)
qx{../src/task rc:dep.rc add Five 2>&1};
qx{../src/task rc:dep.rc 5 modify dep:4 2>&1; ../src/task rc:dep.rc 4 modify dep:3 2>&1; ../src/task rc:dep.rc 3 modify dep:2 2>&1; ../src/task rc:dep.rc 2 modify dep:1 2>&1}; code, out, err = self.t("_get 2.tag.BLOCKED")
self.assertEqual("BLOCKED\n", out)
code, out, err = self.t("_get 2.tag.BLOCKING")
self.assertEqual("\n", out)
# [17,18] 5 dep 4 dep 3 dep 2 dep 1 dep 5 => error def test_modify_multiple(self):
$output = qx{../src/task rc:dep.rc 1 modify dep:5 2>&1 >/dev/null}; """Check circular dependencies are caught, using 5 tasks"""
like ($output, qr/Circular dependency detected and disallowed\./, 'dependencies - nontrivial circular'); self.t("add three")
unlike ($output, qr/Modified 1 task\./, 'dependencies - nontrivial circular'); self.t("add four")
self.t("add five")
code, out, err = self.t("1 modify dep:2,3,4")
self.assertIn("Modified 1 task.", out)
# [19] code, out, err = self.t("1 modify dep:5,-4")
unlink 'pending.data'; self.assertIn("Modified 1 task.", out)
qx{../src/task rc:dep.rc add One 2>&1}; code, out, err = self.t("_get 3.tag.BLOCKING")
qx{../src/task rc:dep.rc add Two 2>&1}; self.assertEqual("BLOCKING\n", out)
qx{../src/task rc:dep.rc add Three 2>&1};
qx{../src/task rc:dep.rc add Four 2>&1};
qx{../src/task rc:dep.rc add Five 2>&1};
qx{../src/task rc:dep.rc add Six recurring due:tomorrow recur:daily 2>&1};
# [20] code, out, err = self.t("_get 4.tag.BLOCKING")
qx{../src/task rc:dep.rc ls 2>&1}; # To force handleRecurrence call. self.assertEqual("\n", out)
$output = qx{echo 'y' | ../src/task rc:dep.rc 6 modify dep:5 2>&1};
like ($output, qr/Modified \d+ task/, 'dependencies - recurring task depending on another task');
# [21] def test_done_dep(self):
$output = qx{../src/task rc:dep.rc 4 modify dep:5 2>&1}; """Check that completing a task unblocks"""
like ($output, qr/Modified \d+ task/, 'dependencies - task depending on recurring task'); self.t("1 modify dep:2")
# [22] t 1 dep:2,3,4; t 1 dep:-2,-4,5; t info 1 => blocked by 3,5 code, out, err = self.t("_get 1.tag.BLOCKED")
$output = qx{../src/task rc:dep.rc 1 modify dep:2,3,4 2>&1; ../src/task rc:dep.rc 1 modify dep:-2,-4,5 2>&1; ../src/task rc:dep.rc info 1 2>&1}; self.assertEqual("BLOCKED\n", out)
like ($output, qr/This task blocked by\s+3 Three\n\s+5 Five\n/, 'dependencies - multiple dependencies modified');
# [23,24] code, out, err = self.t("2 done")
$output = qx{../src/task rc:dep.rc 3,5 done 2>&1; ../src/task rc:dep.rc info 1 2>&1}; self.assertIn("Unblocked 1 'one'.", out)
unlike ($output, qr/This task blocked by/, 'dependencies - task info reflects completed dependencies');
unlike ($output, qr/This task is blocking/, 'dependencies - task info reflects completed dependencies');
# [25] code, out, err = self.t("_get 1.tag.BLOCKED")
$output = qx{../src/task rc:dep.rc depreport 2>&1}; self.assertEqual("\n", out)
like ($output, qr/\s1\s+One\s+/, 'dependencies - depends report column reflects completed dependencies');
# [26] def test_chain_repair(self):
unlink 'pending.data'; """Check that a broken chain is repaired"""
self.t("add three")
self.t("add four")
self.t("2 modify dep:1")
self.t("3 modify dep:2")
self.t("4 modify dep:3")
qx{../src/task rc:dep.rc add One 2>&1}; # 1 <-- 2 <-- 3 <-- 4 Completing 2 requires repair
qx{../src/task rc:dep.rc add Two 2>&1}; # 1 <-- 3 <-- 4
qx{../src/task rc:dep.rc add Three 2>&1}; code, out, err = self.t("2 done", input="y\n")
qx{../src/task rc:dep.rc add Four 2>&1}; self.assertIn("Would you like the dependency chain fixed?", out)
qx{../src/task rc:dep.rc 1 modify dep:3,4 2>&1}; # 1 <-- 3 <-- 4 Completing 1 requires no repair
qx{../src/task rc:dep.rc 2 done 2>&1}; # 3 <-- 4
code, out, err = self.t("1 done")
self.assertNotIn("Would you like the dependency chain fixed?", out)
# [27] # 3 <-- 4 Deleting 4 requires no repair
$output = qx{../src/task rc:dep.rc depreport 2>&1}; # 3
like ($output, qr/\s1\s+2 3\s+One\s+/, 'dependencies - depends report column reflects changed IDs'); code, out, err = self.t("4 delete")
self.assertNotIn("Would you like the dependency chain fixed?", out)
# [28] def test_id_range_dep(self):
qx{../src/task rc:dep.rc 3 done 2>&1}; """Check that an ID range can be used for deps"""
$output = qx{../src/task rc:dep.rc depreport 2>&1}; self.t("add three")
like ($output, qr/\s1\s+2\s+One\s+/, 'dependencies - depends report column reflects completed dependencies');
# [29] # Add a range of IDs
unlink 'pending.data'; self.t("3 modify dep:1-2")
code, out, err = self.t("_get 1.tag.BLOCKING")
self.assertEqual("BLOCKING\n", out)
code, out, err = self.t("_get 2.tag.BLOCKING")
self.assertEqual("BLOCKING\n", out)
qx{../src/task rc:dep.rc add One 2>&1}; def test_id_uuid_dep(self):
qx{../src/task rc:dep.rc add Two 2>&1}; """Check that IDs and UUIDs are both usable for deps"""
qx{../src/task rc:dep.rc add Three 2>&1};
qx{../src/task rc:dep.rc add Four 2>&1};
qx{../src/task rc:dep.rc 2 modify dep:1 2>&1; ../src/task rc:dep.rc 3 modify dep:2 2>&1; ../src/task rc:dep.rc 4 modify dep:3 2>&1}; # Get 2.uuid
code, out, err = self.t("_get 2.uuid")
uuid = out.strip()
# [30,31] # Add a mix of IDs and UUID
$output = qx{echo 'y' | ../src/task rc:dep.rc 2 done 2>&1}; code, out, err = self.t("add three dep:1,%s" % uuid)
like ($output, qr/fixed/, 'dependencies - user prompted to fix broken chain after completing a blocked task'); self.assertIn("Created task 3.", out)
like ($output, qr/is blocked by/, 'dependencies - user nagged for completing a blocked task');
# [32] # Remove a mix of IЅs and UUID
$output = qx{echo 'y' | ../src/task rc:dep.rc 1 done 2>&1}; code, out, err = self.t("3 modify dep:-1,-%s" % uuid)
unlike ($output, qr/fixed/, 'dependencies - user not prompted to fix broken chain when the head of the chain is marked as complete'); self.assertIn("Modifying task 3 'three'.", out)
# [33]
$output = qx{echo 'y' | ../src/task rc:dep.rc 4 del 2>&1};
unlike ($output, qr/fixed/, 'dependencies - user not prompted to fix broken chain when the tail of the chain is deleted');
# [34]
unlink 'pending.data';
qx{../src/task rc:dep.rc add One 2>&1};
qx{../src/task rc:dep.rc add Two 2>&1};
qx{../src/task rc:dep.rc add Three 2>&1};
qx{../src/task rc:dep.rc add Four 2>&1};
qx{../src/task rc:dep.rc add Five 2>&1};
qx{../src/task rc:dep.rc 2 modify dep:1 2>&1};
qx{../src/task rc:dep.rc 3 modify dep:2 2>&1};
qx{../src/task rc:dep.rc 4 modify dep:3 2>&1};
qx{../src/task rc:dep.rc 5 modify dep:4 2>&1};
# [35]
qx{echo 'y' | ../src/task rc:dep.rc 2 done 2>&1};
$output = qx{../src/task rc:dep.rc depreport 2>&1};
like ($output, qr/\s1\s+One\s*\n\s2\s+1\s+Three\s*\n\s3\s+2\s+Four\s*\n\s4\s+3\s+Five/, 'dependencies - fixed chain after completing a blocked task');
# [36]
qx{echo "Y\nY\n" | ../src/task rc:dep.rc 2 del 2>&1};
$output = qx{../src/task rc:dep.rc depreport 2>&1};
like ($output, qr/\s1\s+One\s*\n\s2\s+1\s+Four\s*\n\s3\s+2\s+Five/, 'dependencies - fixed chain after deleting a blocked task');
# [37]
qx{../src/task rc:dep.rc 2 modify dep:-1 2>&1};
$output = qx{../src/task rc:dep.rc depreport 2>&1};
like ($output, qr/\s1\s+One\s*\n\s2\s+Four\s*\n\s3\s+2\s+Five/, 'dependencies - chain should not be automatically repaired after manually removing a dependency');
# [38]
unlink 'pending.data';
# Bug when adding a range of dependencies - 'task 3 mod dep:1-2' interprets the
# range 1-2 as the id 1
qx{../src/task rc:dep.rc add test1 2>&1};
qx{../src/task rc:dep.rc add test2 2>&1};
qx{../src/task rc:dep.rc add test3 2>&1};
qx{../src/task rc:dep.rc add test4 2>&1};
qx{../src/task rc:dep.rc add test5 2>&1};
my $uuid = qx{../src/task rc:dep.rc _get 5.uuid};
chomp $uuid;
# [38-42] test a comma-separated list of IDs, UUIDs, and ID ranges for creation
qx{../src/task rc:dep.rc add test6 dep:1,2,3,4,$uuid 2>&1};
$output = qx{../src/task rc:dep.rc 6 info 2>&1};
like ($output, qr/test1/ms, 'Dependency appearing for task1');
like ($output, qr/test2/ms, 'Dependency appearing for task2');
like ($output, qr/test3/ms, 'Dependency appearing for task3');
like ($output, qr/test4/ms, 'Dependency appearing for task4');
like ($output, qr/test5/ms, 'Dependency appearing for task5');
# [43-47] test a comma-separated list of IDs, UUIDs, and ID ranges for deletion
qx{../src/task rc:dep.rc 6 mod dep:-1,-2,-3,-4,-$uuid 2>&1};
$output = qx{../src/task rc:dep.rc 6 info 2>&1};
unlike ($output, qr/test1/ms, 'Dependency not appearing for task1');
unlike ($output, qr/test2/ms, 'Dependency not appearing for task2');
unlike ($output, qr/test3/ms, 'Dependency not appearing for task3');
unlike ($output, qr/test4/ms, 'Dependency not appearing for task4');
unlike ($output, qr/test5/ms, 'Dependency not appearing for task5');
# TODO - test dependency.confirmation config variable # TODO - test dependency.confirmation config variable
# TODO - test undo on backing out chain gap repair # TODO - test undo on backing out chain gap repair
@@ -250,7 +200,9 @@ unlike ($output, qr/test5/ms, 'Dependency not appearing for task5');
# TODO - test blocked task completion nag # TODO - test blocked task completion nag
# TODO - test depend.any and depend.none report filters # TODO - test depend.any and depend.none report filters
# Cleanup.
unlink qw(pending.data completed.data undo.data backlog.data dep.rc);
exit 0;
if __name__ == "__main__":
from simpletap import TAPTestRunner
unittest.main(testRunner=TAPTestRunner())
# vim: ai sts=4 et sw=4