コード例 #1
0
ファイル: util_test.py プロジェクト: jbenito/meniscus
    def test_find_tenant_creates_new_tenant_on_no_tenant_found(self):

        tenant = find_tenant(self.ds_handler_no_tenant,
                             'unknown_tenant',
                             create_on_missing=True)
        self.assertIsInstance(tenant, Tenant)
        self.ds_handler_no_tenant.put.assert_called_once()
コード例 #2
0
ファイル: util_test.py プロジェクト: thomdixon/meniscus
    def test_find_tenant_creates_new_tenant_on_no_tenant_found(self):

        tenant = find_tenant(self.ds_handler_no_tenant,
                             'unknown_tenant',
                             create_on_missing=True)
        self.assertIsInstance(tenant, Tenant)
        self.ds_handler_no_tenant.put.assert_called_once()
コード例 #3
0
ファイル: resources.py プロジェクト: dmend/meniscus
    def on_post(self, req, resp, tenant_id):

        body = dict()
        if req.stream:
            body = load_body(req)
            self._validate_req_body_on_post(body)

        #verify the tenant exists
        tenant = find_tenant(self.db, tenant_id=tenant_id)

        if not tenant:
            _tenant_not_found()

        invalidate_now = False

        if 'token' in body.keys() and 'invalidate_now' in body['token']:
            invalidate_now = body['token']['invalidate_now']

        if invalidate_now:
            #immediately invalidate the token
            tenant.token.reset_token_now()

        else:
            self._validate_token_min_time_limit_reached(tenant.token)
            tenant.token.reset_token()

        self.db.update('tenant', tenant.format_for_save())

        resp.status = falcon.HTTP_203
        resp.set_header('Location', '/v1/{0}/token'.format(tenant_id))
コード例 #4
0
    def on_delete(self, req, resp, tenant_id):
        tenant = find_tenant(self.db, tenant_id=tenant_id)

        if not tenant:
            _tenant_not_found()

        self.db.delete('tenant', {'_id': tenant.get_id()})
        self.db.delete_sequence(tenant.tenant_id)
        resp.status = falcon.HTTP_200
コード例 #5
0
ファイル: resources.py プロジェクト: dmend/meniscus
    def on_get(self, req, resp, tenant_id):

        tenant = find_tenant(self.db, tenant_id=tenant_id)

        if not tenant:
            _tenant_not_found()

        resp.status = falcon.HTTP_200
        resp.body = format_response_body({'tenant': tenant.format()})
コード例 #6
0
    def on_get(self, req, resp, tenant_id):
        tenant = find_tenant(self.db, tenant_id=tenant_id)

        if not tenant:
            _tenant_not_found()

        resp.status = falcon.HTTP_200
        resp.body = format_response_body(
            {'event_producers': [p.format() for p in tenant.event_producers]})
コード例 #7
0
ファイル: resources.py プロジェクト: jbenito/meniscus
    def on_delete(self, req, resp, tenant_id):
        tenant = find_tenant(self.db, tenant_id=tenant_id)

        if not tenant:
            _tenant_not_found()

        self.db.delete('tenant', {'_id': tenant.get_id()})
        self.db.delete_sequence(tenant.tenant_id)
        resp.status = falcon.HTTP_200
コード例 #8
0
ファイル: resources.py プロジェクト: jbenito/meniscus
    def on_get(self, req, resp, tenant_id):
        tenant = find_tenant(self.db, tenant_id=tenant_id)

        if not tenant:
            _tenant_not_found()

        resp.status = falcon.HTTP_200
        resp.body = format_response_body({'event_producers':
                                         [p.format()
                                          for p in tenant.event_producers]})
コード例 #9
0
    def on_get(self, req, resp, tenant_id):

        #verify the tenant exists
        tenant = find_tenant(self.db, tenant_id=tenant_id)

        if not tenant:
            _tenant_not_found()

        resp.status = falcon.HTTP_200
        resp.body = format_response_body({'token': tenant.token.format()})
コード例 #10
0
    def on_get(self, req, resp, tenant_id):
        tenant = find_tenant(self.db,
                             tenant_id=tenant_id,
                             create_on_missing=True)

        if not tenant:
            _tenant_not_found()

        resp.status = falcon.HTTP_200
        resp.body = format_response_body({'tenant': tenant.format()})
