Test: Converted to Python

This commit is contained in:
Paul Beckingham
2015-07-03 16:07:45 -04:00
parent be72551855
commit 00205cb2e6

View File

@@ -1,62 +1,67 @@
#! /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 => 5; 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, '>', 'custom.rc')
{
print $fh "data.location=.\n",
"report.foo.description=DESC\n",
"report.foo.columns=id,tags.indicator\n",
"report.foo.labels=ID,T\n",
"report.foo.sort=id+\n";
close $fh;
}
# Generate the usage screen, and locate the custom report on it. class TestCustomTagIndicator(TestCase):
qx{../src/task rc:custom.rc add foo +tag 2>&1}; @classmethod
qx{../src/task rc:custom.rc add bar 2>&1}; def setUpClass(cls):
my $output = qx{../src/task rc:custom.rc foo 2>&1}; """Executed once before any test in the class"""
like ($output, qr/ID.+T/, 'Tag indicator heading'); cls.t = Task()
like ($output, qr/1\s+\+/, 'Tag indicator t1'); cls.t.config("report.foo.description", "DESC")
unlike ($output, qr/2\s+\+/, 'No tag indicator t2'); cls.t.config("report.foo.columns", "id,tags.indicator")
cls.t.config("report.foo.labels", "ID,T")
cls.t.config("report.foo.sort", "id+")
$output = qx{../src/task rc:custom.rc foo rc.tag.indicator=TAG 2>&1}; cls.t("add foo +tag")
like ($output, qr/1\s+TAG/, 'Custom ag indicator t1'); cls.t("add bar")
unlike ($output, qr/2\s+TAG/, 'No custom tag indicator t2');
# Cleanup. def test_default_indicator(self):
unlink qw(pending.data completed.data undo.data backlog.data custom.rc); """Verify default tag indicator (+) is shown"""
exit 0; code, out, err = self.t("foo")
self.assertRegexpMatches(out, "ID.+T")
self.assertRegexpMatches(out, "1\s+\+")
def test_custom_indicator(self):
"""Verify custom tag indicator (TAG) is shown"""
code, out, err = self.t("rc.tag.indicator:TAG foo")
self.assertRegexpMatches(out, "1\s+TAG")
if __name__ == "__main__":
from simpletap import TAPTestRunner
unittest.main(testRunner=TAPTestRunner())
# vim: ai sts=4 et sw=4