Edit

kc3-lang/libevent/test/regress_rpc.c

Branch :

  • Show log

    Commit

  • Author : Nick Mathewson
    Date : 2012-02-29 15:07:32
    Hash : cb9da0bf
    Message : Fix all identifiers with names beginning with underscore. These are reserved in C. We'd been erroneously using them to indicate internal use. Instead, we now use a trailing underscore whenever we'd been using a leading underscore. This is an automatic conversion. The script that produced was made by running the following script over the output of git ls-tree -r --name-only HEAD | grep '\.[ch]$' | \ xargs ctags --c-kinds=defglmpstuvx -o - | grep '^_' | \ cut -f 1 | sort| uniq (GNU ctags was required.) ===== #!/usr/bin/perl -w -n use strict; BEGIN { print "#!/usr/bin/perl -w -i -p\n\n"; } chomp; next if (/^__func__/ or /^_FILE_OFFSET_BITS/ or /^_FORTIFY_SOURCE/ or /^_GNU_SOURCE/ or /^_WIN32/ or /^_DARWIN_UNLIMITED/ or /^_FILE_OFFSET_BITS/ or /^_LARGEFILE64_SOURCE/ or /^_LFS64_LARGEFILE/ or /^__cdecl/ or /^__attribute__/ or /^__func__/ or /^_SYS_TREE_H_/); my $ident = $_; my $better = $ident; $better =~ s/^_//; if ($ident !~ /EVENT_LOG_/) { $better = "${better}_"; } print "s/(?<![A-Za-z0-9_])$ident(?![A-Za-z0-9_])/$better/g;\n"; === And then running the script below that it generated over all === the .c and .h files again #!/usr/bin/perl -w -i -p s/(?<![A-Za-z0-9_])_ARC4_LOCK(?![A-Za-z0-9_])/ARC4_LOCK_/g; s/(?<![A-Za-z0-9_])_ARC4_UNLOCK(?![A-Za-z0-9_])/ARC4_UNLOCK_/g; s/(?<![A-Za-z0-9_])_bev_group_random_element(?![A-Za-z0-9_])/bev_group_random_element_/g; s/(?<![A-Za-z0-9_])_bev_group_refill_callback(?![A-Za-z0-9_])/bev_group_refill_callback_/g; s/(?<![A-Za-z0-9_])_bev_group_suspend_reading(?![A-Za-z0-9_])/bev_group_suspend_reading_/g; s/(?<![A-Za-z0-9_])_bev_group_suspend_writing(?![A-Za-z0-9_])/bev_group_suspend_writing_/g; s/(?<![A-Za-z0-9_])_bev_group_unsuspend_reading(?![A-Za-z0-9_])/bev_group_unsuspend_reading_/g; s/(?<![A-Za-z0-9_])_bev_group_unsuspend_writing(?![A-Za-z0-9_])/bev_group_unsuspend_writing_/g; s/(?<![A-Za-z0-9_])_bev_refill_callback(?![A-Za-z0-9_])/bev_refill_callback_/g; s/(?<![A-Za-z0-9_])_bufferevent_add_event(?![A-Za-z0-9_])/bufferevent_add_event_/g; s/(?<![A-Za-z0-9_])_bufferevent_cancel_all(?![A-Za-z0-9_])/bufferevent_cancel_all_/g; s/(?<![A-Za-z0-9_])_bufferevent_decref_and_unlock(?![A-Za-z0-9_])/bufferevent_decref_and_unlock_/g; s/(?<![A-Za-z0-9_])_bufferevent_decrement_read_buckets(?![A-Za-z0-9_])/bufferevent_decrement_read_buckets_/g; s/(?<![A-Za-z0-9_])_bufferevent_decrement_write_buckets(?![A-Za-z0-9_])/bufferevent_decrement_write_buckets_/g; s/(?<![A-Za-z0-9_])_bufferevent_del_generic_timeout_cbs(?![A-Za-z0-9_])/bufferevent_del_generic_timeout_cbs_/g; s/(?<![A-Za-z0-9_])_bufferevent_generic_adj_timeouts(?![A-Za-z0-9_])/bufferevent_generic_adj_timeouts_/g; s/(?<![A-Za-z0-9_])_bufferevent_get_read_max(?![A-Za-z0-9_])/bufferevent_get_read_max_/g; s/(?<![A-Za-z0-9_])_bufferevent_get_rlim_max(?![A-Za-z0-9_])/bufferevent_get_rlim_max_/g; s/(?<![A-Za-z0-9_])_bufferevent_get_write_max(?![A-Za-z0-9_])/bufferevent_get_write_max_/g; s/(?<![A-Za-z0-9_])_bufferevent_incref_and_lock(?![A-Za-z0-9_])/bufferevent_incref_and_lock_/g; s/(?<![A-Za-z0-9_])_bufferevent_init_generic_timeout_cbs(?![A-Za-z0-9_])/bufferevent_init_generic_timeout_cbs_/g; s/(?<![A-Za-z0-9_])_bufferevent_ratelim_init(?![A-Za-z0-9_])/bufferevent_ratelim_init_/g; s/(?<![A-Za-z0-9_])_bufferevent_run_eventcb(?![A-Za-z0-9_])/bufferevent_run_eventcb_/g; s/(?<![A-Za-z0-9_])_bufferevent_run_readcb(?![A-Za-z0-9_])/bufferevent_run_readcb_/g; s/(?<![A-Za-z0-9_])_bufferevent_run_writecb(?![A-Za-z0-9_])/bufferevent_run_writecb_/g; s/(?<![A-Za-z0-9_])_ev(?![A-Za-z0-9_])/ev_/g; s/(?<![A-Za-z0-9_])_evbuffer_chain_pin(?![A-Za-z0-9_])/evbuffer_chain_pin_/g; s/(?<![A-Za-z0-9_])_evbuffer_chain_unpin(?![A-Za-z0-9_])/evbuffer_chain_unpin_/g; s/(?<![A-Za-z0-9_])_evbuffer_decref_and_unlock(?![A-Za-z0-9_])/evbuffer_decref_and_unlock_/g; s/(?<![A-Za-z0-9_])_evbuffer_expand_fast(?![A-Za-z0-9_])/evbuffer_expand_fast_/g; s/(?<![A-Za-z0-9_])_evbuffer_incref(?![A-Za-z0-9_])/evbuffer_incref_/g; s/(?<![A-Za-z0-9_])_evbuffer_incref_and_lock(?![A-Za-z0-9_])/evbuffer_incref_and_lock_/g; s/(?<![A-Za-z0-9_])_EVBUFFER_IOVEC_IS_NATIVE(?![A-Za-z0-9_])/EVBUFFER_IOVEC_IS_NATIVE_/g; s/(?<![A-Za-z0-9_])_evbuffer_overlapped_get_fd(?![A-Za-z0-9_])/evbuffer_overlapped_get_fd_/g; s/(?<![A-Za-z0-9_])_evbuffer_overlapped_set_fd(?![A-Za-z0-9_])/evbuffer_overlapped_set_fd_/g; s/(?<![A-Za-z0-9_])_evbuffer_read_setup_vecs(?![A-Za-z0-9_])/evbuffer_read_setup_vecs_/g; s/(?<![A-Za-z0-9_])_evbuffer_validate(?![A-Za-z0-9_])/evbuffer_validate_/g; s/(?<![A-Za-z0-9_])_evdns_log(?![A-Za-z0-9_])/evdns_log_/g; s/(?<![A-Za-z0-9_])_evdns_nameserver_add_impl(?![A-Za-z0-9_])/evdns_nameserver_add_impl_/g; s/(?<![A-Za-z0-9_])_EVENT_CONFIG_H_(?![A-Za-z0-9_])/EVENT_CONFIG_H__/g; s/(?<![A-Za-z0-9_])_event_debug_assert_is_setup(?![A-Za-z0-9_])/event_debug_assert_is_setup_/g; s/(?<![A-Za-z0-9_])_event_debug_assert_not_added(?![A-Za-z0-9_])/event_debug_assert_not_added_/g; s/(?<![A-Za-z0-9_])_event_debug_get_logging_mask(?![A-Za-z0-9_])/event_debug_get_logging_mask_/g; s/(?<![A-Za-z0-9_])_event_debug_logging_mask(?![A-Za-z0-9_])/event_debug_logging_mask_/g; s/(?<![A-Za-z0-9_])_event_debug_map_lock(?![A-Za-z0-9_])/event_debug_map_lock_/g; s/(?<![A-Za-z0-9_])_event_debug_mode_on(?![A-Za-z0-9_])/event_debug_mode_on_/g; s/(?<![A-Za-z0-9_])_event_debug_note_add(?![A-Za-z0-9_])/event_debug_note_add_/g; s/(?<![A-Za-z0-9_])_event_debug_note_del(?![A-Za-z0-9_])/event_debug_note_del_/g; s/(?<![A-Za-z0-9_])_event_debug_note_setup(?![A-Za-z0-9_])/event_debug_note_setup_/g; s/(?<![A-Za-z0-9_])_event_debug_note_teardown(?![A-Za-z0-9_])/event_debug_note_teardown_/g; s/(?<![A-Za-z0-9_])_event_debugx(?![A-Za-z0-9_])/event_debugx_/g; s/(?<![A-Za-z0-9_])_EVENT_DEFINED_LISTENTRY(?![A-Za-z0-9_])/EVENT_DEFINED_LISTENTRY_/g; s/(?<![A-Za-z0-9_])_EVENT_DEFINED_TQENTRY(?![A-Za-z0-9_])/EVENT_DEFINED_TQENTRY_/g; s/(?<![A-Za-z0-9_])_EVENT_DEFINED_TQHEAD(?![A-Za-z0-9_])/EVENT_DEFINED_TQHEAD_/g; s/(?<![A-Za-z0-9_])_EVENT_DNS_USE_FTIME_FOR_ID(?![A-Za-z0-9_])/EVENT_DNS_USE_FTIME_FOR_ID_/g; s/(?<![A-Za-z0-9_])_EVENT_ERR_ABORT(?![A-Za-z0-9_])/EVENT_ERR_ABORT_/g; s/(?<![A-Za-z0-9_])_EVENT_EVCONFIG__PRIVATE_H(?![A-Za-z0-9_])/EVENT_EVCONFIG__PRIVATE_H_/g; s/(?<![A-Za-z0-9_])_event_iocp_port_unlock_and_free(?![A-Za-z0-9_])/event_iocp_port_unlock_and_free_/g; s/(?<![A-Za-z0-9_])_EVENT_LOG_DEBUG(?![A-Za-z0-9_])/EVENT_LOG_DEBUG/g; s/(?<![A-Za-z0-9_])_EVENT_LOG_ERR(?![A-Za-z0-9_])/EVENT_LOG_ERR/g; s/(?<![A-Za-z0-9_])_EVENT_LOG_MSG(?![A-Za-z0-9_])/EVENT_LOG_MSG/g; s/(?<![A-Za-z0-9_])_EVENT_LOG_WARN(?![A-Za-z0-9_])/EVENT_LOG_WARN/g; s/(?<![A-Za-z0-9_])_event_strlcpy(?![A-Za-z0-9_])/event_strlcpy_/g; s/(?<![A-Za-z0-9_])_EVHTTP_REQ_UNKNOWN(?![A-Za-z0-9_])/EVHTTP_REQ_UNKNOWN_/g; s/(?<![A-Za-z0-9_])_EVLOCK_SORTLOCKS(?![A-Za-z0-9_])/EVLOCK_SORTLOCKS_/g; s/(?<![A-Za-z0-9_])_evrpc_hooks(?![A-Za-z0-9_])/evrpc_hooks_/g; s/(?<![A-Za-z0-9_])_evsig_restore_handler(?![A-Za-z0-9_])/evsig_restore_handler_/g; s/(?<![A-Za-z0-9_])_evsig_set_handler(?![A-Za-z0-9_])/evsig_set_handler_/g; s/(?<![A-Za-z0-9_])_evthread_cond_fns(?![A-Za-z0-9_])/evthread_cond_fns_/g; s/(?<![A-Za-z0-9_])_evthread_debug_get_real_lock(?![A-Za-z0-9_])/evthread_debug_get_real_lock_/g; s/(?<![A-Za-z0-9_])_evthread_id_fn(?![A-Za-z0-9_])/evthread_id_fn_/g; s/(?<![A-Za-z0-9_])_evthreadimpl_cond_alloc(?![A-Za-z0-9_])/evthreadimpl_cond_alloc_/g; s/(?<![A-Za-z0-9_])_evthreadimpl_cond_free(?![A-Za-z0-9_])/evthreadimpl_cond_free_/g; s/(?<![A-Za-z0-9_])_evthreadimpl_cond_signal(?![A-Za-z0-9_])/evthreadimpl_cond_signal_/g; s/(?<![A-Za-z0-9_])_evthreadimpl_cond_wait(?![A-Za-z0-9_])/evthreadimpl_cond_wait_/g; s/(?<![A-Za-z0-9_])_evthreadimpl_get_id(?![A-Za-z0-9_])/evthreadimpl_get_id_/g; s/(?<![A-Za-z0-9_])_evthreadimpl_is_lock_debugging_enabled(?![A-Za-z0-9_])/evthreadimpl_is_lock_debugging_enabled_/g; s/(?<![A-Za-z0-9_])_evthreadimpl_lock_alloc(?![A-Za-z0-9_])/evthreadimpl_lock_alloc_/g; s/(?<![A-Za-z0-9_])_evthreadimpl_lock_free(?![A-Za-z0-9_])/evthreadimpl_lock_free_/g; s/(?<![A-Za-z0-9_])_evthreadimpl_locking_enabled(?![A-Za-z0-9_])/evthreadimpl_locking_enabled_/g; s/(?<![A-Za-z0-9_])_evthreadimpl_lock_lock(?![A-Za-z0-9_])/evthreadimpl_lock_lock_/g; s/(?<![A-Za-z0-9_])_evthreadimpl_lock_unlock(?![A-Za-z0-9_])/evthreadimpl_lock_unlock_/g; s/(?<![A-Za-z0-9_])_evthread_is_debug_lock_held(?![A-Za-z0-9_])/evthread_is_debug_lock_held_/g; s/(?<![A-Za-z0-9_])_evthread_lock_debugging_enabled(?![A-Za-z0-9_])/evthread_lock_debugging_enabled_/g; s/(?<![A-Za-z0-9_])_evthread_lock_fns(?![A-Za-z0-9_])/evthread_lock_fns_/g; s/(?<![A-Za-z0-9_])_EVUTIL_NIL_CONDITION(?![A-Za-z0-9_])/EVUTIL_NIL_CONDITION_/g; s/(?<![A-Za-z0-9_])_EVUTIL_NIL_STMT(?![A-Za-z0-9_])/EVUTIL_NIL_STMT_/g; s/(?<![A-Za-z0-9_])_evutil_weakrand(?![A-Za-z0-9_])/evutil_weakrand_/g; s/(?<![A-Za-z0-9_])_http_close_detection(?![A-Za-z0-9_])/http_close_detection_/g; s/(?<![A-Za-z0-9_])_http_connection_test(?![A-Za-z0-9_])/http_connection_test_/g; s/(?<![A-Za-z0-9_])_http_incomplete_test(?![A-Za-z0-9_])/http_incomplete_test_/g; s/(?<![A-Za-z0-9_])_http_stream_in_test(?![A-Za-z0-9_])/http_stream_in_test_/g; s/(?<![A-Za-z0-9_])_internal(?![A-Za-z0-9_])/internal_/g; s/(?<![A-Za-z0-9_])_mm_free_fn(?![A-Za-z0-9_])/mm_free_fn_/g; s/(?<![A-Za-z0-9_])_mm_malloc_fn(?![A-Za-z0-9_])/mm_malloc_fn_/g; s/(?<![A-Za-z0-9_])_mm_realloc_fn(?![A-Za-z0-9_])/mm_realloc_fn_/g; s/(?<![A-Za-z0-9_])_original_cond_fns(?![A-Za-z0-9_])/original_cond_fns_/g; s/(?<![A-Za-z0-9_])_original_lock_fns(?![A-Za-z0-9_])/original_lock_fns_/g; s/(?<![A-Za-z0-9_])_rpc_hook_ctx(?![A-Za-z0-9_])/rpc_hook_ctx_/g; s/(?<![A-Za-z0-9_])_SYS_QUEUE_H_(?![A-Za-z0-9_])/SYS_QUEUE_H__/g; s/(?<![A-Za-z0-9_])_t(?![A-Za-z0-9_])/t_/g; s/(?<![A-Za-z0-9_])_t32(?![A-Za-z0-9_])/t32_/g; s/(?<![A-Za-z0-9_])_test_ai_eq(?![A-Za-z0-9_])/test_ai_eq_/g; s/(?<![A-Za-z0-9_])_URI_ADD(?![A-Za-z0-9_])/URI_ADD_/g; s/(?<![A-Za-z0-9_])_URI_FREE_STR(?![A-Za-z0-9_])/URI_FREE_STR_/g; s/(?<![A-Za-z0-9_])_URI_SET_STR(?![A-Za-z0-9_])/URI_SET_STR_/g; s/(?<![A-Za-z0-9_])_warn_helper(?![A-Za-z0-9_])/warn_helper_/g;

  • test/regress_rpc.c
  • /*
     * Copyright (c) 2003-2007 Niels Provos <provos@citi.umich.edu>
     * Copyright (c) 2007-2012 Niels Provos and Nick Mathewson
     *
     * Redistribution and use in source and binary forms, with or without
     * modification, are permitted provided that the following conditions
     * are met:
     * 1. Redistributions of source code must retain the above copyright
     *    notice, this list of conditions and the following disclaimer.
     * 2. Redistributions in binary form must reproduce the above copyright
     *    notice, this list of conditions and the following disclaimer in the
     *    documentation and/or other materials provided with the distribution.
     * 3. The name of the author may not be used to endorse or promote products
     *    derived from this software without specific prior written permission.
     *
     * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     */
    
    /* The old tests here need assertions to work. */
    #undef NDEBUG
    
    #ifdef _WIN32
    #include <winsock2.h>
    #include <windows.h>
    #endif
    
    #include "event2/event-config.h"
    
    #include <sys/types.h>
    #include <sys/stat.h>
    #ifdef EVENT__HAVE_SYS_TIME_H
    #include <sys/time.h>
    #endif
    #include <sys/queue.h>
    #ifndef _WIN32
    #include <sys/socket.h>
    #include <signal.h>
    #include <unistd.h>
    #include <netdb.h>
    #endif
    #include <fcntl.h>
    #include <stdlib.h>
    #include <stdio.h>
    #include <string.h>
    #include <errno.h>
    #include <assert.h>
    
    #include "event2/buffer.h"
    #include "event2/event.h"
    #include "event2/event_compat.h"
    #include "event2/http.h"
    #include "event2/http_compat.h"
    #include "event2/http_struct.h"
    #include "event2/rpc.h"
    #include "event2/rpc.h"
    #include "event2/rpc_struct.h"
    #include "event2/tag.h"
    #include "log-internal.h"
    
    #include "regress.gen.h"
    
    #include "regress.h"
    #include "regress_testutils.h"
    
    #ifndef NO_PYTHON_EXISTS
    
    static struct evhttp *
    http_setup(ev_uint16_t *pport)
    {
    	struct evhttp *myhttp;
    	ev_uint16_t port;
    	struct evhttp_bound_socket *sock;
    
    	myhttp = evhttp_new(NULL);
    	if (!myhttp)
    		event_errx(1, "Could not start web server");
    
    	/* Try a few different ports */
    	sock = evhttp_bind_socket_with_handle(myhttp, "127.0.0.1", 0);
    	if (!sock)
    		event_errx(1, "Couldn't open web port");
    
    	port = regress_get_socket_port(evhttp_bound_socket_get_fd(sock));
    
    	*pport = port;
    	return (myhttp);
    }
    
    EVRPC_HEADER(Message, msg, kill)
    EVRPC_HEADER(NeverReply, msg, kill)
    
    EVRPC_GENERATE(Message, msg, kill)
    EVRPC_GENERATE(NeverReply, msg, kill)
    
    static int need_input_hook = 0;
    static int need_output_hook = 0;
    
    static void
    MessageCb(EVRPC_STRUCT(Message)* rpc, void *arg)
    {
    	struct kill* kill_reply = rpc->reply;
    
    	if (need_input_hook) {
    		struct evhttp_request* req = EVRPC_REQUEST_HTTP(rpc);
    		const char *header = evhttp_find_header(
    			req->input_headers, "X-Hook");
    		assert(strcmp(header, "input") == 0);
    	}
    
    	/* we just want to fill in some non-sense */
    	EVTAG_ASSIGN(kill_reply, weapon, "dagger");
    	EVTAG_ASSIGN(kill_reply, action, "wave around like an idiot");
    
    	/* no reply to the RPC */
    	EVRPC_REQUEST_DONE(rpc);
    }
    
    static EVRPC_STRUCT(NeverReply) *saved_rpc;
    
    static void
    NeverReplyCb(EVRPC_STRUCT(NeverReply)* rpc, void *arg)
    {
    	test_ok += 1;
    	saved_rpc = rpc;
    }
    
    static void
    rpc_setup(struct evhttp **phttp, ev_uint16_t *pport, struct evrpc_base **pbase)
    {
    	ev_uint16_t port;
    	struct evhttp *http = NULL;
    	struct evrpc_base *base = NULL;
    
    	http = http_setup(&port);
    	base = evrpc_init(http);
    
    	EVRPC_REGISTER(base, Message, msg, kill, MessageCb, NULL);
    	EVRPC_REGISTER(base, NeverReply, msg, kill, NeverReplyCb, NULL);
    
    	*phttp = http;
    	*pport = port;
    	*pbase = base;
    
    	need_input_hook = 0;
    	need_output_hook = 0;
    }
    
    static void
    rpc_teardown(struct evrpc_base *base)
    {
    	assert(EVRPC_UNREGISTER(base, Message) == 0);
    	assert(EVRPC_UNREGISTER(base, NeverReply) == 0);
    
    	evrpc_free(base);
    }
    
    static void
    rpc_postrequest_failure(struct evhttp_request *req, void *arg)
    {
    	if (req->response_code != HTTP_SERVUNAVAIL) {
    
    		fprintf(stderr, "FAILED (response code)\n");
    		exit(1);
    	}
    
    	test_ok = 1;
    	event_loopexit(NULL);
    }
    
    /*
     * Test a malformed payload submitted as an RPC
     */
    
    static void
    rpc_basic_test(void)
    {
    	ev_uint16_t port;
    	struct evhttp *http = NULL;
    	struct evrpc_base *base = NULL;
    	struct evhttp_connection *evcon = NULL;
    	struct evhttp_request *req = NULL;
    
    	rpc_setup(&http, &port, &base);
    
    	evcon = evhttp_connection_new("127.0.0.1", port);
    	tt_assert(evcon);
    
    	/*
    	 * At this point, we want to schedule an HTTP POST request
    	 * server using our make request method.
    	 */
    
    	req = evhttp_request_new(rpc_postrequest_failure, NULL);
    	tt_assert(req);
    
    	/* Add the information that we care about */
    	evhttp_add_header(req->output_headers, "Host", "somehost");
    	evbuffer_add_printf(req->output_buffer, "Some Nonsense");
    
    	if (evhttp_make_request(evcon, req,
    		EVHTTP_REQ_POST,
    		"/.rpc.Message") == -1) {
    		tt_abort();
    	}
    
    	test_ok = 0;
    
    	event_dispatch();
    
    	evhttp_connection_free(evcon);
    
    	rpc_teardown(base);
    
    	tt_assert(test_ok == 1);
    
    end:
    	evhttp_free(http);
    }
    
    static void
    rpc_postrequest_done(struct evhttp_request *req, void *arg)
    {
    	struct kill* kill_reply = NULL;
    
    	if (req->response_code != HTTP_OK) {
    		fprintf(stderr, "FAILED (response code)\n");
    		exit(1);
    	}
    
    	kill_reply = kill_new();
    
    	if ((kill_unmarshal(kill_reply, req->input_buffer)) == -1) {
    		fprintf(stderr, "FAILED (unmarshal)\n");
    		exit(1);
    	}
    
    	kill_free(kill_reply);
    
    	test_ok = 1;
    	event_loopexit(NULL);
    }
    
    static void
    rpc_basic_message(void)
    {
    	ev_uint16_t port;
    	struct evhttp *http = NULL;
    	struct evrpc_base *base = NULL;
    	struct evhttp_connection *evcon = NULL;
    	struct evhttp_request *req = NULL;
    	struct msg *msg;
    
    	rpc_setup(&http, &port, &base);
    
    	evcon = evhttp_connection_new("127.0.0.1", port);
    	tt_assert(evcon);
    
    	/*
    	 * At this point, we want to schedule an HTTP POST request
    	 * server using our make request method.
    	 */
    
    	req = evhttp_request_new(rpc_postrequest_done, NULL);
    	if (req == NULL) {
    		fprintf(stdout, "FAILED\n");
    		exit(1);
    	}
    
    	/* Add the information that we care about */
    	evhttp_add_header(req->output_headers, "Host", "somehost");
    
    	/* set up the basic message */
    	msg = msg_new();
    	EVTAG_ASSIGN(msg, from_name, "niels");
    	EVTAG_ASSIGN(msg, to_name, "tester");
    	msg_marshal(req->output_buffer, msg);
    	msg_free(msg);
    
    	if (evhttp_make_request(evcon, req,
    		EVHTTP_REQ_POST,
    		"/.rpc.Message") == -1) {
    		fprintf(stdout, "FAILED\n");
    		exit(1);
    	}
    
    	test_ok = 0;
    
    	event_dispatch();
    
    	evhttp_connection_free(evcon);
    
    	rpc_teardown(base);
    
    end:
    	evhttp_free(http);
    }
    
    static struct evrpc_pool *
    rpc_pool_with_connection(ev_uint16_t port)
    {
    	struct evhttp_connection *evcon;
    	struct evrpc_pool *pool;
    
    	pool = evrpc_pool_new(NULL);
    	assert(pool != NULL);
    
    	evcon = evhttp_connection_new("127.0.0.1", port);
    	assert(evcon != NULL);
    
    	evrpc_pool_add_connection(pool, evcon);
    
    	return (pool);
    }
    
    static void
    GotKillCb(struct evrpc_status *status,
        struct msg *msg, struct kill *kill, void *arg)
    {
    	char *weapon;
    	char *action;
    
    	if (need_output_hook) {
    		struct evhttp_request *req = status->http_req;
    		const char *header = evhttp_find_header(
    			req->input_headers, "X-Pool-Hook");
    		assert(strcmp(header, "ran") == 0);
    	}
    
    	if (status->error != EVRPC_STATUS_ERR_NONE)
    		goto done;
    
    	if (EVTAG_GET(kill, weapon, &weapon) == -1) {
    		fprintf(stderr, "get weapon\n");
    		goto done;
    	}
    	if (EVTAG_GET(kill, action, &action) == -1) {
    		fprintf(stderr, "get action\n");
    		goto done;
    	}
    
    	if (strcmp(weapon, "dagger"))
    		goto done;
    
    	if (strcmp(action, "wave around like an idiot"))
    		goto done;
    
    	test_ok += 1;
    
    done:
    	event_loopexit(NULL);
    }
    
    static void
    GotKillCbTwo(struct evrpc_status *status,
        struct msg *msg, struct kill *kill, void *arg)
    {
    	char *weapon;
    	char *action;
    
    	if (status->error != EVRPC_STATUS_ERR_NONE)
    		goto done;
    
    	if (EVTAG_GET(kill, weapon, &weapon) == -1) {
    		fprintf(stderr, "get weapon\n");
    		goto done;
    	}
    	if (EVTAG_GET(kill, action, &action) == -1) {
    		fprintf(stderr, "get action\n");
    		goto done;
    	}
    
    	if (strcmp(weapon, "dagger"))
    		goto done;
    
    	if (strcmp(action, "wave around like an idiot"))
    		goto done;
    
    	test_ok += 1;
    
    done:
    	if (test_ok == 2)
    		event_loopexit(NULL);
    }
    
    static int
    rpc_hook_add_header(void *ctx, struct evhttp_request *req,
        struct evbuffer *evbuf, void *arg)
    {
    	const char *hook_type = arg;
    	if (strcmp("input", hook_type) == 0)
    		evhttp_add_header(req->input_headers, "X-Hook", hook_type);
    	else
    		evhttp_add_header(req->output_headers, "X-Hook", hook_type);
    
    	assert(evrpc_hook_get_connection(ctx) != NULL);
    
    	return (EVRPC_CONTINUE);
    }
    
    static int
    rpc_hook_add_meta(void *ctx, struct evhttp_request *req,
        struct evbuffer *evbuf, void *arg)
    {
    	evrpc_hook_add_meta(ctx, "meta", "test", 5);
    
    	assert(evrpc_hook_get_connection(ctx) != NULL);
    
    	return (EVRPC_CONTINUE);
    }
    
    static int
    rpc_hook_remove_header(void *ctx, struct evhttp_request *req,
        struct evbuffer *evbuf, void *arg)
    {
    	const char *header = evhttp_find_header(req->input_headers, "X-Hook");
    	void *data = NULL;
    	size_t data_len = 0;
    
    	assert(header != NULL);
    	assert(strcmp(header, arg) == 0);
    
    	evhttp_remove_header(req->input_headers, "X-Hook");
    	evhttp_add_header(req->input_headers, "X-Pool-Hook", "ran");
    
    	assert(evrpc_hook_find_meta(ctx, "meta", &data, &data_len) == 0);
    	assert(data != NULL);
    	assert(data_len == 5);
    
    	assert(evrpc_hook_get_connection(ctx) != NULL);
    
    	return (EVRPC_CONTINUE);
    }
    
    static void
    rpc_basic_client(void)
    {
    	ev_uint16_t port;
    	struct evhttp *http = NULL;
    	struct evrpc_base *base = NULL;
    	struct evrpc_pool *pool = NULL;
    	struct msg *msg = NULL;
    	struct kill *kill = NULL;
    
    	rpc_setup(&http, &port, &base);
    
    	need_input_hook = 1;
    	need_output_hook = 1;
    
    	assert(evrpc_add_hook(base, EVRPC_INPUT, rpc_hook_add_header, (void*)"input")
    	    != NULL);
    	assert(evrpc_add_hook(base, EVRPC_OUTPUT, rpc_hook_add_header, (void*)"output")
    	    != NULL);
    
    	pool = rpc_pool_with_connection(port);
    
    	assert(evrpc_add_hook(pool, EVRPC_OUTPUT, rpc_hook_add_meta, NULL));
    	assert(evrpc_add_hook(pool, EVRPC_INPUT, rpc_hook_remove_header, (void*)"output"));
    
    	/* set up the basic message */
    	msg = msg_new();
    	EVTAG_ASSIGN(msg, from_name, "niels");
    	EVTAG_ASSIGN(msg, to_name, "tester");
    
    	kill = kill_new();
    
    	EVRPC_MAKE_REQUEST(Message, pool, msg, kill,  GotKillCb, NULL);
    
    	test_ok = 0;
    
    	event_dispatch();
    
    	tt_assert(test_ok == 1);
    
    	/* we do it twice to make sure that reuse works correctly */
    	kill_clear(kill);
    
    	EVRPC_MAKE_REQUEST(Message, pool, msg, kill,  GotKillCb, NULL);
    
    	event_dispatch();
    
    	tt_assert(test_ok == 2);
    
    	/* we do it trice to make sure other stuff works, too */
    	kill_clear(kill);
    
    	{
    		struct evrpc_request_wrapper *ctx =
    		    EVRPC_MAKE_CTX(Message, msg, kill,
    			pool, msg, kill, GotKillCb, NULL);
    		evrpc_make_request(ctx);
    	}
    
    	event_dispatch();
    
    	rpc_teardown(base);
    
    	tt_assert(test_ok == 3);
    
    end:
    	if (msg)
    		msg_free(msg);
    	if (kill)
    		kill_free(kill);
    
    	if (pool)
    		evrpc_pool_free(pool);
    	if (http)
    		evhttp_free(http);
    
    	need_input_hook = 0;
    	need_output_hook = 0;
    }
    
    /*
     * We are testing that the second requests gets send over the same
     * connection after the first RPCs completes.
     */
    static void
    rpc_basic_queued_client(void)
    {
    	ev_uint16_t port;
    	struct evhttp *http = NULL;
    	struct evrpc_base *base = NULL;
    	struct evrpc_pool *pool = NULL;
    	struct msg *msg=NULL;
    	struct kill *kill_one=NULL, *kill_two=NULL;
    
    	rpc_setup(&http, &port, &base);
    
    	pool = rpc_pool_with_connection(port);
    
    	/* set up the basic message */
    	msg = msg_new();
    	EVTAG_ASSIGN(msg, from_name, "niels");
    	EVTAG_ASSIGN(msg, to_name, "tester");
    
    	kill_one = kill_new();
    	kill_two = kill_new();
    
    	EVRPC_MAKE_REQUEST(Message, pool, msg, kill_one,  GotKillCbTwo, NULL);
    	EVRPC_MAKE_REQUEST(Message, pool, msg, kill_two,  GotKillCb, NULL);
    
    	test_ok = 0;
    
    	event_dispatch();
    
    	rpc_teardown(base);
    
    	tt_assert(test_ok == 2);
    
    end:
    	if (msg)
    		msg_free(msg);
    	if (kill_one)
    		kill_free(kill_one);
    	if (kill_two)
    		kill_free(kill_two);
    
    	if (pool)
    		evrpc_pool_free(pool);
    	if (http)
    		evhttp_free(http);
    }
    
    static void
    GotErrorCb(struct evrpc_status *status,
        struct msg *msg, struct kill *kill, void *arg)
    {
    	if (status->error != EVRPC_STATUS_ERR_TIMEOUT)
    		goto done;
    
    	/* should never be complete but just to check */
    	if (kill_complete(kill) == 0)
    		goto done;
    
    	test_ok += 1;
    
    done:
    	event_loopexit(NULL);
    }
    
    /* we just pause the rpc and continue it in the next callback */
    
    struct rpc_hook_ctx_ {
    	void *vbase;
    	void *ctx;
    };
    
    static int hook_pause_cb_called=0;
    
    static void
    rpc_hook_pause_cb(evutil_socket_t fd, short what, void *arg)
    {
    	struct rpc_hook_ctx_ *ctx = arg;
    	++hook_pause_cb_called;
    	evrpc_resume_request(ctx->vbase, ctx->ctx, EVRPC_CONTINUE);
    	free(arg);
    }
    
    static int
    rpc_hook_pause(void *ctx, struct evhttp_request *req, struct evbuffer *evbuf,
        void *arg)
    {
    	struct rpc_hook_ctx_ *tmp = malloc(sizeof(*tmp));
    	struct timeval tv;
    
    	assert(tmp != NULL);
    	tmp->vbase = arg;
    	tmp->ctx = ctx;
    
    	memset(&tv, 0, sizeof(tv));
    	event_once(-1, EV_TIMEOUT, rpc_hook_pause_cb, tmp, &tv);
    	return EVRPC_PAUSE;
    }
    
    static void
    rpc_basic_client_with_pause(void)
    {
    	ev_uint16_t port;
    	struct evhttp *http = NULL;
    	struct evrpc_base *base = NULL;
    	struct evrpc_pool *pool = NULL;
    	struct msg *msg = NULL;
    	struct kill *kill= NULL;
    
    	rpc_setup(&http, &port, &base);
    
    	assert(evrpc_add_hook(base, EVRPC_INPUT, rpc_hook_pause, base));
    	assert(evrpc_add_hook(base, EVRPC_OUTPUT, rpc_hook_pause, base));
    
    	pool = rpc_pool_with_connection(port);
    
    	assert(evrpc_add_hook(pool, EVRPC_INPUT, rpc_hook_pause, pool));
    	assert(evrpc_add_hook(pool, EVRPC_OUTPUT, rpc_hook_pause, pool));
    
    	/* set up the basic message */
    	msg = msg_new();
    	EVTAG_ASSIGN(msg, from_name, "niels");
    	EVTAG_ASSIGN(msg, to_name, "tester");
    
    	kill = kill_new();
    
    	EVRPC_MAKE_REQUEST(Message, pool, msg, kill, GotKillCb, NULL);
    
    	test_ok = 0;
    
    	event_dispatch();
    
    	tt_int_op(test_ok, ==, 1);
    	tt_int_op(hook_pause_cb_called, ==, 4);
    
    end:
    	if (base)
    		rpc_teardown(base);
    
    	if (msg)
    		msg_free(msg);
    	if (kill)
    		kill_free(kill);
    
    	if (pool)
    		evrpc_pool_free(pool);
    	if (http)
    		evhttp_free(http);
    }
    
    static void
    rpc_client_timeout(void)
    {
    	ev_uint16_t port;
    	struct evhttp *http = NULL;
    	struct evrpc_base *base = NULL;
    	struct evrpc_pool *pool = NULL;
    	struct msg *msg = NULL;
    	struct kill *kill = NULL;
    
    	rpc_setup(&http, &port, &base);
    
    	pool = rpc_pool_with_connection(port);
    
    	/* set the timeout to 1 second. */
    	evrpc_pool_set_timeout(pool, 1);
    
    	/* set up the basic message */
    	msg = msg_new();
    	EVTAG_ASSIGN(msg, from_name, "niels");
    	EVTAG_ASSIGN(msg, to_name, "tester");
    
    	kill = kill_new();
    
    	EVRPC_MAKE_REQUEST(NeverReply, pool, msg, kill, GotErrorCb, NULL);
    
    	test_ok = 0;
    
    	event_dispatch();
    
    	/* free the saved RPC structure up */
    	EVRPC_REQUEST_DONE(saved_rpc);
    
    	rpc_teardown(base);
    
    	tt_assert(test_ok == 2);
    
    end:
    	if (msg)
    		msg_free(msg);
    	if (kill)
    		kill_free(kill);
    
    	if (pool)
    		evrpc_pool_free(pool);
    	if (http)
    		evhttp_free(http);
    }
    
    static void
    rpc_test(void)
    {
    	struct msg *msg = NULL, *msg2 = NULL;
    	struct kill *attack = NULL;
    	struct run *run = NULL;
    	struct evbuffer *tmp = evbuffer_new();
    	struct timeval tv_start, tv_end;
    	ev_uint32_t tag;
    	int i;
    
    	msg = msg_new();
    	EVTAG_ASSIGN(msg, from_name, "niels");
    	EVTAG_ASSIGN(msg, to_name, "phoenix");
    
    	if (EVTAG_GET(msg, attack, &attack) == -1) {
    		tt_abort_msg("Failed to set kill message.");
    	}
    
    	EVTAG_ASSIGN(attack, weapon, "feather");
    	EVTAG_ASSIGN(attack, action, "tickle");
    	for (i = 0; i < 3; ++i) {
    		if (EVTAG_ARRAY_ADD_VALUE(attack, how_often, i) == NULL) {
    			tt_abort_msg("Failed to add how_often.");
    		}
    	}
    
    	evutil_gettimeofday(&tv_start, NULL);
    	for (i = 0; i < 1000; ++i) {
    		run = EVTAG_ARRAY_ADD(msg, run);
    		if (run == NULL) {
    			tt_abort_msg("Failed to add run message.");
    		}
    		EVTAG_ASSIGN(run, how, "very fast but with some data in it");
    		EVTAG_ASSIGN(run, fixed_bytes,
    		    (ev_uint8_t*)"012345678901234567890123");
    
    		if (EVTAG_ARRAY_ADD_VALUE(
    			    run, notes, "this is my note") == NULL) {
    			tt_abort_msg("Failed to add note.");
    		}
    		if (EVTAG_ARRAY_ADD_VALUE(run, notes, "pps") == NULL) {
    			tt_abort_msg("Failed to add note");
    		}
    
    		EVTAG_ASSIGN(run, large_number, 0xdead0a0bcafebeefLL);
    		EVTAG_ARRAY_ADD_VALUE(run, other_numbers, 0xdead0a0b);
    		EVTAG_ARRAY_ADD_VALUE(run, other_numbers, 0xbeefcafe);
    	}
    
    	if (msg_complete(msg) == -1)
    		tt_abort_msg("Failed to make complete message.");
    
    	evtag_marshal_msg(tmp, 0xdeaf, msg);
    
    	if (evtag_peek(tmp, &tag) == -1)
    		tt_abort_msg("Failed to peak tag.");
    
    	if (tag != 0xdeaf)
    		TT_DIE(("Got incorrect tag: %0x.", (unsigned)tag));
    
    	msg2 = msg_new();
    	if (evtag_unmarshal_msg(tmp, 0xdeaf, msg2) == -1)
    		tt_abort_msg("Failed to unmarshal message.");
    
    	evutil_gettimeofday(&tv_end, NULL);
    	evutil_timersub(&tv_end, &tv_start, &tv_end);
    	TT_BLATHER(("(%.1f us/add) ",
    		(float)tv_end.tv_sec/(float)i * 1000000.0 +
    		tv_end.tv_usec / (float)i));
    
    	if (!EVTAG_HAS(msg2, from_name) ||
    	    !EVTAG_HAS(msg2, to_name) ||
    	    !EVTAG_HAS(msg2, attack)) {
    		tt_abort_msg("Missing data structures.");
    	}
    
    	if (EVTAG_GET(msg2, attack, &attack) == -1) {
    		tt_abort_msg("Could not get attack.");
    	}
    
    	if (EVTAG_ARRAY_LEN(msg2, run) != i) {
    		tt_abort_msg("Wrong number of run messages.");
    	}
    
    	/* get the very first run message */
    	if (EVTAG_ARRAY_GET(msg2, run, 0, &run) == -1) {
    		tt_abort_msg("Failed to get run msg.");
    	} else {
    		/* verify the notes */
    		char *note_one, *note_two;
    		ev_uint64_t large_number;
    		ev_uint32_t short_number;
    
    		if (EVTAG_ARRAY_LEN(run, notes) != 2) {
    			tt_abort_msg("Wrong number of note strings.");
    		}
    
    		if (EVTAG_ARRAY_GET(run, notes, 0, &note_one) == -1 ||
    		    EVTAG_ARRAY_GET(run, notes, 1, &note_two) == -1) {
    			tt_abort_msg("Could not get note strings.");
    		}
    
    		if (strcmp(note_one, "this is my note") ||
    		    strcmp(note_two, "pps")) {
    			tt_abort_msg("Incorrect note strings encoded.");
    		}
    
    		if (EVTAG_GET(run, large_number, &large_number) == -1 ||
    		    large_number != 0xdead0a0bcafebeefLL) {
    			tt_abort_msg("Incorrrect large_number.");
    		}
    
    		if (EVTAG_ARRAY_LEN(run, other_numbers) != 2) {
    			tt_abort_msg("Wrong number of other_numbers.");
    		}
    
    		if (EVTAG_ARRAY_GET(
    			    run, other_numbers, 0, &short_number) == -1) {
    			tt_abort_msg("Could not get short number.");
    		}
    		tt_uint_op(short_number, ==, 0xdead0a0b);
    
    	}
    	tt_int_op(EVTAG_ARRAY_LEN(attack, how_often), ==, 3);
    
    	for (i = 0; i < 3; ++i) {
    		ev_uint32_t res;
    		if (EVTAG_ARRAY_GET(attack, how_often, i, &res) == -1) {
    			TT_DIE(("Cannot get %dth how_often msg.", i));
    		}
    		if ((int)res != i) {
    			TT_DIE(("Wrong message encoded %d != %d", i, res));
    		}
    	}
    
    	test_ok = 1;
    end:
    	if (msg)
    		msg_free(msg);
    	if (msg2)
    		msg_free(msg2);
    	if (tmp)
    		evbuffer_free(tmp);
    }
    
    #define RPC_LEGACY(name)						\
    	{ #name, run_legacy_test_fn, TT_FORK|TT_NEED_BASE|TT_LEGACY,	\
    		    &legacy_setup,					\
    		    rpc_##name }
    #else
    /* NO_PYTHON_EXISTS */
    
    #define RPC_LEGACY(name) \
    	{ #name, NULL, TT_SKIP, NULL, NULL }
    
    #endif
    
    struct testcase_t rpc_testcases[] = {
    	RPC_LEGACY(basic_test),
    	RPC_LEGACY(basic_message),
    	RPC_LEGACY(basic_client),
    	RPC_LEGACY(basic_queued_client),
    	RPC_LEGACY(basic_client_with_pause),
    	RPC_LEGACY(client_timeout),
    	RPC_LEGACY(test),
    
    	END_OF_TESTCASES,
    };