summaryrefslogtreecommitdiff
path: root/tests/integration
diff options
context:
space:
mode:
authorkyleknap <kyleknap@amazon.com>2015-01-19 11:56:03 -0800
committerkyleknap <kyleknap@amazon.com>2015-01-21 14:24:14 -0800
commit89f08692c2c4727d4d686bd4a8f05504d30b952c (patch)
treefb5ed521167301277a6afd5c7a66353b4680ae52 /tests/integration
parentb11a5dc91b4c555eba6686dd1e7a20b4e9cc7978 (diff)
downloadboto-89f08692c2c4727d4d686bd4a8f05504d30b952c.tar.gz
Add integration tests for lambda
Diffstat (limited to 'tests/integration')
-rw-r--r--tests/integration/awslambda/__init__.py21
-rw-r--r--tests/integration/awslambda/test_awslambda.py38
2 files changed, 59 insertions, 0 deletions
diff --git a/tests/integration/awslambda/__init__.py b/tests/integration/awslambda/__init__.py
new file mode 100644
index 00000000..70cc23fe
--- /dev/null
+++ b/tests/integration/awslambda/__init__.py
@@ -0,0 +1,21 @@
+# Copyright (c) 2014 Amazon.com, Inc. or its affiliates. All Rights Reserved
+#
+# Permission is hereby granted, free of charge, to any person obtaining a
+# copy of this software and associated documentation files (the
+# "Software"), to deal in the Software without restriction, including
+# without limitation the rights to use, copy, modify, merge, publish, dis-
+# tribute, sublicense, and/or sell copies of the Software, and to permit
+# persons to whom the Software is furnished to do so, subject to the fol-
+# lowing conditions:
+#
+# The above copyright notice and this permission notice shall be included
+# in all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABIL-
+# ITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
+# SHALL THE AUTHOR BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+# WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
+# IN THE SOFTWARE.
+#
diff --git a/tests/integration/awslambda/test_awslambda.py b/tests/integration/awslambda/test_awslambda.py
new file mode 100644
index 00000000..9587f0e8
--- /dev/null
+++ b/tests/integration/awslambda/test_awslambda.py
@@ -0,0 +1,38 @@
+# Copyright (c) 2014 Amazon.com, Inc. or its affiliates. All Rights Reserved
+#
+# Permission is hereby granted, free of charge, to any person obtaining a
+# copy of this software and associated documentation files (the
+# "Software"), to deal in the Software without restriction, including
+# without limitation the rights to use, copy, modify, merge, publish, dis-
+# tribute, sublicense, and/or sell copies of the Software, and to permit
+# persons to whom the Software is furnished to do so, subject to the fol-
+# lowing conditions:
+#
+# The above copyright notice and this permission notice shall be included
+# in all copies or substantial portions of the Software.
+#
+# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+# OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABIL-
+# ITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
+# SHALL THE AUTHOR BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+# WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
+# IN THE SOFTWARE.
+#
+
+import boto
+from boto.awslambda.exceptions import ResourceNotFoundException
+from tests.compat import unittest
+
+
+class TestAWSLambda(unittest.TestCase):
+ def setUp(self):
+ self.awslambda = boto.connect_awslambda()
+
+ def test_list_functions(self):
+ response = self.awslambda.list_functions()
+ self.assertIn('Functions', response)
+
+ def test_resource_not_found_exceptions(self):
+ with self.assertRaises(ResourceNotFoundException):
+ self.awslambda.get_function(function_name='non-existant-function')