123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463 |
- #include <config.h>
- #include <libtest/test.hpp>
- using namespace libtest;
- #include <cassert>
- #include <cstdio>
- #include <cstdlib>
- #include <cstring>
- #define GEARMAN_CORE
- #include <libgearman/common.h>
- #include <libgearman/packet.hpp>
- #include <libgearman/universal.hpp>
- #include <tests/regression.h>
- #include <tests/ports.h>
- #ifndef __INTEL_COMPILER
- #pragma GCC diagnostic ignored "-Wold-style-cast"
- #endif
- struct internal_test_st
- {
- pid_t gearmand_pid;
- internal_test_st() :
- gearmand_pid(-1)
- {
- }
- ~internal_test_st()
- { }
- };
- static test_return_t init_test(void *)
- {
- gearman_universal_st gear;
- gearman_universal_initialize(gear);
- test_false(gear.options.dont_track_packets);
- test_false(gear.options.non_blocking);
- test_false(gear.options.stored_non_blocking);
- test_false(gear._namespace);
- gearman_universal_free(gear);
- return TEST_SUCCESS;
- }
- static test_return_t clone_test(void *)
- {
- gearman_universal_st gear;
- gearman_universal_initialize(gear);
-
- {
- gearman_universal_st destination;
- gearman_universal_clone(destination, gear);
- {
- test_truth(destination.options.dont_track_packets == gear.options.dont_track_packets);
- test_truth(destination.options.non_blocking == gear.options.non_blocking);
- test_truth(destination.options.stored_non_blocking == gear.options.stored_non_blocking);
- }
- test_truth(destination._namespace == gear._namespace);
- test_truth(destination.verbose == gear.verbose);
- test_truth(destination.con_count == gear.con_count);
- test_truth(destination.packet_count == gear.packet_count);
- test_truth(destination.pfds_size == gear.pfds_size);
- test_truth(destination.error.last_errno == gear.error.last_errno);
- test_truth(destination.timeout == gear.timeout);
- test_truth(destination.con_list == gear.con_list);
- test_truth(destination.packet_list == gear.packet_list);
- test_truth(destination.pfds == gear.pfds);
- test_truth(destination.log_fn == gear.log_fn);
- test_truth(destination.log_context == gear.log_context);
- test_truth(destination.allocator.malloc == gear.allocator.malloc);
- test_truth(destination.allocator.context == gear.allocator.context);
- test_truth(destination.allocator.free == gear.allocator.free);
- gearman_universal_free(gear);
- }
- gearman_universal_free(gear);
- return TEST_SUCCESS;
- }
- static test_return_t set_timout_test(void *)
- {
- gearman_universal_st universal;
- gearman_universal_initialize(universal);
- test_compare(-1, gearman_universal_timeout(universal));
- gearman_universal_set_timeout(universal, 20);
- test_compare(20, gearman_universal_timeout(universal));
- gearman_universal_set_timeout(universal, 10);
- test_compare(10, gearman_universal_timeout(universal));
- gearman_universal_free(universal);
- return TEST_SUCCESS;
- }
- static test_return_t basic_error_test(void *)
- {
- gearman_universal_st universal;
- gearman_universal_initialize(universal);
- const char *error= gearman_universal_error(universal);
- test_false(error);
- test_compare(0, gearman_universal_errno(universal));
- gearman_universal_free(universal);
- return TEST_SUCCESS;
- }
- static test_return_t state_option_test(void *)
- {
- gearman_universal_st universal;
- gearman_universal_initialize(universal);
- {
- test_false(universal.options.dont_track_packets);
- test_false(universal.options.non_blocking);
- test_false(universal.options.stored_non_blocking);
- }
- gearman_universal_free(universal);
- return TEST_SUCCESS;
- }
- static test_return_t state_option_on_create_test(void *)
- {
- gearman_universal_st universal;
- gearman_universal_options_t options[]= { GEARMAN_NON_BLOCKING, GEARMAN_DONT_TRACK_PACKETS, GEARMAN_MAX};
- gearman_universal_initialize(universal, options);
- {
- test_truth(universal.options.dont_track_packets);
- test_truth(universal.options.non_blocking);
- test_false(universal.options.stored_non_blocking);
- }
- gearman_universal_free(universal);
- return TEST_SUCCESS;
- }
- static test_return_t gearman_universal_set_namespace_test(void *)
- {
- gearman_universal_st universal;
- gearman_universal_initialize(universal);
- test_false(universal._namespace);
- gearman_universal_set_namespace(universal, gearman_literal_param("foo23"));
- test_truth(universal._namespace);
- gearman_universal_free(universal);
- return TEST_SUCCESS;
- }
- static test_return_t clone_gearman_universal_set_namespace_test(void *)
- {
- gearman_universal_st universal;
- gearman_universal_initialize(universal);
- test_false(universal._namespace);
- gearman_universal_set_namespace(universal, gearman_literal_param("my_dog"));
- test_truth(universal._namespace);
- gearman_universal_st clone;
- gearman_universal_clone(clone, universal);
- test_truth(clone._namespace);
- gearman_universal_free(universal);
- gearman_universal_free(clone);
- return TEST_SUCCESS;
- }
- static test_return_t state_option_set_test(void *)
- {
- gearman_universal_st universal;
- gearman_universal_options_t options[]= { GEARMAN_NON_BLOCKING, GEARMAN_DONT_TRACK_PACKETS, GEARMAN_MAX};
- gearman_universal_initialize(universal, options);
- {
- test_truth(universal.options.dont_track_packets);
- test_truth(universal.options.non_blocking);
- test_false(universal.options.stored_non_blocking);
- }
- test_truth(gearman_universal_is_non_blocking(universal));
- gearman_universal_initialize(universal);
- {
- test_false(universal.options.dont_track_packets);
- test_false(universal.options.non_blocking);
- test_false(universal.options.stored_non_blocking);
- }
- gearman_universal_add_options(universal, GEARMAN_DONT_TRACK_PACKETS);
- {
- test_truth(universal.options.dont_track_packets);
- test_false(universal.options.non_blocking);
- test_false(universal.options.stored_non_blocking);
- }
- gearman_universal_remove_options(universal, GEARMAN_DONT_TRACK_PACKETS);
- {
- test_false(universal.options.dont_track_packets);
- test_false(universal.options.non_blocking);
- test_false(universal.options.stored_non_blocking);
- }
- gearman_universal_free(universal);
- return TEST_SUCCESS;
- }
- test_st universal_st_test[] ={
- {"init", 0, init_test },
- {"clone_test", 0, clone_test },
- {"set_timeout", 0, set_timout_test },
- {"basic_error", 0, basic_error_test },
- {"state_options", 0, state_option_test },
- {"state_options_on_create", 0, state_option_on_create_test},
- {"state_options_set", 0, state_option_set_test },
- {"gearman_universal_set_namespace()", 0, gearman_universal_set_namespace_test },
- {"gearman_universal_clone() with gearman_universal_set_namespace()", 0, clone_gearman_universal_set_namespace_test },
- {0, 0, 0}
- };
- static test_return_t connection_init_test(void *)
- {
- gearman_universal_st universal;
- gearman_universal_initialize(universal);
- gearman_connection_st *connection_ptr= gearman_connection_create(universal, NULL);
- test_truth(connection_ptr);
- test_false(connection_ptr->options.ready);
- test_false(connection_ptr->options.packet_in_use);
- delete connection_ptr;
- return TEST_SUCCESS;
- }
- static test_return_t connection_alloc_test(void *)
- {
- gearman_universal_st universal;
- gearman_universal_initialize(universal);
- gearman_connection_st *connection_ptr= gearman_connection_create(universal, NULL);
- test_truth(connection_ptr);
- test_false(connection_ptr->options.ready);
- test_false(connection_ptr->options.packet_in_use);
- delete connection_ptr;
- return TEST_SUCCESS;
- }
- test_st connection_st_test[] ={
- {"init", 0, connection_init_test },
- {"alloc", 0, connection_alloc_test },
- {0, 0, 0}
- };
- static test_return_t packet_init_test(void *)
- {
- gearman_universal_st universal;
- gearman_packet_st packet;
- gearman_packet_st *packet_ptr;
- gearman_universal_initialize(universal);
- packet_ptr= gearman_packet_create(universal, &packet);
- test_false(packet.options.allocated);
- test_false(packet_ptr->options.allocated);
- test_false(packet.options.complete);
- test_false(packet.options.free_data);
- test_truth(packet_ptr == &packet);
- gearman_packet_free(packet_ptr);
- test_false(packet.options.allocated);
- return TEST_SUCCESS;
- }
- static test_return_t gearman_packet_give_data_test(void *)
- {
- char *data = strdup("Mine!");
- size_t data_size= strlen(data);
- gearman_universal_st universal;
- gearman_packet_st packet;
- gearman_universal_initialize(universal);
- test_truth(gearman_packet_create(universal, &packet));
- gearman_packet_give_data(packet, data, data_size);
- test_truth(packet.data == data);
- test_truth(packet.data_size == data_size);
- test_truth(packet.options.free_data);
- gearman_packet_free(&packet);
- gearman_universal_free(universal);
- return TEST_SUCCESS;
- }
- static test_return_t gearman_packet_take_data_test(void *)
- {
- char *data = strdup("Mine!");
- size_t data_size= strlen(data);
- gearman_universal_st universal;
- gearman_packet_st packet;
- gearman_universal_initialize(universal);
- gearman_packet_st *packet_ptr= gearman_packet_create(universal, &packet);
- test_truth(packet_ptr);
- gearman_packet_give_data(packet, data, data_size);
- test_truth(packet_ptr->data == data);
- test_compare(data_size, packet_ptr->data_size);
- test_truth(packet_ptr->options.free_data);
- size_t mine_size;
- char *mine= (char *)gearman_packet_take_data(packet, &mine_size);
- test_false(packet_ptr->data);
- test_zero(packet_ptr->data_size);
- test_false(packet_ptr->options.free_data);
- test_compare(mine, data);
- test_compare(data_size, mine_size);
- gearman_packet_free(packet_ptr);
- gearman_universal_free(universal);
- free(data);
- return TEST_SUCCESS;
- }
- test_st packet_st_test[] ={
- {"init", 0, packet_init_test },
- {"gearman_packet_give_data", 0, gearman_packet_give_data_test },
- {"gearman_packet_take_data", 0, gearman_packet_take_data_test },
- {0, 0, 0}
- };
- test_st regression_tests[] ={
- {"lp:783141, multiple calls for bad host", 0, regression_bug_783141_test },
- {"lp:372074", 0, regression_bug_372074_test },
- {0, 0, 0}
- };
- collection_st collection[] ={
- {"gearman_universal_st", 0, 0, universal_st_test},
- {"gearman_connection_st", 0, 0, connection_st_test},
- {"gearman_packet_st", 0, 0, packet_st_test},
- {"regression", 0, 0, regression_tests},
- {0, 0, 0, 0}
- };
- static void *world_create(server_startup_st& servers, test_return_t& error)
- {
-
- const char *argv[1]= { "client_gearmand" };
- if (not server_startup(servers, "gearmand", INTERNAL_TEST_PORT, 1, argv))
- {
- error= TEST_FAILURE;
- return NULL;
- }
- set_default_port(INTERNAL_TEST_PORT);
- error= TEST_SUCCESS;
- return NULL;
- }
- static bool world_destroy(void *)
- {
- return TEST_SUCCESS;
- }
- void get_world(Framework *world)
- {
- world->collections= collection;
- world->_create= world_create;
- world->_destroy= world_destroy;
- }
|