summaryrefslogtreecommitdiffstats
path: root/cutest
diff options
context:
space:
mode:
authorGravatar damitha2010-08-02 09:13:35 +0000
committerGravatar damitha2010-08-02 09:13:35 +0000
commit0512e47e05cb4e8ddcc449f937a0905fc7321e96 (patch)
tree4776df34426320806d3ce4e0a0479c2ec530f24b /cutest
parent96a932ef7aa658e3a001dbb69960abf108d86c01 (diff)
downloadaxis2c-0512e47e05cb4e8ddcc449f937a0905fc7321e96.tar.gz
axis2c-0512e47e05cb4e8ddcc449f937a0905fc7321e96.tar.bz2
Adding test suite to dist build
git-svn-id: http://svn.apache.org/repos/asf/axis/axis2/c/core/trunk@981425 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cutest')
-rw-r--r--cutest/include/cut_defs.h146
-rw-r--r--cutest/include/cut_http_server.h202
2 files changed, 0 insertions, 348 deletions
diff --git a/cutest/include/cut_defs.h b/cutest/include/cut_defs.h
deleted file mode 100644
index bd9a071..0000000
--- a/cutest/include/cut_defs.h
+++ /dev/null
@@ -1,146 +0,0 @@
-/*
-* Licensed to the Apache Software Foundation (ASF) under one or more
-* contributor license agreements. See the NOTICE file distributed with
-* this work for additional information regarding copyright ownership.
-* The ASF licenses this file to You under the Apache License, Version 2.0
-* (the "License"); you may not use this file except in compliance with
-* the License. You may obtain a copy of the License at
-*
-* http://www.apache.org/licenses/LICENSE-2.0
-*
-* Unless required by applicable law or agreed to in writing, software
-* distributed under the License is distributed on an "AS IS" BASIS,
-* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-* See the License for the specific language governing permissions and
-* limitations under the License.
-*/
-
-#ifndef CUT_DEFS_H
-#define CUT_DEFS_H
-
-#include <stdio.h>
-
-#ifdef __cplusplus
-extern "C"
-{
-#endif
-
-#define CUT_LOG_LEVEL AXIS2_LOG_LEVEL_DEBUG
-#define CUT_LOG_HEADER "************* testing %s **************"
-
-#define CUT_ASSERT(value) \
- cut_assert((value), __LINE__, #value, __FILE__);
-
-#define CUT_ASSERT_RETURN(value) \
- if (!cut_assert((value), __LINE__, #value, __FILE__)) return;
-
-#define CUT_RETURN_ON_FAILURE(cr) \
- if (cut_nb_assert_failures) return cr;
-
-#define CUT_ASSERT_PTR_EQUAL(ptr,value,bret) \
- if (!cut_ptr_equal((void*)(ptr), (void*)(value), 1, __LINE__, __FILE__) && bret) return;
-
-#define CUT_ASSERT_PTR_NOT_EQUAL(ptr,value,bret) \
- if (!cut_ptr_equal((void*)(ptr), (void*)(value), 0, __LINE__, __FILE__) && bret) return;
-
-#define CUT_ASSERT_INT_EQUAL(value,expected,bret) \
- if (!cut_int_equal((long)(value), (long)(expected), 1, __LINE__, __FILE__) && bret) return;
-
-#define CUT_ASSERT_INT_NOT_EQUAL(value,expected,bret) \
- if (!cut_int_equal((long)(value), (long)(expected), 0, __LINE__, __FILE__) && bret) return;
-
-#define CUT_ASSERT_STR_EQUAL(value,expected,bret) \
- if (!cut_str_equal(value, expected, 1, __LINE__, __FILE__) && bret) return;
-
-#define CUT_ASSERT_STR_NOT_EQUAL(value,expected,bret) \
- if (!cut_str_equal(value, expected, 0, __LINE__, __FILE__) && bret) return;
-
-static int cut_nb_asserts = 0;
-static int cut_nb_assert_failures = 0;
-static axutil_env_t *cut_axis2_env = NULL;
-
-static int cut_strcmp(const char *str1, const char *str2)
-{
- if (str1 == NULL || str2 == NULL)
- {
- return str1 == str2;
- }
- return strcmp(str1, str2);
-}
-
-static int cut_assert(int bValue,
- unsigned int uiLine,
- char strCondition[],
- char strFile[])
-{
- ++cut_nb_asserts;
- if (bValue) return bValue;
- ++cut_nb_assert_failures;
- printf("Assertion Failure %s %d: %s\n", strFile, uiLine, strCondition);
- AXIS2_LOG_ERROR(cut_axis2_env->log, strFile, uiLine, "Assertion Failure : %s", strCondition);
- return bValue;
-}
-
-static int cut_ptr_equal(void *ptr, void *value, int equal,
- unsigned int uiLine,
- char strFile[])
-{
- ++cut_nb_asserts;
- if ( (ptr == value) == equal) return 1;
- ++cut_nb_assert_failures;
- printf("Assertion Failure %s %d: pointer %sexpected <%s>, found <%s>\n", strFile, uiLine,
- equal?"":"not ", (char *) value, (char*) ptr);
- AXIS2_LOG_ERROR(cut_axis2_env->log, strFile, uiLine,
- "Assertion Failure : pointer %sexpected <%p>, found <%p>", equal?"":"not ", value, ptr);
- return 0;
-}
-
-static int cut_int_equal(long value, long expected, int equal,
- unsigned int uiLine,
- char strFile[])
-{
- ++cut_nb_asserts;
- if ((expected == value)== equal) return 1;
- ++cut_nb_assert_failures;
- printf("Assertion Failure %s %d: integer %sexpected <%ld>, found <%ld>\n", strFile, uiLine,
- equal?"":"not ", expected, value);
- AXIS2_LOG_ERROR(cut_axis2_env->log, strFile, uiLine,
- "Assertion Failure : integer %sexpected <%ld>, found <%ld>", equal?"":"not ", expected,value);
- return 0;
-}
-
-static int cut_str_equal(const char *value, const char *expected, int equal,
- unsigned int uiLine,
- char strFile[])
-{
- ++cut_nb_asserts;
- if ( (cut_strcmp(expected,value) == 0) == equal) return 1;
- ++cut_nb_assert_failures;
- printf("Assertion Failure %s %d: string %sexpected <%s>, found <%s>\n", strFile, uiLine,
- equal?"":"not ", expected, value);
- AXIS2_LOG_ERROR(cut_axis2_env->log, strFile, uiLine,
- "Assertion Failure : string %sexpected <%s>, found <%s>", equal?"":"not ", expected,value);
- return 0;
-}
-
-axutil_env_t *cut_setup_env(char* testName)
-{
- cut_axis2_env = axutil_env_create_all("unit_tests.log", CUT_LOG_LEVEL);
- if (testName != NULL)
- {
- printf("\n");
- printf(CUT_LOG_HEADER, testName);
- printf("\n\n");
- if (cut_axis2_env)
- {
- AXIS2_LOG_INFO(cut_axis2_env->log, CUT_LOG_HEADER, testName);
- }
- }
- return cut_axis2_env;
-}
-
-#ifdef __cplusplus
-}
-#endif
-
-#endif /* CUT_DEFS_H */
diff --git a/cutest/include/cut_http_server.h b/cutest/include/cut_http_server.h
deleted file mode 100644
index 7f9d4c7..0000000
--- a/cutest/include/cut_http_server.h
+++ /dev/null
@@ -1,202 +0,0 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed with
- * this work for additional information regarding copyright ownership.
- * The ASF licenses this file to You under the Apache License, Version 2.0
- * (the "License"); you may not use this file except in compliance with
- * the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-#include <axis2_http_server.h>
-#include <axis2_http_transport.h>
-#include <platforms/axutil_platform_auto_sense.h>
-#include <axutil_error_default.h>
-#include <axutil_log_default.h>
-#include <axutil_thread_pool.h>
-#include <axutil_types.h>
-#include <axiom_xml_reader.h>
-#include <axutil_version.h>
-#include <axutil_thread.h>
-#include <axutil_file_handler.h>
-#include <axis2_const.h>
-
-axutil_env_t *system_env = NULL;
-axutil_thread_t *td_http_server = NULL;
-axis2_transport_receiver_t *server = NULL;
-AXIS2_IMPORT extern int axis2_http_socket_read_timeout;
-AXIS2_IMPORT extern axis2_char_t *axis2_request_url_prefix;
-axutil_thread_t *thread_http_server = NULL;
-
-#define DEFAULT_REPO_PATH "/usr/local/axis2c/"
-
-/***************************** Function headers *******************************/
-axutil_env_t *
-init_system_env(
- axutil_allocator_t * allocator,
- const axis2_char_t * log_file);
-
-void
-server_free(
- axutil_env_t * env);
-
-axutil_env_t *
-init_system_env(
- axutil_allocator_t * allocator,
- const axis2_char_t * log_file);
-
-void * AXIS2_CALL
-http_server(axutil_thread_t *td, void *param);
-
-/***************************** End of function headers ************************/
-axutil_env_t *
-init_system_env(
- axutil_allocator_t * allocator,
- const axis2_char_t * log_file)
-{
- axutil_error_t *error = axutil_error_create(allocator);
- axutil_log_t *log = axutil_log_create(allocator, NULL, log_file);
- /* if (!log) */
-
- /* log = axutil_log_create_default (allocator); */
- axutil_thread_pool_t *thread_pool = axutil_thread_pool_init(allocator);
- /* We need to init the parser in main thread before spawning child
- * threads
- */
- axiom_xml_reader_init();
- return axutil_env_create_with_error_log_thread_pool(allocator, error, log, thread_pool);
-}
-
-void
-server_free(
- axutil_env_t * env)
-{
- axutil_allocator_t *allocator = NULL;
- if(server)
- {
- axis2_transport_receiver_free(server, system_env);
- }
- if(env)
- {
- allocator = env->allocator;
- axutil_env_free(env);
- }
- /*axutil_allocator_free(allocator); */
- axiom_xml_reader_cleanup();
-}
-
-void * AXIS2_CALL
-http_server(axutil_thread_t *td, void *param)
-{
- axutil_allocator_t *allocator = NULL;
- axutil_env_t *env = NULL;
- unsigned int len;
- int log_file_size = AXUTIL_LOG_FILE_SIZE;
- unsigned int file_flag = 0;
- axutil_log_levels_t log_level = AXIS2_LOG_LEVEL_DEBUG;
- const axis2_char_t *log_file = "axis2.log";
- const axis2_char_t *repo_path = NULL;
- int port = 9090;
- axis2_status_t status;
-
- repo_path = getenv("AXIS2C_HOME");
- if (!repo_path) repo_path = DEFAULT_REPO_PATH;
- td_http_server = td;
- /* Set the service URL prefix to be used. This could default to services if not
- set with AXIS2_REQUEST_URL_PREFIX macro at compile time */
- axis2_request_url_prefix = AXIS2_REQUEST_URL_PREFIX;
-
- allocator = axutil_allocator_init(NULL);
-
- if(!allocator)
- {
- server_free(NULL);
- return NULL;
- }
-
- env = init_system_env(allocator, log_file);
- CUT_ASSERT(env != NULL);
- if (env == NULL)
- {
- server_free(NULL);
- return NULL;
- }
- env->log->level = log_level;
- env->log->size = log_file_size;
-
- axutil_error_init();
- system_env = env;
-
- AXIS2_LOG_INFO(env->log, "Starting Axis2 HTTP server....");
- AXIS2_LOG_INFO(env->log, "Apache Axis2/C version in use : %s", axis2_version_string());
- AXIS2_LOG_INFO(env->log, "Server port : %d", port);
- AXIS2_LOG_INFO(env->log, "Repo location : %s", repo_path);
- AXIS2_LOG_INFO(env->log, "Read Timeout : %d ms", axis2_http_socket_read_timeout);
-
- status = axutil_file_handler_access(repo_path, AXIS2_R_OK);
- if(status == AXIS2_SUCCESS)
- {
- len = (unsigned int)strlen(repo_path);
- /* We are sure that the difference lies within the unsigned int range */
- if((len >= 9) && !strcmp((repo_path + (len - 9)), "axis2.xml"))
- {
- file_flag = 1;
- }
- }
- else
- {
- AXIS2_LOG_WARNING(env->log, AXIS2_LOG_SI, "provided repo path %s does "
- "not exist or no permissions to read, set "
- "repo_path to DEFAULT_REPO_PATH", repo_path);
- repo_path = DEFAULT_REPO_PATH;
- }
-
- if(!file_flag)
- server = axis2_http_server_create(env, repo_path, port);
- else
- server = axis2_http_server_create_with_file(env, repo_path, port);
-
- if(!server)
- {
- AXIS2_LOG_ERROR(env->log, AXIS2_LOG_SI, "Server creation failed: Error code:" " %d :: %s",
- env->error->error_number, AXIS2_ERROR_GET_MESSAGE(env->error));
- server_free(env);
- return NULL;
-
- }
- printf("Start Simple Axis2 HTTP Server ...\n");
- if(axis2_transport_receiver_start(server, env) == AXIS2_FAILURE)
- {
- printf("start error\n");
- AXIS2_LOG_ERROR(env->log, AXIS2_LOG_SI, "Server start failed: Error code:" " %d :: %s",
- env->error->error_number, AXIS2_ERROR_GET_MESSAGE(env->error));
- server_free(env);
- return NULL;
- }
- printf("OK\n");
- return NULL;
-}
-
-static int ut_start_http_server(axutil_env_t *env)
-{
- thread_http_server = axutil_thread_create(env->allocator, NULL, http_server, NULL);
- CUT_ASSERT(thread_http_server != NULL);
- if (!thread_http_server) return -1;
- AXIS2_SLEEP(2);
- return 0;
-}
-
-static void ut_stop_http_server(axutil_env_t *env)
-{
- axis2_status_t rv;
- if ( !thread_http_server ) return;
- rv = axutil_thread_exit(thread_http_server, env->allocator);
- thread_http_server = NULL;
-}