mirror of
https://github.com/GothenburgBitFactory/taskwarrior.git
synced 2025-06-26 10:54:26 +02:00
Test: Converted to Python
This commit is contained in:
parent
298c9b2dde
commit
064b3f7f0d
1 changed files with 102 additions and 87 deletions
189
test/pri_sort.t
189
test/pri_sort.t
|
@ -1,101 +1,116 @@
|
||||||
#! /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 => 32;
|
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, '>', 'pri.rc')
|
|
||||||
{
|
|
||||||
print $fh "data.location=.\n",
|
|
||||||
"verbose=off\n";
|
|
||||||
close $fh;
|
|
||||||
}
|
|
||||||
|
|
||||||
# Verify that priorities can be select with the 'over' and 'under' modifiers.
|
class TestPrioritySorting(TestCase):
|
||||||
qx{../src/task rc:pri.rc add H pri:H 2>&1};
|
@classmethod
|
||||||
qx{../src/task rc:pri.rc add M pri:M 2>&1};
|
def setUpClass(cls):
|
||||||
qx{../src/task rc:pri.rc add L pri:L 2>&1};
|
"""Executed once before any test in the class"""
|
||||||
qx{../src/task rc:pri.rc add _ 2>&1};
|
cls.t = Task()
|
||||||
|
cls.t.config("verbose", "nothing")
|
||||||
|
|
||||||
my $output = qx{../src/task rc:pri.rc ls priority.under:H 2>&1};
|
cls.t("add H pri:H")
|
||||||
unlike ($output, qr/H/, 'pri H !< H');
|
cls.t("add M pri:M")
|
||||||
like ($output, qr/M/, 'pri M < H');
|
cls.t("add L pri:L")
|
||||||
like ($output, qr/L/, 'pri L < H');
|
cls.t("add _")
|
||||||
like ($output, qr/_/, 'pri _ < H');
|
|
||||||
|
|
||||||
$output = qx{../src/task rc:pri.rc ls priority.under:M 2>&1};
|
def setUp(self):
|
||||||
unlike ($output, qr/H/, 'pri H !< M');
|
"""Executed before each test in the class"""
|
||||||
unlike ($output, qr/M/, 'pri M !< M');
|
|
||||||
like ($output, qr/L/, 'pri L < M');
|
|
||||||
like ($output, qr/_/, 'pri _ < M');
|
|
||||||
|
|
||||||
$output = qx{../src/task rc:pri.rc ls priority.under:L 2>&1};
|
def test_priority_sort_under_H(self):
|
||||||
unlike ($output, qr/H/, 'pri H !< L');
|
"""Verify priority.under:H works"""
|
||||||
unlike ($output, qr/M/, 'pri M !< L');
|
code, out, err = self.t("priority.under:H ls")
|
||||||
unlike ($output, qr/L/, 'pri L !< L');
|
self.assertNotIn("H", out)
|
||||||
like ($output, qr/_/, 'pri _ < L');
|
self.assertIn("M", out)
|
||||||
|
self.assertIn("L", out)
|
||||||
|
self.assertIn("_", out)
|
||||||
|
|
||||||
$output = qx{../src/task rc:pri.rc ls priority.under: 2>&1};
|
def test_priority_sort_under_M(self):
|
||||||
unlike ($output, qr/H/, 'pri H !< _');
|
"""Verify priority.under:M works"""
|
||||||
unlike ($output, qr/M/, 'pri M !< _');
|
code, out, err = self.t("priority.under:M ls")
|
||||||
unlike ($output, qr/L/, 'pri L !< _');
|
self.assertNotIn("H", out)
|
||||||
unlike ($output, qr/_/, 'pri _ !< _');
|
self.assertNotIn("M", out)
|
||||||
|
self.assertIn("L", out)
|
||||||
|
self.assertIn("_", out)
|
||||||
|
|
||||||
$output = qx{../src/task rc:pri.rc ls priority.over:H 2>&1};
|
def test_priority_sort_under_L(self):
|
||||||
unlike ($output, qr/H/, 'pri H !> H');
|
"""Verify priority.under:L works"""
|
||||||
unlike ($output, qr/M/, 'pri M !> H');
|
code, out, err = self.t("priority.under:L ls")
|
||||||
unlike ($output, qr/L/, 'pri L !> H');
|
self.assertNotIn("H", out)
|
||||||
unlike ($output, qr/_/, 'pri _ !> H');
|
self.assertNotIn("M", out)
|
||||||
|
self.assertNotIn("L", out)
|
||||||
|
self.assertIn("_", out)
|
||||||
|
|
||||||
$output = qx{../src/task rc:pri.rc ls priority.over:M 2>&1};
|
def test_priority_sort_under_blank(self):
|
||||||
like ($output, qr/H/, 'pri H > M');
|
"""Verify priority.under: works"""
|
||||||
unlike ($output, qr/M/, 'pri M !> M');
|
code, out, err = self.t.runError("priority.under: ls")
|
||||||
unlike ($output, qr/L/, 'pri L !> M');
|
# No output with 'rc.verbose:nothing'
|
||||||
unlike ($output, qr/_/, 'pri _ !> M');
|
|
||||||
|
|
||||||
$output = qx{../src/task rc:pri.rc ls priority.over:L 2>&1};
|
def test_priority_sort_over_H(self):
|
||||||
like ($output, qr/H/, 'pri H > L');
|
"""Verify priority.over:H works"""
|
||||||
like ($output, qr/M/, 'pri M > L');
|
code, out, err = self.t.runError("priority.over:H ls")
|
||||||
unlike ($output, qr/L/, 'pri L !> L');
|
# No output with 'rc.verbose:nothing'
|
||||||
unlike ($output, qr/_/, 'pri _ !> L');
|
|
||||||
|
|
||||||
$output = qx{../src/task rc:pri.rc ls priority.over: 2>&1};
|
def test_priority_sort_over_M(self):
|
||||||
like ($output, qr/H/, 'pri H > _');
|
"""Verify priority.over:M works"""
|
||||||
like ($output, qr/M/, 'pri M > _');
|
code, out, err = self.t("priority.over:M ls")
|
||||||
like ($output, qr/L/, 'pri L > _');
|
self.assertIn("H", out)
|
||||||
unlike ($output, qr/_/, 'pri _ !> _');
|
self.assertNotIn("M", out)
|
||||||
|
self.assertNotIn("L", out)
|
||||||
|
self.assertNotIn("_", out)
|
||||||
|
|
||||||
# Cleanup.
|
def test_priority_sort_over_L(self):
|
||||||
unlink qw(pending.data completed.data undo.data backlog.data pri.rc);
|
"""Verify priority.over:L works"""
|
||||||
exit 0;
|
code, out, err = self.t("priority.over:L ls")
|
||||||
|
self.assertIn("H", out)
|
||||||
|
self.assertIn("M", out)
|
||||||
|
self.assertNotIn("L", out)
|
||||||
|
self.assertNotIn("_", out)
|
||||||
|
|
||||||
|
def test_priority_sort_over_blank(self):
|
||||||
|
"""Verify priority.over: works"""
|
||||||
|
code, out, err = self.t("priority.over: ls")
|
||||||
|
self.assertIn("H", out)
|
||||||
|
self.assertIn("M", out)
|
||||||
|
self.assertIn("L", out)
|
||||||
|
self.assertNotIn("_", out)
|
||||||
|
|
||||||
|
|
||||||
|
if __name__ == "__main__":
|
||||||
|
from simpletap import TAPTestRunner
|
||||||
|
unittest.main(testRunner=TAPTestRunner())
|
||||||
|
|
||||||
|
# vim: ai sts=4 et sw=4
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue