2009-08-25 01:54:40 +08:00
|
|
|
/*
|
2012-03-21 02:55:55 +08:00
|
|
|
* Copyright (c) 2009-2012 Petri Lehtinen <petri@digip.org>
|
2009-08-25 01:54:40 +08:00
|
|
|
*
|
|
|
|
* Jansson is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the MIT license. See LICENSE for details.
|
|
|
|
*/
|
|
|
|
|
2012-09-14 02:30:19 +08:00
|
|
|
#include <math.h>
|
2009-08-25 01:54:40 +08:00
|
|
|
#include <jansson.h>
|
|
|
|
#include "util.h"
|
|
|
|
|
2011-10-03 02:27:53 +08:00
|
|
|
static void run_tests()
|
2009-08-25 01:54:40 +08:00
|
|
|
{
|
|
|
|
json_t *integer, *real;
|
2013-03-07 23:27:41 +08:00
|
|
|
json_int_t i;
|
2009-08-25 01:54:40 +08:00
|
|
|
double d;
|
|
|
|
|
|
|
|
integer = json_integer(5);
|
|
|
|
real = json_real(100.1);
|
|
|
|
|
|
|
|
if(!integer)
|
|
|
|
fail("unable to create integer");
|
|
|
|
if(!real)
|
|
|
|
fail("unable to create real");
|
|
|
|
|
|
|
|
i = json_integer_value(integer);
|
|
|
|
if(i != 5)
|
|
|
|
fail("wrong integer value");
|
|
|
|
|
|
|
|
d = json_real_value(real);
|
|
|
|
if(d != 100.1)
|
|
|
|
fail("wrong real value");
|
|
|
|
|
|
|
|
d = json_number_value(integer);
|
|
|
|
if(d != 5.0)
|
|
|
|
fail("wrong number value");
|
|
|
|
d = json_number_value(real);
|
|
|
|
if(d != 100.1)
|
|
|
|
fail("wrong number value");
|
|
|
|
|
|
|
|
json_decref(integer);
|
|
|
|
json_decref(real);
|
2012-09-14 02:30:19 +08:00
|
|
|
|
|
|
|
#ifdef NAN
|
|
|
|
real = json_real(NAN);
|
|
|
|
if(real != NULL)
|
|
|
|
fail("could construct a real from NaN");
|
|
|
|
|
|
|
|
real = json_real(1.0);
|
|
|
|
if(json_real_set(real, NAN) != -1)
|
|
|
|
fail("could set a real to NaN");
|
|
|
|
|
|
|
|
if(json_real_value(real) != 1.0)
|
|
|
|
fail("real value changed unexpectedly");
|
|
|
|
|
|
|
|
json_decref(real);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef INFINITY
|
|
|
|
real = json_real(INFINITY);
|
|
|
|
if(real != NULL)
|
|
|
|
fail("could construct a real from Inf");
|
|
|
|
|
|
|
|
real = json_real(1.0);
|
|
|
|
if(json_real_set(real, INFINITY) != -1)
|
|
|
|
fail("could set a real to Inf");
|
|
|
|
|
|
|
|
if(json_real_value(real) != 1.0)
|
|
|
|
fail("real value changed unexpectedly");
|
|
|
|
|
|
|
|
json_decref(real);
|
|
|
|
#endif
|
2009-08-25 01:54:40 +08:00
|
|
|
}
|