コード例 #11
0
ファイル: resources.py プロジェクト: jbenito/meniscus
    def on_get(self, req, resp, tenant_id):

        #verify the tenant exists
        tenant = find_tenant(self.db, tenant_id=tenant_id)

        if not tenant:
            _tenant_not_found()

        resp.status = falcon.HTTP_200
        resp.body = format_response_body({'token': tenant.token.format()})
コード例 #12
0
ファイル: resources.py プロジェクト: dmend/meniscus
    def on_post(self, req, resp, tenant_id):
        body = load_body(req)

        self._validate_req_body_on_post(body)

        #verify the tenant exists
        tenant = find_tenant(self.db, tenant_id=tenant_id)

        if not tenant:
            _tenant_not_found()

        hostname = body['hostname']

        # Check if the tenant already has a host with this hostname
        for host in tenant.hosts:
            if host.hostname == hostname:
                abort(falcon.HTTP_400,
                      'Host with hostname {0} already exists with id={1}'
                      .format(hostname, host.get_id()))

        ip_address_v4 = None
        if 'ip_address_v4' in body.keys():
            ip_address_v4 = body['ip_address_v4']

        ip_address_v6 = None
        if 'ip_address_v6' in body.keys():
            ip_address_v6 = body['ip_address_v6']

        profile_id = None
        #if profile id is not in post message, then use a null profile
        if 'profile_id' in body.keys():
            if body['profile_id']:
                profile_id = body['profile_id']

        #if profile id is in post message, then make sure it is valid profile
        if profile_id:
            #verify the profile exists and belongs to the tenant
            profile = find_host_profile(tenant, profile_id=profile_id)
            if not profile:
                _profile_not_found()

        # Create the new host definition
        new_host = Host(
            self.db.next_sequence_value(tenant.tenant_id),
            hostname, ip_address_v4,
            ip_address_v6, profile_id)

        tenant.hosts.append(new_host)
        self.db.update('tenant', tenant.format_for_save())

        resp.status = falcon.HTTP_201
        resp.set_header('Location',
                        '/v1/{0}/hosts/{1}'
                        .format(tenant_id, new_host.get_id()))
コード例 #13
0
ファイル: resources.py プロジェクト: dmend/meniscus
    def on_get(self, req, resp, tenant_id):
        #ensure the tenant exists
        tenant = find_tenant(self.db, tenant_id=tenant_id)
        if not tenant:
            _tenant_not_found()

        resp.status = falcon.HTTP_200

        #jsonify a list of formatted profiles
        resp.body = format_response_body({
            'profiles': [p.format() for p in tenant.profiles]
        })
コード例 #14
0
ファイル: resources.py プロジェクト: jbenito/meniscus
    def on_post(self, req, resp, tenant_id, validated_body):
        body = validated_body['event_producer']

        tenant = find_tenant(self.db, tenant_id=tenant_id)

        if not tenant:
            _tenant_not_found()

        event_producer_name = body['name']
        event_producer_pattern = body['pattern']

        #if durable or encrypted aren't specified, set to False
        if 'durable' in body.keys():
            event_producer_durable = body['durable']
        else:
            event_producer_durable = False

        if 'encrypted' in body.keys():
            event_producer_encrypted = body['encrypted']
        else:
            event_producer_encrypted = False

        if 'sinks' in body.keys():
            event_producer_sinks = body['sinks']
        else:
            event_producer_sinks = None

        # Check if the tenant already has an event producer with this name
        producer = find_event_producer(tenant,
                                       producer_name=event_producer_name)
        if producer:
            abort(falcon.HTTP_400,
                  'Event producer with name {0} already exists with id={1}.'
                  .format(producer.name, producer.get_id()))

        # Create the new profile for the host
        new_event_producer = EventProducer(
            self.db.next_sequence_value(tenant.tenant_id),
            event_producer_name,
            event_producer_pattern,
            event_producer_durable,
            event_producer_encrypted,
            event_producer_sinks)

        tenant.event_producers.append(new_event_producer)
        self.db.update('tenant', tenant.format_for_save())

        resp.status = falcon.HTTP_201
        resp.set_header('Location',
                        '/v1/{0}/producers/{1}'
                        .format(tenant_id, new_event_producer.get_id()))
