tests.aws_tools_tests package

Submodules

tests.aws_tools_tests.test_dynamodb_handler module

tests.aws_tools_tests.test_lambda_handler module

class tests.aws_tools_tests.test_lambda_handler.LambdaHandlerTests(methodName='runTest')[source]

Bases: unittest.case.TestCase

addCleanup(*args, **kwargs)

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).

addTypeEqualityFunc(*args, **kwargs)

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.

Args:
typeobj: The data type to call this function on when both values
are of the same type in assertEqual().
function: The callable taking two arguments and an optional
msg= argument that raises self.failureException with a useful error message when the two arguments are not equal.
assertAlmostEqual(*args, **kwargs)

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.

assertAlmostEquals(*args, **kwargs)

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.

assertDictContainsSubset(*args, **kwargs)

Checks whether actual is a superset of expected.

assertDictEqual(*args, **kwargs)
assertEqual(*args, **kwargs)

Fail if the two objects are unequal as determined by the ‘==’ operator.

assertEquals(*args, **kwargs)

Fail if the two objects are unequal as determined by the ‘==’ operator.

assertFalse(*args, **kwargs)

Check that the expression is false.

assertGreater(*args, **kwargs)

Just like self.assertTrue(a > b), but with a nicer default message.

assertGreaterEqual(*args, **kwargs)

Just like self.assertTrue(a >= b), but with a nicer default message.

assertIn(*args, **kwargs)

Just like self.assertTrue(a in b), but with a nicer default message.

assertIs(*args, **kwargs)

Just like self.assertTrue(a is b), but with a nicer default message.

assertIsInstance(*args, **kwargs)

Same as self.assertTrue(isinstance(obj, cls)), with a nicer default message.

assertIsNone(*args, **kwargs)

Same as self.assertTrue(obj is None), with a nicer default message.

assertIsNot(*args, **kwargs)

Just like self.assertTrue(a is not b), but with a nicer default message.

assertIsNotNone(*args, **kwargs)

Included for symmetry with assertIsNone.

assertItemsEqual(*args, **kwargs)

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.
assertLess(*args, **kwargs)

Just like self.assertTrue(a < b), but with a nicer default message.

assertLessEqual(*args, **kwargs)

Just like self.assertTrue(a <= b), but with a nicer default message.

assertListEqual(*args, **kwargs)

A list-specific equality assertion.

Args:

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.
assertMultiLineEqual(*args, **kwargs)

Assert that two multi-line strings are equal.

assertNotAlmostEqual(*args, **kwargs)

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.

assertNotAlmostEquals(*args, **kwargs)

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.

assertNotEqual(*args, **kwargs)

Fail if the two objects are equal as determined by the ‘!=’ operator.

assertNotEquals(*args, **kwargs)

Fail if the two objects are equal as determined by the ‘!=’ operator.

assertNotIn(*args, **kwargs)

Just like self.assertTrue(a not in b), but with a nicer default message.

assertNotIsInstance(*args, **kwargs)

Included for symmetry with assertIsInstance.

assertNotRegexpMatches(*args, **kwargs)

Fail the test if the text matches the regular expression.

assertRaises(*args, **kwargs)

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)
assertRaisesRegexp(*args, **kwargs)

Asserts that the message in a raised exception matches a regexp.

Args:

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.

assertRegexpMatches(*args, **kwargs)

Fail the test unless the text matches the regular expression.

assertSequenceEqual(*args, **kwargs)

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.

Args:

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.
msg: Optional message to use on failure instead of a list of
differences.
assertSetEqual(*args, **kwargs)

A set-specific equality assertion.

Args:

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).

assertTrue(*args, **kwargs)

Check that the expression is true.

assertTupleEqual(*args, **kwargs)

A tuple-specific equality assertion.

Args:

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.
assert_(*args, **kwargs)

Check that the expression is true.

countTestCases(*args, **kwargs)
debug(*args, **kwargs)

Run the test without collecting errors in a TestResult

defaultTestResult(*args, **kwargs)
doCleanups(*args, **kwargs)

Execute all cleanup functions. Normally called for you after tearDown.

fail(*args, **kwargs)

Fail immediately, with the given message.

failIf(*args, **kwargs)
failIfAlmostEqual(*args, **kwargs)
failIfEqual(*args, **kwargs)
failUnless(*args, **kwargs)
failUnlessAlmostEqual(*args, **kwargs)
failUnlessEqual(*args, **kwargs)
failUnlessRaises(*args, **kwargs)
failureException

alias of AssertionError

id(*args, **kwargs)
init_lambda(*args, **kwargs)[source]
run(*args, **kwargs)
setUp(*args, **kwargs)[source]

Runs before each test.

shortDescription(*args, **kwargs)

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.

skipTest(*args, **kwargs)

Skip this test.

tearDown(*args, **kwargs)

Hook method for deconstructing the test fixture after testing it.

test_invoke(*args, **kwargs)[source]
test_setup_resources(*args, **kwargs)[source]

tests.aws_tools_tests.test_s3_handler module

class tests.aws_tools_tests.test_s3_handler.S3HandlerTests(methodName='runTest')[source]

Bases: unittest.case.TestCase

