summaryrefslogtreecommitdiffstats
path: root/lib/python/sectracker_test/test_regexpcase.py
blob: e4a9083364195524491b747eaa316a3a9bae7515 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# Tests for sectracker.regexpcase
# Copyright (C) 2009, 2010 Florian Weimer <fw@deneb.enyo.de>
# 
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
# 
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
# 
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA

import unittest

from sectracker.regexpcase import *

class TestRegexpCase(unittest.TestCase):
    def testempty(self):
        self.assertRaises(ValueError, RegexpCase, ())
        self.assertRaises(ValueError, RegexpCase, (), prefix="foo")
        self.assertRaises(ValueError, RegexpCase, (), suffix="foo")
        self.assertRaises(ValueError, RegexpCase, (), default="foo")
        self.assertRaises(ValueError, RegexpCase, (("two", 2)),
                                                   prefix="(f)oo")
        self.assertRaises(ValueError, RegexpCase, (("two", 2)),
                                                   suffix="(f)oo")

    def teststrings(self):
        rc = RegexpCase((("two", 2),
                         ("three", 3),
                         ("five", 5)))
        self.assertEqual(2, rc["two"])
        self.assertEqual(3, rc["three"])
        self.assertEqual(5, rc["five"])
        self.assertEqual(None, rc["seven"])
        self.assertEqual((None, None), rc.match("seven"))
        self.assertRaises(TypeError, rc.__call__, ())

    def testcallstrings(self):
        rc = RegexpCase((("(two)", lambda groups, x: (groups, x)),
                         ("three", lambda groups, x: (groups, x)),
                         ("f(i)v(e)", lambda groups, x : (groups, x))))
        self.assertEqual((("two",), -2), rc("two", -2))
        self.assertEqual(((), -3), rc("three", -3))
        self.assertEqual((tuple("ie"), -5), rc("five", -5))
        self.assertEqual(None, rc("seven", -1))
    def testcallstringsdefault(self):
        rc = RegexpCase([("f(i)v(e)", lambda groups, x : (groups, x))],
                        default=lambda key, x: (key, x))
        self.assertEqual(("seven", -1), rc("seven", -1))

unittest.main()

© 2014-2024 Faster IT GmbH | imprint | privacy policy