コード例 #15
0
    def on_post(self, req, resp, tenant_id, validated_body):
        body = validated_body['event_producer']

        tenant = find_tenant(self.db, tenant_id=tenant_id)

        if not tenant:
            _tenant_not_found()

        event_producer_name = body['name']
        event_producer_pattern = body['pattern']

        #if durable or encrypted aren't specified, set to False
        if 'durable' in body.keys():
            event_producer_durable = body['durable']
        else:
            event_producer_durable = False

        if 'encrypted' in body.keys():
            event_producer_encrypted = body['encrypted']
        else:
            event_producer_encrypted = False

        if 'sinks' in body.keys():
            event_producer_sinks = body['sinks']
        else:
            event_producer_sinks = None

        # Check if the tenant already has an event producer with this name
        producer = find_event_producer(tenant,
                                       producer_name=event_producer_name)
        if producer:
            abort(
                falcon.HTTP_400,
                'Event producer with name {0} already exists with id={1}.'.
                format(producer.name, producer.get_id()))

        # Create the new profile for the host
        new_event_producer = EventProducer(
            self.db.next_sequence_value(tenant.tenant_id), event_producer_name,
            event_producer_pattern, event_producer_durable,
            event_producer_encrypted, event_producer_sinks)

        tenant.event_producers.append(new_event_producer)
        self.db.update('tenant', tenant.format_for_save())

        resp.status = falcon.HTTP_201
        resp.set_header(
            'Location',
            '/v1/{0}/producers/{1}'.format(tenant_id,
                                           new_event_producer.get_id()))
コード例 #16
0
ファイル: resources.py プロジェクト: dmend/meniscus
    def on_get(self, req, resp, tenant_id, host_id):
        #verify the tenant exists
        tenant = find_tenant(self.db, tenant_id=tenant_id)

        if not tenant:
            _tenant_not_found()

        #verify the hosts exists and belongs to the tenant
        host = find_host(tenant, host_id=host_id)
        if not host:
            _host_not_found()

        resp.status = falcon.HTTP_200
        resp.body = format_response_body({'host': host.format()})
コード例 #17
0
ファイル: resources.py プロジェクト: dmend/meniscus
    def on_get(self, req, resp, tenant_id, profile_id):
        #verify the tenant exists
        tenant = find_tenant(self.db, tenant_id=tenant_id)

        if not tenant:
            _tenant_not_found()

        #verify the profile exists and belongs to the tenant
        profile = find_host_profile(tenant, profile_id=profile_id)
        if not profile:
            _profile_not_found()

        resp.status = falcon.HTTP_200
        resp.body = format_response_body({'profile': profile.format()})
コード例 #18
0
    def on_head(self, req, resp, tenant_id):

        #get message token, or abort if token is not in header
        message_token = req.get_header(MESSAGE_TOKEN, required=True)

        #verify the tenant exists
        tenant = find_tenant(self.db, tenant_id=tenant_id)

        if not tenant:
            _tenant_not_found()

        if not tenant.token.validate_token(message_token):
            _message_token_is_invalid()

        resp.status = falcon.HTTP_200
コード例 #19
0
ファイル: resources.py プロジェクト: jbenito/meniscus
    def on_head(self, req, resp, tenant_id):

        #get message token, or abort if token is not in header
        message_token = req.get_header(MESSAGE_TOKEN, required=True)

        #verify the tenant exists
        tenant = find_tenant(self.db, tenant_id=tenant_id)

        if not tenant:
            _tenant_not_found()

        if not tenant.token.validate_token(message_token):
            _message_token_is_invalid()

        resp.status = falcon.HTTP_200
コード例 #20
0
    def on_get(self, req, resp, tenant_id, event_producer_id):
        #verify the tenant exists
        tenant = find_tenant(self.db, tenant_id=tenant_id)

        if not tenant:
            _tenant_not_found()

        #verify the event_producer exists and belongs to the tenant
        event_producer = find_event_producer(tenant,
                                             producer_id=event_producer_id)
        if not event_producer:
            _producer_not_found()

        resp.status = falcon.HTTP_200
        resp.body = format_response_body(
            {'event_producer': event_producer.format()})
コード例 #21
0
ファイル: resources.py プロジェクト: jbenito/meniscus
    def on_get(self, req, resp, tenant_id, event_producer_id):
        #verify the tenant exists
        tenant = find_tenant(self.db, tenant_id=tenant_id)

        if not tenant:
            _tenant_not_found()

        #verify the event_producer exists and belongs to the tenant
        event_producer = find_event_producer(tenant,
                                             producer_id=event_producer_id)
        if not event_producer:
            _producer_not_found()

        resp.status = falcon.HTTP_200
        resp.body = format_response_body(
            {'event_producer': event_producer.format()})
