Browse Source

Merge pull request #121 from TazeTSchnitzel/LowercaseLiterals

Missing lowercase literals test
tags/json-c-0.12-20140410
Eric Haszlakiewicz 11 years ago
parent
commit
db117ca02b
3 changed files with 53 additions and 0 deletions
  1. +40
    -0
      tests/test_case.c
  2. +1
    -0
      tests/test_case.expected
  3. +12
    -0
      tests/test_case.test

+ 40
- 0
tests/test_case.c View File

@@ -0,0 +1,40 @@
#include <stdio.h>
#include <stdlib.h>
#include <stddef.h>
#include <string.h>
#include <assert.h>

#include "json.h"
#include "json_tokener.h"

static void test_case_parse(void);

int main(int argc, char **argv)
{
MC_SET_DEBUG(1);

test_case_parse();
}

/* make sure only lowercase forms are parsed in strict mode */
static void test_case_parse()
{
struct json_tokener *tok;
json_object *new_obj;

tok = json_tokener_new();
json_tokener_set_flags(tok, JSON_TOKENER_STRICT);

new_obj = json_tokener_parse_ex(tok, "True", 4);
assert (new_obj == NULL);

new_obj = json_tokener_parse_ex(tok, "False", 5);
assert (new_obj == NULL);

new_obj = json_tokener_parse_ex(tok, "Null", 4);
assert (new_obj == NULL);

printf("OK\n");
json_tokener_free(tok);
}

+ 1
- 0
tests/test_case.expected View File

@@ -0,0 +1 @@
OK

+ 12
- 0
tests/test_case.test View File

@@ -0,0 +1,12 @@
#!/bin/sh

# Common definitions
if test -z "$srcdir"; then
srcdir="${0%/*}"
test "$srcdir" = "$0" && srcdir=.
test -z "$srcdir" && srcdir=.
fi
. "$srcdir/test-defs.sh"

run_output_test test_case
exit $?

Loading…
Cancel
Save