From 7adadc6d126de7927c4d834f883b08ac854a6c53 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Mon, 11 Aug 2014 12:33:21 -0400 Subject: [PATCH] Unit Tests - Added filter-empty.t to test the safety valve overrides. --- test/filter-empty.t | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100755 test/filter-empty.t 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