MOCK_BUCKET_NAME = u'test-bucket'
addCleanup(*args, **kwargs)

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).

addTypeEqualityFunc(*args, **kwargs)

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.

Args:
typeobj: The data type to call this function on when both values
are of the same type in assertEqual().
function: The callable taking two arguments and an optional
msg= argument that raises self.failureException with a useful error message when the two arguments are not equal.
assertAlmostEqual(*args, **kwargs)

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.

assertAlmostEquals(*args, **kwargs)

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.

assertDictContainsSubset(*args, **kwargs)

Checks whether actual is a superset of expected.

assertDictEqual(*args, **kwargs)
assertEqual(*args, **kwargs)

Fail if the two objects are unequal as determined by the ‘==’ operator.

assertEquals(*args, **kwargs)

Fail if the two objects are unequal as determined by the ‘==’ operator.

assertFalse(*args, **kwargs)

Check that the expression is false.

assertGreater(*args, **kwargs)

Just like self.assertTrue(a > b), but with a nicer default message.

assertGreaterEqual(*args, **kwargs)

Just like self.assertTrue(a >= b), but with a nicer default message.

assertIn(*args, **kwargs)

Just like self.assertTrue(a in b), but with a nicer default message.

assertIs(*args, **kwargs)

Just like self.assertTrue(a is b), but with a nicer default message.

assertIsInstance(*args, **kwargs)

Same as self.assertTrue(isinstance(obj, cls)), with a nicer default message.

assertIsNone(*args, **kwargs)

Same as self.assertTrue(obj is None), with a nicer default message.

assertIsNot(*args, **kwargs)

Just like self.assertTrue(a is not b), but with a nicer default message.

assertIsNotNone(*args, **kwargs)

Included for symmetry with assertIsNone.

assertItemsEqual(*args, **kwargs)

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.
assertLess(*args, **kwargs)

Just like self.assertTrue(a < b), but with a nicer default message.

assertLessEqual(*args, **kwargs)

Just like self.assertTrue(a <= b), but with a nicer default message.

assertListEqual(*args, **kwargs)

A list-specific equality assertion.

Args:

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.
assertMultiLineEqual(*args, **kwargs)

Assert that two multi-line strings are equal.

assertNotAlmostEqual(*args, **kwargs)

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.

assertNotAlmostEquals(*args, **kwargs)

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.

assertNotEqual(*args, **kwargs)

Fail if the two objects are equal as determined by the ‘!=’ operator.

assertNotEquals(*args, **kwargs)

Fail if the two objects are equal as determined by the ‘!=’ operator.

assertNotIn(*args, **kwargs)

Just like self.assertTrue(a not in b), but with a nicer default message.

assertNotIsInstance(*args, **kwargs)

Included for symmetry with assertIsInstance.

assertNotRegexpMatches(*args, **kwargs)

Fail the test if the text matches the regular expression.

assertRaises(*args, **kwargs)

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)
assertRaisesRegexp(*args, **kwargs)

Asserts that the message in a raised exception matches a regexp.

Args:

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.

assertRegexpMatches(*args, **kwargs)

Fail the test unless the text matches the regular expression.

assertSequenceEqual(*args, **kwargs)

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.

Args:

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.
msg: Optional message to use on failure instead of a list of
differences.
assertSetEqual(*args, **kwargs)

A set-specific equality assertion.

Args:

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).

assertTrue(*args, **kwargs)

Check that the expression is true.

assertTupleEqual(*args, **kwargs)

A tuple-specific equality assertion.

Args:

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.
assert_(*args, **kwargs)

Check that the expression is true.

countTestCases(*args, **kwargs)
debug(*args, **kwargs)

Run the test without collecting errors in a TestResult

defaultTestResult(*args, **kwargs)
doCleanups(*args, **kwargs)

Execute all cleanup functions. Normally called for you after tearDown.

fail(*args, **kwargs)

Fail immediately, with the given message.

failIf(*args, **kwargs)
failIfAlmostEqual(*args, **kwargs)
failIfEqual(*args, **kwargs)
failUnless(*args, **kwargs)
failUnlessAlmostEqual(*args, **kwargs)
failUnlessEqual(*args, **kwargs)
failUnlessRaises(*args, **kwargs)
failureException

alias of AssertionError

id(*args, **kwargs)
resources_dir = u'/home/docs/checkouts/readthedocs.org/user_builds/tx-manager/checkouts/latest/tests/aws_tools_tests/resources'
run(*args, **kwargs)
setUp(*args, **kwargs)[source]

Runs before each test.

shortDescription(*args, **kwargs)

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.

skipTest(*args, **kwargs)

Skip this test.

tearDown(*args, **kwargs)[source]
test_copy(*args, **kwargs)[source]
test_create_bucket(*args, **kwargs)[source]
test_download_dir(*args, **kwargs)[source]
test_get_file_contents_bad(*args, **kwargs)[source]
test_get_file_contents_good(*args, **kwargs)[source]
test_key_does_not_exists(*args, **kwargs)[source]
test_key_exists(*args, **kwargs)[source]
test_put_contents(*args, **kwargs)[source]
test_replace(*args, **kwargs)[source]
test_setup_resources(*args, **kwargs)[source]
test_upload_file(*args, **kwargs)[source]

Module contents