diff --git a/test/filter-empty.t b/test/filter-empty.t new file mode 100755 index 000000000..814f4ec2b --- /dev/null +++ b/test/filter-empty.t @@ -0,0 +1,40 @@ +#!/usr/bin/env python2.7 +# -*- coding: utf-8 -*- + +import sys +import os +import unittest +sys.path.append(os.path.dirname(os.path.abspath(__file__))) + +from basetest import Task, TestCase + +REPO_DIR = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) + + +class TestEmptyFilter(TestCase): + def setUp(self): + self.t = Task() + + def test_empty_filter_warning(self): + """Modify tasks with no filter.""" + + self.t(("add", "foo")) + self.t(("add", "bar")) + + code, out, err = self.t.runError(("modify", "rc.allow.empty.filter=yes", "rc.confirmation=no", "priority:H")) + self.assertIn("Command prevented from running.", out) + + def test_empty_filter_error(self): + """Modify tasks with no filter, and disallowed confirmation.""" + + self.t(("add", "foo")) + self.t(("add", "bar")) + + code, out, err = self.t.runError(("modify", "rc.allow.empty.filter=no", "priority:H")) + self.assertIn("You did not specify a filter, and with the 'allow.empty.filter' value, no action is taken.", out) + +if __name__ == "__main__": + from simpletap import TAPTestRunner + unittest.main(testRunner=TAPTestRunner()) + +# vim: ai sts=4 et sw=4