コード例 #22
0
ファイル: resources.py プロジェクト: dmend/meniscus
    def on_put(self, req, resp, tenant_id, host_id):
        body = load_body(req)

        self._validate_req_body_on_put(body)

        #verify the tenant exists
        tenant = find_tenant(self.db, tenant_id=tenant_id)

        if not tenant:
            _tenant_not_found()

        #verify the hosts exists and belongs to the tenant
        host = find_host(tenant, host_id=host_id)
        if not host:
            _host_not_found()

        if 'hostname' in body.keys() and host.hostname != body['hostname']:
            # Check if the tenant already has a host with this hostname
            hostname = str(body['hostname'])
            for duplicate_host in tenant.hosts:
                if duplicate_host.hostname == hostname:
                    abort(falcon.HTTP_400,
                          'Host with hostname {0} already exists with'
                          ' id={1}'.format(hostname, duplicate_host.get_id()))
            host.hostname = hostname

        if 'ip_address_v4' in body.keys():
            host.ip_address_v4 = body['ip_address_v4']

        if 'ip_address_v6' in body.keys():
            host.ip_address_v6 = body['ip_address_v6']

        if 'profile_id' in body.keys():
            if body['profile_id']:
                host.profile = int(body['profile_id'])
            else:
                host.profile = None

            if host.profile:
                #verify the profile exists and belongs to the tenant
                profile = find_host_profile(tenant, profile_id=host.profile)
                if not profile:
                    _profile_not_found()

        self.db.update('tenant', tenant.format_for_save())

        resp.status = falcon.HTTP_200
コード例 #23
0
ファイル: resources.py プロジェクト: dmend/meniscus
    def on_put(self, req, resp, tenant_id, profile_id):
        #load the message
        body = load_body(req)

        self._validate_req_body_on_put(body)

        #verify the tenant exists
        tenant = find_tenant(self.db, tenant_id=tenant_id)
        if not tenant:
            _tenant_not_found()

        #verify the profile exists and belongs to the tenant
        profile = find_host_profile(tenant, profile_id=profile_id)
        if not profile:
            _profile_not_found()

        #if attributes are present in message, update the profile
        if 'name' in body.keys() and body['name'] != profile.name:

            #if the tenant already has a profile with this name then abort
            duplicate_profile = find_host_profile(tenant,
                                                  profile_name=body['name'])
            if duplicate_profile:
                abort(falcon.HTTP_400,
                      'Profile with name {0} already exists with id={1}.'
                      .format(duplicate_profile.name,
                              duplicate_profile.get_id()))

            profile.name = body['name']

        if 'event_producer_ids' in body.keys():
            producer_ids = body['event_producer_ids']

            for producer_id in producer_ids:

                #abort if any of the event_producers being passed in are not
                # valid event_producers for this tenant

                if not find_event_producer(tenant, producer_id=producer_id):
                    _producer_not_found()

            #update the list of event_producers
            profile.event_producers = producer_ids

        self.db.update('tenant', tenant.format_for_save())
        resp.status = falcon.HTTP_200
コード例 #24
0
ファイル: resources.py プロジェクト: dmend/meniscus
    def on_delete(self, req, resp, tenant_id, host_id):
        #verify the tenant exists
        tenant = find_tenant(self.db, tenant_id=tenant_id)

        if not tenant:
            _tenant_not_found()

        #verify the hosts exists and belongs to the tenant
        host = find_host(tenant, host_id=host_id)
        if not host:
            _host_not_found()

        #delete the host
        tenant.hosts.remove(host)
        self.db.update('tenant', tenant.format_for_save())

        resp.status = falcon.HTTP_200
