2014-08-27 11:17:06 -04:00
|
|
|
from __future__ import unicode_literals
|
2013-12-26 13:12:50 -03:00
|
|
|
import unittest
|
|
|
|
|
|
|
|
from boto.sqs.connection import SQSConnection
|
|
|
|
from boto.sqs.message import Message
|
|
|
|
from boto.ec2 import EC2Connection
|
|
|
|
|
2017-02-15 22:35:45 -05:00
|
|
|
from moto import mock_sqs_deprecated, mock_ec2_deprecated
|
2021-01-29 03:31:56 -08:00
|
|
|
from tests import EXAMPLE_AMI_ID
|
2013-12-26 13:12:50 -03:00
|
|
|
|
|
|
|
|
|
|
|
class TestNestedDecorators(unittest.TestCase):
|
2017-02-15 22:35:45 -05:00
|
|
|
@mock_sqs_deprecated
|
2013-12-26 13:12:50 -03:00
|
|
|
def setup_sqs_queue(self):
|
|
|
|
conn = SQSConnection()
|
2019-10-31 08:44:26 -07:00
|
|
|
q = conn.create_queue("some-queue")
|
2013-12-26 13:12:50 -03:00
|
|
|
|
|
|
|
m = Message()
|
2019-10-31 08:44:26 -07:00
|
|
|
m.set_body("This is my first message.")
|
2013-12-26 13:12:50 -03:00
|
|
|
q.write(m)
|
|
|
|
|
|
|
|
self.assertEqual(q.count(), 1)
|
|
|
|
|
2017-02-15 22:35:45 -05:00
|
|
|
@mock_ec2_deprecated
|
2013-12-26 13:12:50 -03:00
|
|
|
def test_nested(self):
|
|
|
|
self.setup_sqs_queue()
|
|
|
|
|
|
|
|
conn = EC2Connection()
|
2021-01-29 03:31:56 -08:00
|
|
|
conn.run_instances(EXAMPLE_AMI_ID)
|