123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264 |
- /*
- Copyright (c) 2009-2017 Dave Gamble and cJSON contributors
- Permission is hereby granted, free of charge, to any person obtaining a copy
- of this software and associated documentation files (the "Software"), to deal
- in the Software without restriction, including without limitation the rights
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- copies of the Software, and to permit persons to whom the Software is
- furnished to do so, subject to the following conditions:
- The above copyright notice and this permission notice shall be included in
- all copies or substantial portions of the Software.
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- THE SOFTWARE.
- */
- #include <stdio.h>
- #include <stdlib.h>
- #include <string.h>
- #include "unity/examples/unity_config.h"
- #include "unity/src/unity.h"
- #include "common.h"
- static void create_configuration_should_create_a_configuration(void)
- {
- internal_configuration *configuration = NULL;
- configuration = (internal_configuration*)cJSON_CreateConfiguration(NULL, NULL);
- TEST_ASSERT_NOT_NULL(configuration);
- TEST_ASSERT_EQUAL_MESSAGE(configuration->buffer_size, 256, "buffer_size has an incorrect value.");
- TEST_ASSERT_TRUE_MESSAGE(configuration->format, "format has an incorrect value.");
- TEST_ASSERT_TRUE_MESSAGE(configuration->case_sensitive, "case_sensitive has an incorrect value.");
- TEST_ASSERT_TRUE_MESSAGE(configuration->allow_data_after_json, "allow_data_after_json has an incorrect value.");
- TEST_ASSERT_NULL_MESSAGE(configuration->userdata, "Userdata should be NULL");
- TEST_ASSERT_TRUE_MESSAGE(malloc_wrapper == configuration->allocators.allocate, "Wrong malloc.");
- TEST_ASSERT_TRUE_MESSAGE(realloc_wrapper == configuration->allocators.reallocate, "Wrong realloc.");
- TEST_ASSERT_TRUE_MESSAGE(free_wrapper == configuration->allocators.deallocate, "Wrong free.");
- free(configuration);
- }
- static void* custom_allocator(size_t size, void *userdata)
- {
- *((size_t*)userdata) = size;
- return malloc(size);
- }
- static void custom_deallocator(void *pointer, void *userdata)
- {
- *((size_t*)userdata) = (size_t)pointer;
- free(pointer);
- }
- static void create_configuration_should_take_custom_allocators(void)
- {
- internal_configuration *configuration = NULL;
- cJSON_Allocators allocators = {custom_allocator, custom_deallocator, NULL};
- size_t userdata = 0;
- configuration = (internal_configuration*)cJSON_CreateConfiguration(&allocators, &userdata);
- TEST_ASSERT_NOT_NULL(configuration);
- TEST_ASSERT_EQUAL_MESSAGE(userdata, sizeof(internal_configuration), "custom allocator wasn't run properly.");
- TEST_ASSERT_TRUE_MESSAGE(global_default_configuration.allocators.allocate == configuration->allocators.allocate, "Wrong allocator.");
- TEST_ASSERT_TRUE_MESSAGE(global_default_configuration.allocators.deallocate == configuration->allocators.deallocate, "Wrong deallocator.");
- TEST_ASSERT_TRUE_MESSAGE(global_default_configuration.allocators.reallocate == configuration->allocators.reallocate, "Wrong reallocator.");
- custom_deallocator(configuration, &userdata);
- }
- static void create_configuration_should_not_take_incomplete_allocators(void)
- {
- cJSON_Allocators allocators1 = {custom_allocator, NULL, NULL};
- cJSON_Allocators allocators2 = {NULL, custom_deallocator, NULL};
- size_t userdata = 0;
- TEST_ASSERT_NULL(cJSON_CreateConfiguration(&allocators1, &userdata));
- TEST_ASSERT_NULL(cJSON_CreateConfiguration(&allocators2, &userdata));
- }
- static void duplicate_configuration_should_duplicate_a_configuration(void)
- {
- internal_configuration *configuration = NULL;
- configuration = (internal_configuration*)cJSON_DuplicateConfiguration(&global_configuration, NULL, NULL);
- TEST_ASSERT_NOT_NULL(configuration);
- TEST_ASSERT_EQUAL_MEMORY(&global_configuration, configuration, sizeof(internal_configuration));
- free(configuration);
- }
- static void duplicate_configuration_should_take_custom_allocators(void)
- {
- internal_configuration *configuration = NULL;
- cJSON_Allocators allocators = {custom_allocator, custom_deallocator, NULL};
- size_t userdata = 0;
- configuration = (internal_configuration*)cJSON_DuplicateConfiguration(&global_configuration, &allocators, &userdata);
- TEST_ASSERT_NOT_NULL(configuration);
- TEST_ASSERT_EQUAL_MESSAGE(userdata, sizeof(internal_configuration), "custom allocator wasn't run properly");
- TEST_ASSERT_EQUAL_MEMORY(&global_configuration, configuration, sizeof(internal_configuration));
- free(configuration);
- }
- static void duplicate_configuration_should_not_take_incomplete_allocators(void)
- {
- cJSON_Allocators allocators1 = {custom_allocator, NULL, NULL};
- cJSON_Allocators allocators2 = {NULL, custom_deallocator, NULL};
- size_t userdata = 0;
- TEST_ASSERT_NULL(cJSON_DuplicateConfiguration(&global_configuration, &allocators1, &userdata));
- TEST_ASSERT_NULL(cJSON_DuplicateConfiguration(&global_configuration, &allocators2, &userdata));
- }
- static void configuration_change_allocators_should_change_allocators(void)
- {
- internal_configuration *configuration = NULL;
- cJSON_Allocators allocators = {custom_allocator, custom_deallocator, NULL};
- size_t userdata = 0;
- configuration = (internal_configuration*)cJSON_CreateConfiguration(&allocators, &userdata);
- TEST_ASSERT_NOT_NULL(configuration);
- configuration = (internal_configuration*)cJSON_ConfigurationChangeAllocators(configuration, allocators);
- TEST_ASSERT_NOT_NULL(configuration);
- TEST_ASSERT_TRUE_MESSAGE(custom_allocator == configuration->allocators.allocate, "Wrong allocator.");
- TEST_ASSERT_TRUE_MESSAGE(custom_deallocator == configuration->allocators.deallocate, "Wrong deallocator.");
- TEST_ASSERT_NULL_MESSAGE(configuration->allocators.reallocate, "Reallocator is not null");
- custom_deallocator(configuration, &userdata);
- }
- static void configuration_change_allocators_should_not_change_incomplete_allocators(void)
- {
- internal_configuration *configuration = NULL;
- cJSON_Allocators allocators1 = {custom_allocator, NULL, NULL};
- cJSON_Allocators allocators2 = {NULL, custom_deallocator, NULL};
- configuration = (internal_configuration*)cJSON_CreateConfiguration(NULL, NULL);
- TEST_ASSERT_NOT_NULL(configuration);
- TEST_ASSERT_NULL(cJSON_ConfigurationChangeAllocators(configuration, allocators1));
- TEST_ASSERT_NULL(cJSON_ConfigurationChangeAllocators(configuration, allocators2));
- free(configuration);
- }
- static void configuration_change_userdata_should_change_userdata(void)
- {
- internal_configuration *configuration = NULL;
- size_t userdata = 0;
- configuration = (internal_configuration*)cJSON_CreateConfiguration(NULL, NULL);
- TEST_ASSERT_NOT_NULL(configuration);
- configuration = (internal_configuration*)cJSON_ConfigurationChangeUserdata(configuration, &userdata);
- TEST_ASSERT_TRUE_MESSAGE(configuration->userdata == &userdata, "Userdata is incorrect.");
- free(configuration);
- }
- static void configuration_get_parse_end_should_get_the_parse_end(void)
- {
- internal_configuration configuration = global_default_configuration;
- configuration.end_position = 42;
- TEST_ASSERT_EQUAL_MESSAGE(cJSON_ConfigurationGetParseEnd(&configuration), 42, "Failed to get parse end.");
- }
- static void configuration_change_prebuffer_size_should_change_buffer_size(void)
- {
- internal_configuration *configuration = (internal_configuration*)cJSON_CreateConfiguration(NULL, NULL);
- TEST_ASSERT_NOT_NULL(configuration);
- configuration = (internal_configuration*)cJSON_ConfigurationChangePrebufferSize(configuration, 1024);
- TEST_ASSERT_NOT_NULL(configuration);
- TEST_ASSERT_EQUAL_MESSAGE(configuration->buffer_size, 1024, "Didn't set the buffer size correctly.");
- free(configuration);
- }
- static void configuration_change_prebuffer_size_should_not_allow_empty_sizes(void)
- {
- internal_configuration *configuration = (internal_configuration*)cJSON_CreateConfiguration(NULL, NULL);
- TEST_ASSERT_NOT_NULL(configuration);
- TEST_ASSERT_NULL(cJSON_ConfigurationChangePrebufferSize(configuration, 0));
- free(configuration);
- }
- static void configuration_change_format_should_change_format(void)
- {
- internal_configuration *configuration = (internal_configuration*)cJSON_CreateConfiguration(NULL, NULL);
- TEST_ASSERT_NOT_NULL(configuration);
- configuration = (internal_configuration*)cJSON_ConfigurationChangeFormat(configuration, CJSON_FORMAT_MINIFIED);
- TEST_ASSERT_NOT_NULL(configuration);
- TEST_ASSERT_FALSE_MESSAGE(configuration->format, "Failed to set CJSON_FORMAT_MINIFIED.");
- configuration = (internal_configuration*)cJSON_ConfigurationChangeFormat(configuration, CJSON_FORMAT_DEFAULT);
- TEST_ASSERT_NOT_NULL(configuration);
- TEST_ASSERT_TRUE_MESSAGE(configuration->format, "Failed to set CJSON_FORMAT_DEFAULT.");
- TEST_ASSERT_NULL_MESSAGE(cJSON_ConfigurationChangeFormat(configuration, (cJSON_Format)3), "Failed to detect invalid format.");
- free(configuration);
- }
- static void configuration_change_case_sensitivity_should_change_case_sensitivity(void)
- {
- internal_configuration *configuration = (internal_configuration*)cJSON_CreateConfiguration(NULL, NULL);
- TEST_ASSERT_NOT_NULL(configuration);
- configuration = (internal_configuration*)cJSON_ConfigurationChangeCaseSensitivity(configuration, false);
- TEST_ASSERT_NOT_NULL(configuration);
- TEST_ASSERT_FALSE_MESSAGE(configuration->case_sensitive, "Didn't set the case sensitivity correctly.");
- free(configuration);
- }
- static void configuration_change_allow_data_after_json_should_change_allow_data_after_json(void)
- {
- internal_configuration *configuration = (internal_configuration*)cJSON_CreateConfiguration(NULL, NULL);
- TEST_ASSERT_NOT_NULL(configuration);
- configuration = (internal_configuration*)cJSON_ConfigurationChangeAllowDataAfterJson(configuration, false);
- TEST_ASSERT_NOT_NULL(configuration);
- TEST_ASSERT_FALSE_MESSAGE(configuration->allow_data_after_json, "Didn't set allow_data_after_json property correctly.");
- free(configuration);
- }
- int main(void)
- {
- UNITY_BEGIN();
- RUN_TEST(create_configuration_should_create_a_configuration);
- RUN_TEST(create_configuration_should_take_custom_allocators);
- RUN_TEST(create_configuration_should_not_take_incomplete_allocators);
- RUN_TEST(duplicate_configuration_should_duplicate_a_configuration);
- RUN_TEST(duplicate_configuration_should_take_custom_allocators);
- RUN_TEST(duplicate_configuration_should_not_take_incomplete_allocators);
- RUN_TEST(configuration_change_allocators_should_change_allocators);
- RUN_TEST(configuration_change_allocators_should_not_change_incomplete_allocators);
- RUN_TEST(configuration_change_userdata_should_change_userdata);
- RUN_TEST(configuration_get_parse_end_should_get_the_parse_end);
- RUN_TEST(configuration_change_prebuffer_size_should_change_buffer_size);
- RUN_TEST(configuration_change_prebuffer_size_should_not_allow_empty_sizes);
- RUN_TEST(configuration_change_format_should_change_format);
- RUN_TEST(configuration_change_case_sensitivity_should_change_case_sensitivity);
- RUN_TEST(configuration_change_allow_data_after_json_should_change_allow_data_after_json);
- return UNITY_END();
- }
|