コード例 #25
0
    def on_put(self, req, resp, tenant_id, event_producer_id, validated_body):

        body = validated_body['event_producer']

        #verify the tenant exists
        tenant = find_tenant(self.db, tenant_id=tenant_id)

        if not tenant:
            _tenant_not_found()

        #verify the event_producer exists and belongs to the tenant
        event_producer = find_event_producer(tenant,
                                             producer_id=event_producer_id)
        if not event_producer:
            _producer_not_found()

        #if a key is present, update the event_producer with the value
        if 'name' in body.keys() and event_producer.name != body['name']:
            #if the tenant already has a profile with this name then abort
            duplicate_producer = \
                find_event_producer(tenant,  producer_name=body['name'])
            if duplicate_producer:
                abort(
                    falcon.HTTP_400,
                    'EventProducer with name {0} already exists with id={1}.'.
                    format(duplicate_producer.name,
                           duplicate_producer.get_id()))
            event_producer.name = body['name']

        if 'pattern' in body:
            event_producer.pattern = str(body['pattern'])

        if 'durable' in body:
            event_producer.durable = body['durable']

        if 'encrypted' in body:
            event_producer.encrypted = body['encrypted']

        if 'sinks' in body:
            event_producer.sinks = body['sinks']

        self.db.update('tenant', tenant.format_for_save())

        resp.status = falcon.HTTP_200
コード例 #26
0
ファイル: resources.py プロジェクト: dmend/meniscus
    def on_post(self, req, resp, tenant_id):
        body = load_body(req)

        self._validate_req_body_on_post(body)

        tenant = find_tenant(self.db, tenant_id=tenant_id)

        if not tenant:
            _tenant_not_found()

        profile_name = body['name']

        # Check if the tenant already has a profile with this name
        profile = find_host_profile(tenant, profile_name=profile_name)
        if profile:
            abort(falcon.HTTP_400,
                  'Profile with name {0} already exists with id={1}.'
                  .format(profile.name, profile.get_id()))

        # Create the new profile for the host
        new_host_profile = HostProfile(
            self.db.next_sequence_value(tenant.tenant_id), profile_name)

        if 'event_producer_ids' in body.keys():
            producer_ids = body['event_producer_ids']

            for producer_id in producer_ids:

                #abort if any of the event_producers being passed in are not
                # valid event_producers for this tenant
                if not find_event_producer(tenant, producer_id=producer_id):
                    _producer_not_found()

            #update the list of event_producers
            new_host_profile.event_producers = producer_ids

        tenant.profiles.append(new_host_profile)
        self.db.update('tenant', tenant.format_for_save())

        resp.status = falcon.HTTP_201
        resp.set_header('Location',
                        '/v1/{0}/profiles/{1}'
                        .format(tenant_id, new_host_profile.get_id()))
コード例 #27
0
ファイル: resources.py プロジェクト: jbenito/meniscus
    def on_delete(self, req, resp, tenant_id, event_producer_id):
        #verify the tenant exists
        tenant = find_tenant(self.db, tenant_id=tenant_id)

        if not tenant:
            _tenant_not_found()

        #verify the event_producer exists and belongs to the tenant
        event_producer = find_event_producer(tenant,
                                             producer_id=event_producer_id)
        if not event_producer:
            _producer_not_found()

        #remove any references to the event producer being deleted
        tenant.event_producers.remove(event_producer)

        self.db.update('tenant', tenant.format_for_save())

        resp.status = falcon.HTTP_200
コード例 #28
0
ファイル: resources.py プロジェクト: jbenito/meniscus
    def on_put(self, req, resp, tenant_id, event_producer_id, validated_body):

        body = validated_body['event_producer']

        #verify the tenant exists
        tenant = find_tenant(self.db, tenant_id=tenant_id)

        if not tenant:
            _tenant_not_found()

        #verify the event_producer exists and belongs to the tenant
        event_producer = find_event_producer(tenant,
                                             producer_id=event_producer_id)
        if not event_producer:
            _producer_not_found()

        #if a key is present, update the event_producer with the value
        if 'name' in body.keys() and event_producer.name != body['name']:
            #if the tenant already has a profile with this name then abort
            duplicate_producer = \
                find_event_producer(tenant,  producer_name=body['name'])
            if duplicate_producer:
                abort(falcon.HTTP_400,
                      'EventProducer with name {0} already exists with id={1}.'
                      .format(duplicate_producer.name,
                              duplicate_producer.get_id()))
            event_producer.name = body['name']

        if 'pattern' in body:
            event_producer.pattern = str(body['pattern'])

        if 'durable' in body:
            event_producer.durable = body['durable']

        if 'encrypted' in body:
            event_producer.encrypted = body['encrypted']

        if 'sinks' in body:
            event_producer.sinks = body['sinks']

        self.db.update('tenant', tenant.format_for_save())

        resp.status = falcon.HTTP_200
