2013-12-29 04:53:12 +00:00
|
|
|
/*
|
2016-03-25 19:59:40 +00:00
|
|
|
* 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
|
2012-07-23 22:37:36 +00:00
|
|
|
*
|
2016-03-25 19:59:40 +00:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2012-07-23 22:37:36 +00:00
|
|
|
*
|
2016-03-25 19:59:40 +00:00
|
|
|
* 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.
|
2013-12-29 04:53:12 +00:00
|
|
|
*/
|
|
|
|
|
2014-01-01 22:44:28 +00:00
|
|
|
#include "config.h"
|
2012-07-23 22:37:36 +00:00
|
|
|
|
|
|
|
#include "suite.h"
|
|
|
|
|
2014-01-01 22:44:28 +00:00
|
|
|
#include <CUnit/Basic.h>
|
|
|
|
|
2012-07-23 22:37:36 +00:00
|
|
|
int protocol_suite_init() {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int protocol_suite_cleanup() {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int register_protocol_suite() {
|
|
|
|
|
|
|
|
/* Add protocol test suite */
|
|
|
|
CU_pSuite suite = CU_add_suite("protocol",
|
|
|
|
protocol_suite_init, protocol_suite_cleanup);
|
|
|
|
if (suite == NULL) {
|
|
|
|
CU_cleanup_registry();
|
|
|
|
return CU_get_error();
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Add tests */
|
|
|
|
if (
|
2013-09-27 22:51:45 +00:00
|
|
|
CU_add_test(suite, "base64-decode", test_base64_decode) == NULL
|
2013-10-02 01:12:15 +00:00
|
|
|
|| CU_add_test(suite, "instruction-parse", test_instruction_parse) == NULL
|
2013-09-27 22:51:45 +00:00
|
|
|
|| CU_add_test(suite, "instruction-read", test_instruction_read) == NULL
|
2012-07-23 22:37:36 +00:00
|
|
|
|| CU_add_test(suite, "instruction-write", test_instruction_write) == NULL
|
2012-10-19 21:18:09 +00:00
|
|
|
|| CU_add_test(suite, "nest-write", test_nest_write) == NULL
|
2012-07-23 22:37:36 +00:00
|
|
|
) {
|
|
|
|
CU_cleanup_registry();
|
|
|
|
return CU_get_error();
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
}
|
|
|
|
|