Test: Converted to Python

This commit is contained in:
Paul Beckingham
2015-07-23 23:14:05 -04:00
parent a3f4c08659
commit e05b31a89f

View File

@@ -1,109 +1,103 @@
#! /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 => 15; 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, '>', 'start.rc')
{
print $fh "data.location=.\n";
close $fh;
}
# Test the add/start/stop commands. class TestStart(TestCase):
qx{../src/task rc:start.rc add one 2>&1}; @classmethod
qx{../src/task rc:start.rc add two 2>&1}; def setUpClass(cls):
my $output = qx{../src/task rc:start.rc active 2>&1}; """Executed once before any test in the class"""
unlike ($output, qr/one/, 'one not active');
unlike ($output, qr/two/, 'two not active');
qx{../src/task rc:start.rc 1 start 2>&1}; def setUp(self):
qx{../src/task rc:start.rc 2 start 2>&1}; """Executed before each test in the class"""
$output = qx{../src/task rc:start.rc active 2>&1}; self.t = Task()
like ($output, qr/one/, 'one active');
like ($output, qr/two/, 'two active');
qx{../src/task rc:start.rc 1 stop 2>&1}; def test_start_stop(self):
$output = qx{../src/task rc:start.rc active 2>&1}; """Add, start, stop a task"""
unlike ($output, qr/one/, 'one not active'); self.t("add one")
like ($output, qr/two/, 'two active'); self.t("add two")
code, out, err = self.t.runError("active")
qx{../src/task rc:start.rc 2 stop 2>&1}; self.t("1,2 start")
$output = qx{../src/task rc:start.rc active 2>&1}; code, out, err = self.t("active")
unlike ($output, qr/one/, 'one not active'); self.assertIn("one", out)
unlike ($output, qr/two/, 'two not active'); self.assertIn("two", out)
qx{../src/task rc:start.rc 2 done 2>&1}; self.t("1 stop")
$output = qx{../src/task rc:start.rc long 2>&1}; code, out, err = self.t("active")
unlike ($output, qr/two/, 'two deleted'); self.assertNotIn("one", out)
self.assertIn("two", out)
# Create the rc file. self.t("2 stop")
if (open my $fh, '>', 'start2.rc') code, out, err = self.t.runError("active")
{
print $fh "data.location=.\n",
"journal.time=on\n";
close $fh;
ok (-r 'start2.rc', 'Created start2.rc');
}
qx{../src/task rc:start2.rc 1 start 2>&1}; self.t("2 done")
$output = qx{../src/task rc:start2.rc long 2>&1}; code, out, err = self.t("list")
like ($output, qr/Started task/, 'one start and annotated'); self.assertNotIn("two", out)
qx{../src/task rc:start2.rc 1 stop 2>&1}; def test_journal_time(self):
$output = qx{../src/task rc:start2.rc long 2>&1}; """Verify journal.time tracks state"""
like ($output, qr/Stopped task/, 'one stopped and annotated'); self.t.config("journal.time", "on")
# Create the rc file. self.t("add one")
if (open my $fh, '>', 'start3.rc') self.t("1 start")
{ code, out, err = self.t("long")
print $fh "data.location=.\n", self.assertIn("Started task", out)
"journal.time=on\n",
"journal.time.start.annotation=Nu kör vi\n",
"journal.time.stop.annotation=Nu stannar vi\n";
close $fh;
ok (-r 'start3.rc', 'Created start3.rc');
}
qx{../src/task rc:start3.rc 1 start 2>&1}; self.t("1 stop")
$output = qx{../src/task rc:start3.rc long 2>&1}; code, out, err = self.t("long")
like ($output, qr/Nu.+kör.+vi/ms, 'one start and annotated with custom description'); self.assertIn("Stopped task", out)
qx{../src/task rc:start3.rc 1 stop 2>&1}; def test_journal_annotations(self):
$output = qx{../src/task rc:start3.rc long 2>&1}; """Verify journal start/stop annotations are used"""
like ($output, qr/Nu.+stannar.+vi/ms, 'one stopped and annotated with custom description'); self.t.config("journal.time", "on")
self.t.config("journal.time.start.annotation", "Nu kör vi")
self.t.config("journal.time.stop.annotation", "Nu stannar vi")
# Cleanup. self.t("add one")
unlink qw(pending.data completed.data undo.data backlog.data start.rc start2.rc start3.rc); self.t("1 start")
exit 0; code, out, err = self.t("long")
self.assertIn("Nu kör vi", out)
self.t("1 stop")
code, out, err = self.t("long")
self.assertIn("Nu stannar vi", out)
if __name__ == "__main__":
from simpletap import TAPTestRunner
unittest.main(testRunner=TAPTestRunner())
# vim: ai sts=4 et sw=4