コード例 #29
0
    def on_delete(self, req, resp, tenant_id, event_producer_id):
        #verify the tenant exists
        tenant = find_tenant(self.db, tenant_id=tenant_id)

        if not tenant:
            _tenant_not_found()

        #verify the event_producer exists and belongs to the tenant
        event_producer = find_event_producer(tenant,
                                             producer_id=event_producer_id)
        if not event_producer:
            _producer_not_found()

        #remove any references to the event producer being deleted
        tenant.event_producers.remove(event_producer)

        self.db.update('tenant', tenant.format_for_save())

        resp.status = falcon.HTTP_200
コード例 #30
0
ファイル: resources.py プロジェクト: jbenito/meniscus
    def on_post(self, req, resp, validated_body):

        body = validated_body['tenant']
        tenant_id = str(body['tenant_id'])

        tenant_name = body.get('tenant_name', tenant_id)

        #validate that tenant does not already exists
        tenant = find_tenant(self.db, tenant_id=tenant_id)
        if tenant:
            abort(falcon.HTTP_400, 'Tenant with tenant_id {0} '
                  'already exists'.format(tenant_id))

        #create new token for the tenant
        new_token = Token()
        new_tenant = Tenant(tenant_id, new_token, tenant_name=tenant_name)

        self.db.put('tenant', new_tenant.format())
        self.db.create_sequence(new_tenant.tenant_id)
        resp.status = falcon.HTTP_201
        resp.set_header('Location', '/v1/{0}'.format(tenant_id))
コード例 #31
0
ファイル: resources.py プロジェクト: dmend/meniscus
    def on_delete(self, req, resp, tenant_id, profile_id):
        #verify the tenant exists
        tenant = find_tenant(self.db, tenant_id=tenant_id)

        if not tenant:
            _tenant_not_found()

        #verify the profile exists and belongs to the tenant
        profile = find_host_profile(tenant, profile_id=profile_id)
        if not profile:
            _profile_not_found()

        #remove any references to the profile being deleted
        tenant.profiles.remove(profile)
        for host in tenant.hosts:
            if host.profile == profile.get_id():
                host.profile = None

        self.db.update('tenant', tenant.format_for_save())

        resp.status = falcon.HTTP_200
コード例 #32
0
    def on_post(self, req, resp, validated_body):

        body = validated_body['tenant']
        tenant_id = str(body['tenant_id'])

        tenant_name = body.get('tenant_name', tenant_id)

        #validate that tenant does not already exists
        tenant = find_tenant(self.db, tenant_id=tenant_id)
        if tenant:
            abort(
                falcon.HTTP_400, 'Tenant with tenant_id {0} '
                'already exists'.format(tenant_id))

        #create new token for the tenant
        new_token = Token()
        new_tenant = Tenant(tenant_id, new_token, tenant_name=tenant_name)

        self.db.put('tenant', new_tenant.format())
        self.db.create_sequence(new_tenant.tenant_id)
        resp.status = falcon.HTTP_201
        resp.set_header('Location', '/v1/{0}'.format(tenant_id))
コード例 #33
0
    def on_post(self, req, resp, tenant_id, validated_body):

        body = validated_body['token']

        #verify the tenant exists
        tenant = find_tenant(self.db, tenant_id=tenant_id)

        if not tenant:
            _tenant_not_found()

        invalidate_now = body['invalidate_now']

        if invalidate_now:
            #immediately invalidate the token
            tenant.token.reset_token_now()

        else:
            self._validate_token_min_time_limit_reached(tenant.token)
            tenant.token.reset_token()

        self.db.update('tenant', tenant.format_for_save())

        resp.status = falcon.HTTP_203
        resp.set_header('Location', '/v1/{0}/token'.format(tenant_id))
コード例 #34
0
ファイル: resources.py プロジェクト: jbenito/meniscus
    def on_post(self, req, resp, tenant_id, validated_body):

        body = validated_body['token']

        #verify the tenant exists
        tenant = find_tenant(self.db, tenant_id=tenant_id)

        if not tenant:
            _tenant_not_found()

        invalidate_now = body['invalidate_now']

        if invalidate_now:
            #immediately invalidate the token
            tenant.token.reset_token_now()

        else:
            self._validate_token_min_time_limit_reached(tenant.token)
            tenant.token.reset_token()

        self.db.update('tenant', tenant.format_for_save())

        resp.status = falcon.HTTP_203
        resp.set_header('Location', '/v1/{0}/token'.format(tenant_id))
