Unit Tests

- Added filter-empty.t to test the safety valve overrides.
This commit is contained in:
Paul Beckingham 2014-08-11 12:33:21 -04:00
parent 1ccc284cc7
commit 7adadc6d12

40
test/filter-empty.t Executable file
View file

@ -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