Bases: virtualsmartcard.tests.CardGenerator_test.ISO7816GeneratorTest
The default assertEqual implementation, not type specific.
Honour the longMessage attribute when generating failure messages. If longMessage is False this means: * Use only an explicit message if it is provided * Otherwise use the standard message for the assert
If longMessage is True: * Use the standard message * If an explicit message is provided, plus ‘ : ‘ and the explicit message
Get a detailed comparison function for the types of the two args.
Returns: A callable accepting (first, second, msg=None) that will raise a failure exception if first != second with a useful human readable error message for those types.
Add a function, with arguments, to be called when the test is completed. Functions added are called on a LIFO basis and are called after tearDown on test failure or success.
Cleanup items are called even if setUp fails (unlike tearDown).
Add a type specific assertEqual style function to compare a type.
This method is for use by TestCase subclasses that need to register their own type equality functions to provide nicer error messages.
Fail if the two objects are unequal as determined by their difference rounded to the given number of decimal places (default 7) and comparing to zero, or by comparing that the between the two objects is more than the given delta.
Note that decimal places (from zero) are usually not the same as significant digits (measured from the most signficant digit).
If the two objects compare equal then they will automatically compare almost equal.
Fail if the two objects are unequal as determined by their difference rounded to the given number of decimal places (default 7) and comparing to zero, or by comparing that the between the two objects is more than the given delta.
Note that decimal places (from zero) are usually not the same as significant digits (measured from the most signficant digit).
If the two objects compare equal then they will automatically compare almost equal.
Checks whether actual is a superset of expected.
Fail if the two objects are unequal as determined by the ‘==’ operator.
Fail if the two objects are unequal as determined by the ‘==’ operator.
Check that the expression is false.
Just like self.assertTrue(a > b), but with a nicer default message.
Just like self.assertTrue(a >= b), but with a nicer default message.
Just like self.assertTrue(a in b), but with a nicer default message.
Just like self.assertTrue(a is b), but with a nicer default message.
Same as self.assertTrue(isinstance(obj, cls)), with a nicer default message.
Same as self.assertTrue(obj is None), with a nicer default message.
Just like self.assertTrue(a is not b), but with a nicer default message.
Included for symmetry with assertIsNone.
An unordered sequence specific comparison. It asserts that actual_seq and expected_seq have the same element counts. Equivalent to:
self.assertEqual(Counter(iter(actual_seq)),
Counter(iter(expected_seq)))
Asserts that each element has the same count in both sequences. Example:
- [0, 1, 1] and [1, 0, 1] compare equal.
- [0, 0, 1] and [0, 1] compare unequal.
Just like self.assertTrue(a < b), but with a nicer default message.
Just like self.assertTrue(a <= b), but with a nicer default message.
A list-specific equality assertion.
list1: The first list to compare. list2: The second list to compare. msg: Optional message to use on failure instead of a list of
differences.
Assert that two multi-line strings are equal.
Fail if the two objects are equal as determined by their difference rounded to the given number of decimal places (default 7) and comparing to zero, or by comparing that the between the two objects is less than the given delta.
Note that decimal places (from zero) are usually not the same as significant digits (measured from the most signficant digit).
Objects that are equal automatically fail.
Fail if the two objects are equal as determined by their difference rounded to the given number of decimal places (default 7) and comparing to zero, or by comparing that the between the two objects is less than the given delta.
Note that decimal places (from zero) are usually not the same as significant digits (measured from the most signficant digit).
Objects that are equal automatically fail.
Fail if the two objects are equal as determined by the ‘!=’ operator.
Fail if the two objects are equal as determined by the ‘!=’ operator.
Just like self.assertTrue(a not in b), but with a nicer default message.
Included for symmetry with assertIsInstance.
Fail the test if the text matches the regular expression.
Fail unless an exception of class excClass is raised by callableObj when invoked with arguments args and keyword arguments kwargs. If a different type of exception is raised, it will not be caught, and the test case will be deemed to have suffered an error, exactly as for an unexpected exception.
If called with callableObj omitted or None, will return a context object used like this:
with self.assertRaises(SomeException):
do_something()
The context manager keeps a reference to the exception as the ‘exception’ attribute. This allows you to inspect the exception after the assertion:
with self.assertRaises(SomeException) as cm:
do_something()
the_exception = cm.exception
self.assertEqual(the_exception.error_code, 3)
Asserts that the message in a raised exception matches a regexp.
expected_exception: Exception class expected to be raised. expected_regexp: Regexp (re pattern object or string) expected
to be found in error message.
callable_obj: Function to be called. args: Extra args. kwargs: Extra kwargs.
Fail the test unless the text matches the regular expression.
An equality assertion for ordered sequences (like lists and tuples).
For the purposes of this function, a valid ordered sequence type is one which can be indexed, has a length, and has an equality operator.
seq1: The first sequence to compare. seq2: The second sequence to compare. seq_type: The expected datatype of the sequences, or None if no
datatype should be enforced.
A set-specific equality assertion.
set1: The first set to compare. set2: The second set to compare. msg: Optional message to use on failure instead of a list of
differences.
assertSetEqual uses ducktyping to support different types of sets, and is optimized for sets specifically (parameters must support a difference method).
Check that the expression is true.
A tuple-specific equality assertion.
tuple1: The first tuple to compare. tuple2: The second tuple to compare. msg: Optional message to use on failure instead of a list of
differences.
Check that the expression is true.
Run the test without collecting errors in a TestResult
Execute all cleanup functions. Normally called for you after tearDown.
Fail immediately, with the given message.
alias of AssertionError
Hook method for setting up class fixture before running tests in the class.
Returns a one-line description of the test, or None if no description has been provided.
The default implementation of this method returns the first line of the specified test method’s docstring.
Skip this test.
Hook method for deconstructing the test fixture after testing it.
Hook method for deconstructing the class fixture after running all tests in the class.
Bases: unittest.case.TestCase
The default assertEqual implementation, not type specific.
Honour the longMessage attribute when generating failure messages. If longMessage is False this means: * Use only an explicit message if it is provided * Otherwise use the standard message for the assert
If longMessage is True: * Use the standard message * If an explicit message is provided, plus ‘ : ‘ and the explicit message
Get a detailed comparison function for the types of the two args.
Returns: A callable accepting (first, second, msg=None) that will raise a failure exception if first != second with a useful human readable error message for those types.
Add a function, with arguments, to be called when the test is completed. Functions added are called on a LIFO basis and are called after tearDown on test failure or success.
Cleanup items are called even if setUp fails (unlike tearDown).
Add a type specific assertEqual style function to compare a type.
This method is for use by TestCase subclasses that need to register their own type equality functions to provide nicer error messages.
Fail if the two objects are unequal as determined by their difference rounded to the given number of decimal places (default 7) and comparing to zero, or by comparing that the between the two objects is more than the given delta.
Note that decimal places (from zero) are usually not the same as significant digits (measured from the most signficant digit).
If the two objects compare equal then they will automatically compare almost equal.
Fail if the two objects are unequal as determined by their difference rounded to the given number of decimal places (default 7) and comparing to zero, or by comparing that the between the two objects is more than the given delta.
Note that decimal places (from zero) are usually not the same as significant digits (measured from the most signficant digit).
If the two objects compare equal then they will automatically compare almost equal.
Checks whether actual is a superset of expected.
Fail if the two objects are unequal as determined by the ‘==’ operator.
Fail if the two objects are unequal as determined by the ‘==’ operator.
Check that the expression is false.
Just like self.assertTrue(a > b), but with a nicer default message.
Just like self.assertTrue(a >= b), but with a nicer default message.
Just like self.assertTrue(a in b), but with a nicer default message.
Just like self.assertTrue(a is b), but with a nicer default message.
Same as self.assertTrue(isinstance(obj, cls)), with a nicer default message.
Same as self.assertTrue(obj is None), with a nicer default message.
Just like self.assertTrue(a is not b), but with a nicer default message.
Included for symmetry with assertIsNone.
An unordered sequence specific comparison. It asserts that actual_seq and expected_seq have the same element counts. Equivalent to:
self.assertEqual(Counter(iter(actual_seq)),
Counter(iter(expected_seq)))
Asserts that each element has the same count in both sequences. Example:
- [0, 1, 1] and [1, 0, 1] compare equal.
- [0, 0, 1] and [0, 1] compare unequal.
Just like self.assertTrue(a < b), but with a nicer default message.
Just like self.assertTrue(a <= b), but with a nicer default message.
A list-specific equality assertion.
list1: The first list to compare. list2: The second list to compare. msg: Optional message to use on failure instead of a list of
differences.
Assert that two multi-line strings are equal.
Fail if the two objects are equal as determined by their difference rounded to the given number of decimal places (default 7) and comparing to zero, or by comparing that the between the two objects is less than the given delta.
Note that decimal places (from zero) are usually not the same as significant digits (measured from the most signficant digit).
Objects that are equal automatically fail.
Fail if the two objects are equal as determined by their difference rounded to the given number of decimal places (default 7) and comparing to zero, or by comparing that the between the two objects is less than the given delta.
Note that decimal places (from zero) are usually not the same as significant digits (measured from the most signficant digit).
Objects that are equal automatically fail.
Fail if the two objects are equal as determined by the ‘!=’ operator.
Fail if the two objects are equal as determined by the ‘!=’ operator.
Just like self.assertTrue(a not in b), but with a nicer default message.
Included for symmetry with assertIsInstance.
Fail the test if the text matches the regular expression.
Fail unless an exception of class excClass is raised by callableObj when invoked with arguments args and keyword arguments kwargs. If a different type of exception is raised, it will not be caught, and the test case will be deemed to have suffered an error, exactly as for an unexpected exception.
If called with callableObj omitted or None, will return a context object used like this:
with self.assertRaises(SomeException):
do_something()
The context manager keeps a reference to the exception as the ‘exception’ attribute. This allows you to inspect the exception after the assertion:
with self.assertRaises(SomeException) as cm:
do_something()
the_exception = cm.exception
self.assertEqual(the_exception.error_code, 3)
Asserts that the message in a raised exception matches a regexp.
expected_exception: Exception class expected to be raised. expected_regexp: Regexp (re pattern object or string) expected
to be found in error message.
callable_obj: Function to be called. args: Extra args. kwargs: Extra kwargs.
Fail the test unless the text matches the regular expression.
An equality assertion for ordered sequences (like lists and tuples).
For the purposes of this function, a valid ordered sequence type is one which can be indexed, has a length, and has an equality operator.
seq1: The first sequence to compare. seq2: The second sequence to compare. seq_type: The expected datatype of the sequences, or None if no
datatype should be enforced.
A set-specific equality assertion.
set1: The first set to compare. set2: The second set to compare. msg: Optional message to use on failure instead of a list of
differences.
assertSetEqual uses ducktyping to support different types of sets, and is optimized for sets specifically (parameters must support a difference method).
Check that the expression is true.
A tuple-specific equality assertion.
tuple1: The first tuple to compare. tuple2: The second tuple to compare. msg: Optional message to use on failure instead of a list of
differences.
Check that the expression is true.
Run the test without collecting errors in a TestResult
Execute all cleanup functions. Normally called for you after tearDown.
Fail immediately, with the given message.
alias of AssertionError
Hook method for setting up class fixture before running tests in the class.
Returns a one-line description of the test, or None if no description has been provided.
The default implementation of this method returns the first line of the specified test method’s docstring.
Skip this test.
Hook method for deconstructing the test fixture after testing it.
Hook method for deconstructing the class fixture after running all tests in the class.
Bases: virtualsmartcard.tests.CardGenerator_test.ISO7816GeneratorTest
The default assertEqual implementation, not type specific.
Honour the longMessage attribute when generating failure messages. If longMessage is False this means: * Use only an explicit message if it is provided * Otherwise use the standard message for the assert
If longMessage is True: * Use the standard message * If an explicit message is provided, plus ‘ : ‘ and the explicit message
Get a detailed comparison function for the types of the two args.
Returns: A callable accepting (first, second, msg=None) that will raise a failure exception if first != second with a useful human readable error message for those types.
Add a function, with arguments, to be called when the test is completed. Functions added are called on a LIFO basis and are called after tearDown on test failure or success.
Cleanup items are called even if setUp fails (unlike tearDown).
Add a type specific assertEqual style function to compare a type.
This method is for use by TestCase subclasses that need to register their own type equality functions to provide nicer error messages.
Fail if the two objects are unequal as determined by their difference rounded to the given number of decimal places (default 7) and comparing to zero, or by comparing that the between the two objects is more than the given delta.
Note that decimal places (from zero) are usually not the same as significant digits (measured from the most signficant digit).
If the two objects compare equal then they will automatically compare almost equal.
Fail if the two objects are unequal as determined by their difference rounded to the given number of decimal places (default 7) and comparing to zero, or by comparing that the between the two objects is more than the given delta.
Note that decimal places (from zero) are usually not the same as significant digits (measured from the most signficant digit).
If the two objects compare equal then they will automatically compare almost equal.
Checks whether actual is a superset of expected.
Fail if the two objects are unequal as determined by the ‘==’ operator.
Fail if the two objects are unequal as determined by the ‘==’ operator.
Check that the expression is false.
Just like self.assertTrue(a > b), but with a nicer default message.
Just like self.assertTrue(a >= b), but with a nicer default message.
Just like self.assertTrue(a in b), but with a nicer default message.
Just like self.assertTrue(a is b), but with a nicer default message.
Same as self.assertTrue(isinstance(obj, cls)), with a nicer default message.
Same as self.assertTrue(obj is None), with a nicer default message.
Just like self.assertTrue(a is not b), but with a nicer default message.
Included for symmetry with assertIsNone.
An unordered sequence specific comparison. It asserts that actual_seq and expected_seq have the same element counts. Equivalent to:
self.assertEqual(Counter(iter(actual_seq)),
Counter(iter(expected_seq)))
Asserts that each element has the same count in both sequences. Example:
- [0, 1, 1] and [1, 0, 1] compare equal.
- [0, 0, 1] and [0, 1] compare unequal.
Just like self.assertTrue(a < b), but with a nicer default message.
Just like self.assertTrue(a <= b), but with a nicer default message.
A list-specific equality assertion.
list1: The first list to compare. list2: The second list to compare. msg: Optional message to use on failure instead of a list of
differences.
Assert that two multi-line strings are equal.
Fail if the two objects are equal as determined by their difference rounded to the given number of decimal places (default 7) and comparing to zero, or by comparing that the between the two objects is less than the given delta.
Note that decimal places (from zero) are usually not the same as significant digits (measured from the most signficant digit).
Objects that are equal automatically fail.
Fail if the two objects are equal as determined by their difference rounded to the given number of decimal places (default 7) and comparing to zero, or by comparing that the between the two objects is less than the given delta.
Note that decimal places (from zero) are usually not the same as significant digits (measured from the most signficant digit).
Objects that are equal automatically fail.
Fail if the two objects are equal as determined by the ‘!=’ operator.
Fail if the two objects are equal as determined by the ‘!=’ operator.
Just like self.assertTrue(a not in b), but with a nicer default message.
Included for symmetry with assertIsInstance.
Fail the test if the text matches the regular expression.
Fail unless an exception of class excClass is raised by callableObj when invoked with arguments args and keyword arguments kwargs. If a different type of exception is raised, it will not be caught, and the test case will be deemed to have suffered an error, exactly as for an unexpected exception.
If called with callableObj omitted or None, will return a context object used like this:
with self.assertRaises(SomeException):
do_something()
The context manager keeps a reference to the exception as the ‘exception’ attribute. This allows you to inspect the exception after the assertion:
with self.assertRaises(SomeException) as cm:
do_something()
the_exception = cm.exception
self.assertEqual(the_exception.error_code, 3)
Asserts that the message in a raised exception matches a regexp.
expected_exception: Exception class expected to be raised. expected_regexp: Regexp (re pattern object or string) expected
to be found in error message.
callable_obj: Function to be called. args: Extra args. kwargs: Extra kwargs.
Fail the test unless the text matches the regular expression.
An equality assertion for ordered sequences (like lists and tuples).
For the purposes of this function, a valid ordered sequence type is one which can be indexed, has a length, and has an equality operator.
seq1: The first sequence to compare. seq2: The second sequence to compare. seq_type: The expected datatype of the sequences, or None if no
datatype should be enforced.
A set-specific equality assertion.
set1: The first set to compare. set2: The second set to compare. msg: Optional message to use on failure instead of a list of
differences.
assertSetEqual uses ducktyping to support different types of sets, and is optimized for sets specifically (parameters must support a difference method).
Check that the expression is true.
A tuple-specific equality assertion.
tuple1: The first tuple to compare. tuple2: The second tuple to compare. msg: Optional message to use on failure instead of a list of
differences.
Check that the expression is true.
Run the test without collecting errors in a TestResult
Execute all cleanup functions. Normally called for you after tearDown.
Fail immediately, with the given message.
alias of AssertionError
Hook method for setting up class fixture before running tests in the class.
Returns a one-line description of the test, or None if no description has been provided.
The default implementation of this method returns the first line of the specified test method’s docstring.
Skip this test.
Hook method for deconstructing the test fixture after testing it.
Hook method for deconstructing the class fixture after running all tests in the class.