Remove line containing comment - # vim: tabstop=4 shiftwidth=4 softtabstop=4 Change-Id: I7581cc88b8de433d5609ed06c6570b0b45c13573 Closes-Bug:#1229324
		
			
				
	
	
		
			89 lines
		
	
	
		
			3.2 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			89 lines
		
	
	
		
			3.2 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
# -*- coding: utf-8 -*-
 | 
						|
 | 
						|
#    Copyright (C) 2012 Yahoo! Inc. All Rights Reserved.
 | 
						|
#
 | 
						|
#    Licensed under the Apache License, Version 2.0 (the "License"); you may
 | 
						|
#    not use this file except in compliance with the License. You may obtain
 | 
						|
#    a copy of the License at
 | 
						|
#
 | 
						|
#         http://www.apache.org/licenses/LICENSE-2.0
 | 
						|
#
 | 
						|
#    Unless required by applicable law or agreed to in writing, software
 | 
						|
#    distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 | 
						|
#    WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
 | 
						|
#    License for the specific language governing permissions and limitations
 | 
						|
#    under the License.
 | 
						|
 | 
						|
from testtools import compat
 | 
						|
from testtools import matchers
 | 
						|
from testtools import testcase
 | 
						|
 | 
						|
 | 
						|
class GreaterThanEqual(object):
 | 
						|
    """Matches if the item is geq than the matchers reference object."""
 | 
						|
 | 
						|
    def __init__(self, source):
 | 
						|
        self.source = source
 | 
						|
 | 
						|
    def match(self, other):
 | 
						|
        if other >= self.source:
 | 
						|
            return None
 | 
						|
        return matchers.Mismatch("%s was not >= %s" % (other, self.source))
 | 
						|
 | 
						|
 | 
						|
class TestCase(testcase.TestCase):
 | 
						|
    """Test case base class for all taskflow unit tests."""
 | 
						|
 | 
						|
    def assertRaisesRegexp(self, exc_class, pattern, callable_obj,
 | 
						|
                           *args, **kwargs):
 | 
						|
        # TODO(harlowja): submit a pull/review request to testtools to add
 | 
						|
        # this method to there codebase instead of having it exist in ours
 | 
						|
        # since it really doesn't belong here.
 | 
						|
 | 
						|
        class ReRaiseOtherTypes(object):
 | 
						|
            def match(self, matchee):
 | 
						|
                if not issubclass(matchee[0], exc_class):
 | 
						|
                    compat.reraise(*matchee)
 | 
						|
 | 
						|
        class CaptureMatchee(object):
 | 
						|
            def match(self, matchee):
 | 
						|
                self.matchee = matchee[1]
 | 
						|
 | 
						|
        capture = CaptureMatchee()
 | 
						|
        matcher = matchers.Raises(matchers.MatchesAll(ReRaiseOtherTypes(),
 | 
						|
                                  matchers.MatchesException(exc_class,
 | 
						|
                                                            pattern),
 | 
						|
                                  capture))
 | 
						|
        our_callable = testcase.Nullary(callable_obj, *args, **kwargs)
 | 
						|
        self.assertThat(our_callable, matcher)
 | 
						|
        return capture.matchee
 | 
						|
 | 
						|
    def assertGreater(self, first, second):
 | 
						|
        matcher = matchers.GreaterThan(first)
 | 
						|
        self.assertThat(second, matcher)
 | 
						|
 | 
						|
    def assertGreaterEqual(self, first, second):
 | 
						|
        matcher = GreaterThanEqual(first)
 | 
						|
        self.assertThat(second, matcher)
 | 
						|
 | 
						|
    def assertRegexpMatches(self, text, pattern):
 | 
						|
        matcher = matchers.MatchesRegex(pattern)
 | 
						|
        self.assertThat(text, matcher)
 | 
						|
 | 
						|
    def assertIsSuperAndSubsequence(self, super_seq, sub_seq, msg=None):
 | 
						|
        super_seq = list(super_seq)
 | 
						|
        sub_seq = list(sub_seq)
 | 
						|
        current_tail = super_seq
 | 
						|
        for sub_elem in sub_seq:
 | 
						|
            try:
 | 
						|
                super_index = current_tail.index(sub_elem)
 | 
						|
            except ValueError:
 | 
						|
                # element not found
 | 
						|
                if msg is None:
 | 
						|
                    msg = ("%r is not subsequence of %r: "
 | 
						|
                           "element %r not found in tail %r"
 | 
						|
                           % (sub_seq, super_seq, sub_elem, current_tail))
 | 
						|
                self.fail(msg)
 | 
						|
            else:
 | 
						|
                current_tail = current_tail[super_index + 1:]
 |