summaryrefslogtreecommitdiff
path: root/test/integration/targets/inventory_aws_conformance/lib/boto/ec2/__init__.py
blob: e590be63952a73e5bb1e1860bf67a4bc261fc1bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# boto2

from __future__ import (absolute_import, division, print_function)
__metaclass__ = type

from boto.mocks.instances import BotoInstance, Reservation


class Region(object):
    name = None

    def __init__(self, name):
        self.name = name


class Connection(object):
    region = None
    instances = None

    def __init__(self, **kwargs):
        self.reservations = [Reservation(
            owner_id='123456789012',
            instance_ids=['i-0678e70402c0b434c', 'i-16a83b42f01c082a1'],
            region=kwargs['region']
        )]

    def get_all_instances(self, *args, **kwargs):
        return self.reservations

    def describe_cache_clusters(self, *args, **kwargs):
        return {}

    def get_all_tags(self, *args, **kwargs):
        tags = []
        resid = kwargs['filters']['resource-id'][0]
        for instance in self.reservations[0].instances:
            if instance.id == resid:
                tags = instance._tags[:]
                break
        return tags


def connect_to_region(*args, **kwargs):
    return Connection(region=args[0])


def regions():
    return [Region('us-east-1')]