parse_value.c 3.1 KB
Newer Older
M
Max Bruckner 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
/*
  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"
29
#include "common.h"
M
Max Bruckner 已提交
30 31 32 33 34 35 36 37

static cJSON item[1];
const unsigned char *error_pointer = NULL;

static void assert_is_value(cJSON *value_item, int type)
{
    TEST_ASSERT_NOT_NULL_MESSAGE(value_item, "Item is NULL.");

M
Max Bruckner 已提交
38 39 40 41 42
    assert_not_in_list(value_item);
    assert_has_type(value_item, type);
    assert_has_no_reference(value_item);
    assert_has_no_const_string(value_item);
    assert_has_no_string(value_item);
M
Max Bruckner 已提交
43 44 45 46
}

static void assert_parse_value(const char *string, int type)
{
47
    TEST_ASSERT_NOT_NULL(parse_value(item, (const unsigned char*)string, &error_pointer, &global_hooks));
M
Max Bruckner 已提交
48 49 50 51 52 53
    assert_is_value(item, type);
}

static void parse_value_should_parse_null(void)
{
    assert_parse_value("null", cJSON_NULL);
54
    reset(item);
M
Max Bruckner 已提交
55 56 57 58 59
}

static void parse_value_should_parse_true(void)
{
    assert_parse_value("true", cJSON_True);
60
    reset(item);
M
Max Bruckner 已提交
61 62 63 64 65
}

static void parse_value_should_parse_false(void)
{
    assert_parse_value("false", cJSON_False);
66
    reset(item);
M
Max Bruckner 已提交
67 68 69 70 71
}

static void parse_value_should_parse_number(void)
{
    assert_parse_value("1.5", cJSON_Number);
72
    reset(item);
M
Max Bruckner 已提交
73 74 75 76 77
}

static void parse_value_should_parse_string(void)
{
    assert_parse_value("\"\"", cJSON_String);
78
    reset(item);
M
Max Bruckner 已提交
79
    assert_parse_value("\"hello\"", cJSON_String);
80
    reset(item);
M
Max Bruckner 已提交
81 82 83 84 85
}

static void parse_value_should_parse_array(void)
{
    assert_parse_value("[]", cJSON_Array);
86
    reset(item);
M
Max Bruckner 已提交
87 88 89 90 91
}

static void parse_value_should_parse_object(void)
{
    assert_parse_value("{}", cJSON_Object);
92
    reset(item);
M
Max Bruckner 已提交
93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
}

int main(void)
{
    /* initialize cJSON item */
    memset(item, 0, sizeof(cJSON));
    UNITY_BEGIN();
    RUN_TEST(parse_value_should_parse_null);
    RUN_TEST(parse_value_should_parse_true);
    RUN_TEST(parse_value_should_parse_false);
    RUN_TEST(parse_value_should_parse_number);
    RUN_TEST(parse_value_should_parse_string);
    RUN_TEST(parse_value_should_parse_array);
    RUN_TEST(parse_value_should_parse_object);
    return UNITY_END();
}