예제 #1
0
def the_monitored_resource_with_id_and_type(step, id, type):
    world.entity_id = prepare_param(id)
    world.entity_type = prepare_param(type)
예제 #2
0
def the_header_correlator(step, correlator):
    world.correlator = prepare_param(correlator)
    world.ngsi_adapter_client.init_headers(correlator=world.correlator)
예제 #3
0
def the_parser(step, probe_name, parser_name):
    world.probe = prepare_param(probe_name)
    world.parser = prepare_param(parser_name)
예제 #4
0
def the_probe_name(step, probe_name):
    world.probe = prepare_param(probe_name)
예제 #5
0
def the_monitored_resource_with_id_and_type(step, id, type):
    world.entity_id = prepare_param(id)
    world.entity_type = prepare_param(type)
예제 #6
0
def the_probe_name(step, probe_name):
    world.probe = prepare_param(probe_name)
예제 #7
0
def the_parser(step, probe_name, parser_name):
    world.probe = prepare_param(probe_name)
    world.parser = prepare_param(parser_name)
예제 #8
0
def the_header_transaction_id(step, transaction_id):
    world.transaction_id = prepare_param(transaction_id)
    world.ngsi_adapter_client.init_headers(transaction_id=world.transaction_id)
예제 #9
0
def the_header_correlator(step, correlator):
    world.correlator = prepare_param(correlator)
    world.ngsi_adapter_client.init_headers(correlator=world.correlator,
                                           auth_token=world.auth_token)