コード例 #35
0
ファイル: util_test.py プロジェクト: thomdixon/meniscus
 def test_find_tenant_returns_none(self):
     tenant = find_tenant(self.ds_handler_empty, '12345')
     self.assertEquals(tenant, None)
コード例 #36
0
ファイル: util_test.py プロジェクト: thomdixon/meniscus
 def test_find_tenant_returns_instance(self):
     tenant = find_tenant(self.ds_handler, '12345')
     self.assertIsInstance(tenant, Tenant)
コード例 #37
0
ファイル: util_test.py プロジェクト: dmend/meniscus
 def test_find_host_by_id_returns_none(self):
     tenant = find_tenant(self.ds_handler, '12345')
     host = find_host(tenant, host_id=130)
     self.assertEquals(host, None)
コード例 #38
0
ファイル: util_test.py プロジェクト: dmend/meniscus
 def test_find_host_by_id_returns_instance(self):
     tenant = find_tenant(self.ds_handler, '12345')
     host = find_host(tenant, host_id=121)
     self.assertIsInstance(host, Host)
コード例 #39
0
ファイル: util_test.py プロジェクト: dmend/meniscus
 def test_find_tenant_returns_none(self):
     tenant = find_tenant(self.ds_handler_empty, '12345')
     self.assertEquals(tenant, None)
コード例 #40
0
ファイル: util_test.py プロジェクト: dmend/meniscus
 def test_find_tenant_returns_instance(self):
     tenant = find_tenant(self.ds_handler, '12345')
     self.assertIsInstance(tenant, Tenant)
コード例 #41
0
ファイル: util_test.py プロジェクト: dmend/meniscus
 def test_find_event_producer_by_name_returns_none(self):
     tenant = find_tenant(self.ds_handler, '12345')
     producer = find_event_producer(tenant, producer_name='not_name')
     self.assertEquals(producer, None)
コード例 #42
0
ファイル: util_test.py プロジェクト: dmend/meniscus
 def test_find_event_producer_by_name_returns_instance(self):
     tenant = find_tenant(self.ds_handler, '12345')
     producer = find_event_producer(tenant, producer_name='system.auth')
     self.assertIsInstance(producer, EventProducer)
コード例 #43
0
ファイル: util_test.py プロジェクト: thomdixon/meniscus
 def test_find_event_producer_by_name_returns_instance(self):
     tenant = find_tenant(self.ds_handler, '12345')
     producer = find_event_producer(tenant, producer_name='system.auth')
     self.assertIsInstance(producer, EventProducer)
コード例 #44
0
ファイル: util_test.py プロジェクト: thomdixon/meniscus
 def test_find_event_producer_by_id_returns_instance(self):
     tenant = find_tenant(self.ds_handler, '12345')
     producer = find_event_producer(tenant, producer_id=123)
     self.assertIsInstance(producer, EventProducer)
コード例 #45
0
ファイル: util_test.py プロジェクト: thomdixon/meniscus
 def test_find_event_producer_by_id_returns_none(self):
     tenant = find_tenant(self.ds_handler, '12345')
     producer = find_event_producer(tenant, producer_id=130)
     self.assertEquals(producer, None)
コード例 #46
0
ファイル: util_test.py プロジェクト: dmend/meniscus
 def test_find_event_producer_by_id_returns_instance(self):
     tenant = find_tenant(self.ds_handler, '12345')
     producer = find_event_producer(tenant, producer_id=123)
     self.assertIsInstance(producer, EventProducer)
コード例 #47
0
ファイル: util_test.py プロジェクト: thomdixon/meniscus
 def test_find_event_producer_by_name_returns_none(self):
     tenant = find_tenant(self.ds_handler, '12345')
     producer = find_event_producer(tenant, producer_name='not_name')
     self.assertEquals(producer, None)
コード例 #48
0
ファイル: util_test.py プロジェクト: dmend/meniscus
 def test_find_event_producer_by_id_returns_none(self):
     tenant = find_tenant(self.ds_handler, '12345')
     producer = find_event_producer(tenant, producer_id=130)
     self.assertEquals(producer, None)