mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-04-30 03:40:34 +02:00
New file.
This commit is contained in:
parent
2aac7a4825
commit
170bb182fa
1 changed files with 511 additions and 0 deletions
511
test-suite/standalone/test-conversion.c
Normal file
511
test-suite/standalone/test-conversion.c
Normal file
|
@ -0,0 +1,511 @@
|
|||
/* Copyright (C) 1999,2000,2001,2003,2004 Free Software Foundation, Inc.
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Lesser General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 2.1 of the License, or (at your option) any later version.
|
||||
*
|
||||
* This library is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* Lesser General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Lesser General Public
|
||||
* License along with this library; if not, write to the Free Software
|
||||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*/
|
||||
|
||||
#include "libguile.h"
|
||||
|
||||
#include <stdio.h>
|
||||
#include <assert.h>
|
||||
|
||||
#define SCM_T_UINTMAX_MAX (~(scm_t_uintmax)0)
|
||||
#define SCM_T_UINTMAX_MIN ((scm_t_uintmax)0)
|
||||
#define SCM_T_INTMAX_MAX ((scm_t_intmax)(SCM_T_UINTMAX_MAX/2))
|
||||
#define SCM_T_INTMAX_MIN (~SCM_T_INTMAX_MAX)
|
||||
|
||||
static void
|
||||
test_1 (const char *str, scm_t_intmax min, scm_t_intmax max,
|
||||
int result)
|
||||
{
|
||||
int r = scm_is_signed_integer (scm_c_eval_string (str), min, max);
|
||||
if (r != result)
|
||||
{
|
||||
fprintf (stderr, "fail: scm_is_signed_integer (%s, %Ld, %Ld) == %d\n",
|
||||
str, min, max, result);
|
||||
exit (1);
|
||||
}
|
||||
}
|
||||
|
||||
static void
|
||||
test_is_signed_integer ()
|
||||
{
|
||||
test_1 ("'foo",
|
||||
SCM_T_INTMAX_MIN, SCM_T_INTMAX_MAX,
|
||||
0);
|
||||
test_1 ("3.0",
|
||||
SCM_T_INTMAX_MIN, SCM_T_INTMAX_MAX,
|
||||
1);
|
||||
test_1 ("3.5",
|
||||
SCM_T_INTMAX_MIN, SCM_T_INTMAX_MAX,
|
||||
0);
|
||||
test_1 ("most-positive-fixnum",
|
||||
SCM_T_INTMAX_MIN, SCM_T_INTMAX_MAX,
|
||||
1);
|
||||
test_1 ("(+ most-positive-fixnum 1)",
|
||||
SCM_T_INTMAX_MIN, SCM_T_INTMAX_MAX,
|
||||
1);
|
||||
test_1 ("most-negative-fixnum",
|
||||
SCM_T_INTMAX_MIN, SCM_T_INTMAX_MAX,
|
||||
1);
|
||||
test_1 ("(- most-negative-fixnum 1)",
|
||||
SCM_T_INTMAX_MIN, SCM_T_INTMAX_MAX,
|
||||
1);
|
||||
if (sizeof (scm_t_intmax) == 8)
|
||||
{
|
||||
test_1 ("(- (expt 2 63) 1)",
|
||||
SCM_T_INTMAX_MIN, SCM_T_INTMAX_MAX,
|
||||
1);
|
||||
test_1 ("(expt 2 63)",
|
||||
SCM_T_INTMAX_MIN, SCM_T_INTMAX_MAX,
|
||||
0);
|
||||
test_1 ("(- (expt 2 63))",
|
||||
SCM_T_INTMAX_MIN, SCM_T_INTMAX_MAX,
|
||||
1);
|
||||
test_1 ("(- (- (expt 2 63)) 1)",
|
||||
SCM_T_INTMAX_MIN, SCM_T_INTMAX_MAX,
|
||||
0);
|
||||
}
|
||||
else if (sizeof (scm_t_intmax) == 4)
|
||||
{
|
||||
test_1 ("(- (expt 2 31) 1)",
|
||||
SCM_T_INTMAX_MIN, SCM_T_INTMAX_MAX,
|
||||
1);
|
||||
test_1 ("(expt 2 31)",
|
||||
SCM_T_INTMAX_MIN, SCM_T_INTMAX_MAX,
|
||||
0);
|
||||
test_1 ("(- (expt 2 31))",
|
||||
SCM_T_INTMAX_MIN, SCM_T_INTMAX_MAX,
|
||||
1);
|
||||
test_1 ("(- (- (expt 2 31)) 1)",
|
||||
SCM_T_INTMAX_MIN, SCM_T_INTMAX_MAX,
|
||||
0);
|
||||
}
|
||||
else
|
||||
fprintf (stderr, "NOTE: skipped some tests.\n");
|
||||
|
||||
/* bignum with range that fits into fixnum. */
|
||||
test_1 ("(+ most-positive-fixnum 1)",
|
||||
-32768, 32767,
|
||||
0);
|
||||
|
||||
/* bignum with range that doesn't fit into fixnum, but probably
|
||||
fits into long. */
|
||||
test_1 ("(+ most-positive-fixnum 1)",
|
||||
SCM_MOST_NEGATIVE_FIXNUM-1, SCM_MOST_POSITIVE_FIXNUM+1,
|
||||
1);
|
||||
}
|
||||
|
||||
static void
|
||||
test_2 (const char *str, scm_t_uintmax min, scm_t_uintmax max,
|
||||
int result)
|
||||
{
|
||||
int r = scm_is_unsigned_integer (scm_c_eval_string (str), min, max);
|
||||
if (r != result)
|
||||
{
|
||||
fprintf (stderr, "fail: scm_is_unsigned_integer (%s, %Lu, %Lu) == %d\n",
|
||||
str, min, max, result);
|
||||
exit (1);
|
||||
}
|
||||
}
|
||||
|
||||
static void
|
||||
test_is_unsigned_integer ()
|
||||
{
|
||||
test_2 ("'foo",
|
||||
SCM_T_UINTMAX_MIN, SCM_T_UINTMAX_MAX,
|
||||
0);
|
||||
test_2 ("3.0",
|
||||
SCM_T_UINTMAX_MIN, SCM_T_UINTMAX_MAX,
|
||||
1);
|
||||
test_2 ("3.5",
|
||||
SCM_T_UINTMAX_MIN, SCM_T_UINTMAX_MAX,
|
||||
0);
|
||||
test_2 ("most-positive-fixnum",
|
||||
SCM_T_UINTMAX_MIN, SCM_T_UINTMAX_MAX,
|
||||
1);
|
||||
test_2 ("(+ most-positive-fixnum 1)",
|
||||
SCM_T_UINTMAX_MIN, SCM_T_UINTMAX_MAX,
|
||||
1);
|
||||
test_2 ("most-negative-fixnum",
|
||||
SCM_T_UINTMAX_MIN, SCM_T_UINTMAX_MAX,
|
||||
0);
|
||||
test_2 ("(- most-negative-fixnum 1)",
|
||||
SCM_T_UINTMAX_MIN, SCM_T_UINTMAX_MAX,
|
||||
0);
|
||||
if (sizeof (scm_t_intmax) == 8)
|
||||
{
|
||||
test_2 ("(- (expt 2 64) 1)",
|
||||
SCM_T_UINTMAX_MIN, SCM_T_UINTMAX_MAX,
|
||||
1);
|
||||
test_2 ("(expt 2 64)",
|
||||
SCM_T_UINTMAX_MIN, SCM_T_UINTMAX_MAX,
|
||||
0);
|
||||
}
|
||||
else if (sizeof (scm_t_intmax) == 4)
|
||||
{
|
||||
test_2 ("(- (expt 2 32) 1)",
|
||||
SCM_T_UINTMAX_MIN, SCM_T_UINTMAX_MAX,
|
||||
1);
|
||||
test_2 ("(expt 2 32)",
|
||||
SCM_T_UINTMAX_MIN, SCM_T_UINTMAX_MAX,
|
||||
0);
|
||||
}
|
||||
else
|
||||
fprintf (stderr, "NOTE: skipped some tests.\n");
|
||||
|
||||
/* bignum with range that fits into fixnum. */
|
||||
test_2 ("(+ most-positive-fixnum 1)",
|
||||
0, 32767,
|
||||
0);
|
||||
|
||||
/* bignum with range that doesn't fit into fixnum, but probably
|
||||
fits into long. */
|
||||
test_2 ("(+ most-positive-fixnum 1)",
|
||||
0, SCM_MOST_POSITIVE_FIXNUM+1,
|
||||
1);
|
||||
}
|
||||
|
||||
typedef struct {
|
||||
SCM val;
|
||||
scm_t_intmax min, max;
|
||||
scm_t_intmax result;
|
||||
} to_signed_data;
|
||||
|
||||
static SCM
|
||||
out_of_range_handler (void *data, SCM key, SCM args)
|
||||
{
|
||||
return scm_equal_p (key, scm_str2symbol ("out-of-range"));
|
||||
}
|
||||
|
||||
static SCM
|
||||
wrong_type_handler (void *data, SCM key, SCM args)
|
||||
{
|
||||
return scm_equal_p (key, scm_str2symbol ("wrong-type-arg"));
|
||||
}
|
||||
|
||||
static SCM
|
||||
any_handler (void *data, SCM key, SCM args)
|
||||
{
|
||||
return SCM_BOOL_T;
|
||||
}
|
||||
|
||||
static SCM
|
||||
to_signed_integer_body (void *data)
|
||||
{
|
||||
to_signed_data *d = (to_signed_data *)data;
|
||||
d->result = scm_to_signed_integer (d->val, d->min, d->max);
|
||||
return SCM_BOOL_F;
|
||||
}
|
||||
|
||||
static void
|
||||
test_3 (const char *str, scm_t_intmax min, scm_t_intmax max,
|
||||
scm_t_intmax result, int range_error, int type_error)
|
||||
{
|
||||
to_signed_data data;
|
||||
data.val = scm_c_eval_string (str);
|
||||
data.min = min;
|
||||
data.max = max;
|
||||
|
||||
if (range_error)
|
||||
{
|
||||
if (scm_is_false (scm_internal_catch (SCM_BOOL_T,
|
||||
to_signed_integer_body, &data,
|
||||
out_of_range_handler, NULL)))
|
||||
{
|
||||
fprintf (stderr,
|
||||
"fail: scm_to_signed_int (%s, %Ld, %Ld) -> out of range\n",
|
||||
str, min, max);
|
||||
exit (1);
|
||||
}
|
||||
}
|
||||
else if (type_error)
|
||||
{
|
||||
if (scm_is_false (scm_internal_catch (SCM_BOOL_T,
|
||||
to_signed_integer_body, &data,
|
||||
wrong_type_handler, NULL)))
|
||||
{
|
||||
fprintf (stderr,
|
||||
"fail: scm_to_signed_int (%s, %Ld, %Ld) -> wrong type\n",
|
||||
str, min, max);
|
||||
exit (1);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
if (scm_is_true (scm_internal_catch (SCM_BOOL_T,
|
||||
to_signed_integer_body, &data,
|
||||
any_handler, NULL))
|
||||
|| data.result != result)
|
||||
{
|
||||
fprintf (stderr,
|
||||
"fail: scm_to_signed_int (%s, %Ld, %Ld) = %Ld\n",
|
||||
str, min, max, result);
|
||||
exit (1);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
static void
|
||||
test_to_signed_integer ()
|
||||
{
|
||||
test_3 ("'foo",
|
||||
SCM_T_INTMAX_MIN, SCM_T_INTMAX_MAX,
|
||||
0, 0, 1);
|
||||
test_3 ("3.5",
|
||||
SCM_T_INTMAX_MIN, SCM_T_INTMAX_MAX,
|
||||
0, 0, 1);
|
||||
test_3 ("12",
|
||||
SCM_T_INTMAX_MIN, SCM_T_INTMAX_MAX,
|
||||
12, 0, 0);
|
||||
test_3 ("1000",
|
||||
-999, 999,
|
||||
0, 1, 0);
|
||||
test_3 ("-1000",
|
||||
-999, 999,
|
||||
0, 1, 0);
|
||||
test_3 ("most-positive-fixnum",
|
||||
SCM_T_INTMAX_MIN, SCM_T_INTMAX_MAX,
|
||||
SCM_MOST_POSITIVE_FIXNUM, 0, 0);
|
||||
test_3 ("most-negative-fixnum",
|
||||
SCM_T_INTMAX_MIN, SCM_T_INTMAX_MAX,
|
||||
SCM_MOST_NEGATIVE_FIXNUM, 0, 0);
|
||||
test_3 ("(+ most-positive-fixnum 1)",
|
||||
SCM_T_INTMAX_MIN, SCM_T_INTMAX_MAX,
|
||||
SCM_MOST_POSITIVE_FIXNUM+1, 0, 0);
|
||||
test_3 ("(- most-negative-fixnum 1)",
|
||||
SCM_T_INTMAX_MIN, SCM_T_INTMAX_MAX,
|
||||
SCM_MOST_NEGATIVE_FIXNUM-1, 0, 0);
|
||||
if (sizeof (scm_t_intmax) == 8)
|
||||
{
|
||||
test_3 ("(- (expt 2 63) 1)",
|
||||
SCM_T_INTMAX_MIN, SCM_T_INTMAX_MAX,
|
||||
SCM_T_INTMAX_MAX, 0, 0);
|
||||
test_3 ("(+ (- (expt 2 63)) 1)",
|
||||
SCM_T_INTMAX_MIN, SCM_T_INTMAX_MAX,
|
||||
SCM_T_INTMAX_MIN+1, 0, 0);
|
||||
test_3 ("(- (expt 2 63))",
|
||||
SCM_T_INTMAX_MIN, SCM_T_INTMAX_MAX,
|
||||
SCM_T_INTMAX_MIN, 0, 0);
|
||||
test_3 ("(expt 2 63)",
|
||||
SCM_T_INTMAX_MIN, SCM_T_INTMAX_MAX,
|
||||
0, 1, 0);
|
||||
test_3 ("(- (- (expt 2 63)) 1)",
|
||||
SCM_T_INTMAX_MIN, SCM_T_INTMAX_MAX,
|
||||
0, 1, 0);
|
||||
}
|
||||
else if (sizeof (scm_t_intmax) == 4)
|
||||
{
|
||||
test_3 ("(- (expt 2 31) 1)",
|
||||
SCM_T_INTMAX_MIN, SCM_T_INTMAX_MAX,
|
||||
SCM_T_INTMAX_MAX, 0, 0);
|
||||
test_3 ("(+ (- (expt 2 31)) 1)",
|
||||
SCM_T_INTMAX_MIN, SCM_T_INTMAX_MAX,
|
||||
SCM_T_INTMAX_MIN+1, 0, 0);
|
||||
test_3 ("(- (expt 2 31))",
|
||||
SCM_T_INTMAX_MIN, SCM_T_INTMAX_MAX,
|
||||
SCM_T_INTMAX_MIN, 0, 0);
|
||||
test_3 ("(expt 2 31)",
|
||||
SCM_T_INTMAX_MIN, SCM_T_INTMAX_MAX,
|
||||
0, 1, 0);
|
||||
test_3 ("(- (- (expt 2 31)) 1)",
|
||||
SCM_T_INTMAX_MIN, SCM_T_INTMAX_MAX,
|
||||
0, 1, 0);
|
||||
}
|
||||
else
|
||||
fprintf (stderr, "NOTE: skipped some tests.\n");
|
||||
}
|
||||
|
||||
typedef struct {
|
||||
SCM val;
|
||||
scm_t_uintmax min, max;
|
||||
scm_t_uintmax result;
|
||||
} to_unsigned_data;
|
||||
|
||||
static SCM
|
||||
to_unsigned_integer_body (void *data)
|
||||
{
|
||||
to_unsigned_data *d = (to_unsigned_data *)data;
|
||||
d->result = scm_to_unsigned_integer (d->val, d->min, d->max);
|
||||
return SCM_BOOL_F;
|
||||
}
|
||||
|
||||
static void
|
||||
test_4 (const char *str, scm_t_uintmax min, scm_t_uintmax max,
|
||||
scm_t_uintmax result, int range_error, int type_error)
|
||||
{
|
||||
to_unsigned_data data;
|
||||
data.val = scm_c_eval_string (str);
|
||||
data.min = min;
|
||||
data.max = max;
|
||||
|
||||
if (range_error)
|
||||
{
|
||||
if (scm_is_false (scm_internal_catch (SCM_BOOL_T,
|
||||
to_unsigned_integer_body, &data,
|
||||
out_of_range_handler, NULL)))
|
||||
{
|
||||
fprintf (stderr,
|
||||
"fail: scm_to_unsigned_int (%s, %Lu, %Lu) -> out of range\n",
|
||||
str, min, max);
|
||||
exit (1);
|
||||
}
|
||||
}
|
||||
else if (type_error)
|
||||
{
|
||||
if (scm_is_false (scm_internal_catch (SCM_BOOL_T,
|
||||
to_unsigned_integer_body, &data,
|
||||
wrong_type_handler, NULL)))
|
||||
{
|
||||
fprintf (stderr,
|
||||
"fail: scm_to_unsigned_int (%s, %Lu, %Lu) -> wrong type\n",
|
||||
str, min, max);
|
||||
exit (1);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
if (scm_is_true (scm_internal_catch (SCM_BOOL_T,
|
||||
to_unsigned_integer_body, &data,
|
||||
any_handler, NULL))
|
||||
|| data.result != result)
|
||||
{
|
||||
fprintf (stderr,
|
||||
"fail: scm_to_unsigned_int (%s, %Lu, %Lu) == %Lu\n",
|
||||
str, min, max, result);
|
||||
exit (1);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
static void
|
||||
test_to_unsigned_integer ()
|
||||
{
|
||||
test_4 ("'foo",
|
||||
SCM_T_UINTMAX_MIN, SCM_T_UINTMAX_MAX,
|
||||
0, 0, 1);
|
||||
test_4 ("3.5",
|
||||
SCM_T_UINTMAX_MIN, SCM_T_UINTMAX_MAX,
|
||||
0, 0, 1);
|
||||
test_4 ("12",
|
||||
SCM_T_UINTMAX_MIN, SCM_T_UINTMAX_MAX,
|
||||
12, 0, 0);
|
||||
test_4 ("1000",
|
||||
0, 999,
|
||||
0, 1, 0);
|
||||
test_4 ("most-positive-fixnum",
|
||||
SCM_T_UINTMAX_MIN, SCM_T_UINTMAX_MAX,
|
||||
SCM_MOST_POSITIVE_FIXNUM, 0, 0);
|
||||
test_4 ("(+ most-positive-fixnum 1)",
|
||||
SCM_T_UINTMAX_MIN, SCM_T_UINTMAX_MAX,
|
||||
SCM_MOST_POSITIVE_FIXNUM+1, 0, 0);
|
||||
if (sizeof (scm_t_intmax) == 8)
|
||||
{
|
||||
test_4 ("(- (expt 2 64) 1)",
|
||||
SCM_T_UINTMAX_MIN, SCM_T_UINTMAX_MAX,
|
||||
SCM_T_UINTMAX_MAX, 0, 0);
|
||||
test_4 ("(expt 2 64)",
|
||||
SCM_T_UINTMAX_MIN, SCM_T_UINTMAX_MAX,
|
||||
0, 1, 0);
|
||||
}
|
||||
else if (sizeof (scm_t_intmax) == 4)
|
||||
{
|
||||
test_4 ("(- (expt 2 32) 1)",
|
||||
SCM_T_UINTMAX_MIN, SCM_T_UINTMAX_MAX,
|
||||
SCM_T_UINTMAX_MAX, 0, 0);
|
||||
test_4 ("(expt 2 32)",
|
||||
SCM_T_UINTMAX_MIN, SCM_T_UINTMAX_MAX,
|
||||
0, 1, 0);
|
||||
}
|
||||
else
|
||||
fprintf (stderr, "NOTE: skipped some tests.\n");
|
||||
}
|
||||
|
||||
static void
|
||||
test_5 (scm_t_intmax val, const char *result)
|
||||
{
|
||||
SCM res = scm_c_eval_string (result);
|
||||
if (scm_is_false (scm_equal_p (scm_from_signed_integer (val), res)))
|
||||
{
|
||||
fprintf (stderr, "fail: scm_from_signed_integer (%Ld) == %s\n",
|
||||
val, result);
|
||||
exit (1);
|
||||
}
|
||||
}
|
||||
|
||||
static void
|
||||
test_from_signed_integer ()
|
||||
{
|
||||
test_5 (12, "12");
|
||||
if (sizeof (scm_t_intmax) == 8)
|
||||
{
|
||||
test_5 (SCM_T_INTMAX_MAX, "(- (expt 2 63) 1)");
|
||||
test_5 (SCM_T_INTMAX_MIN, "(- (expt 2 63))");
|
||||
}
|
||||
else if (sizeof (scm_t_intmax) == 4)
|
||||
{
|
||||
test_5 (SCM_T_INTMAX_MAX, "(- (expt 2 31) 1)");
|
||||
test_5 (SCM_T_INTMAX_MIN, "(- (expt 2 31))");
|
||||
}
|
||||
test_5 (SCM_MOST_POSITIVE_FIXNUM, "most-positive-fixnum");
|
||||
test_5 (SCM_MOST_NEGATIVE_FIXNUM, "most-negative-fixnum");
|
||||
test_5 (SCM_MOST_POSITIVE_FIXNUM+1, "(+ most-positive-fixnum 1)");
|
||||
test_5 (SCM_MOST_NEGATIVE_FIXNUM-1, "(- most-negative-fixnum 1)");
|
||||
}
|
||||
|
||||
static void
|
||||
test_6 (scm_t_uintmax val, const char *result)
|
||||
{
|
||||
SCM res = scm_c_eval_string (result);
|
||||
if (scm_is_false (scm_equal_p (scm_from_unsigned_integer (val), res)))
|
||||
{
|
||||
scm_write (scm_from_unsigned_integer (val), SCM_UNDEFINED);
|
||||
scm_newline (SCM_UNDEFINED);
|
||||
scm_write (res, SCM_UNDEFINED);
|
||||
scm_newline (SCM_UNDEFINED);
|
||||
|
||||
fprintf (stderr, "fail: scm_from_unsigned_integer (%Lu) == %s\n",
|
||||
val, result);
|
||||
exit (1);
|
||||
}
|
||||
}
|
||||
|
||||
static void
|
||||
test_from_unsigned_integer ()
|
||||
{
|
||||
test_6 (12, "12");
|
||||
if (sizeof (scm_t_intmax) == 8)
|
||||
{
|
||||
test_6 (SCM_T_UINTMAX_MAX, "(- (expt 2 64) 1)");
|
||||
}
|
||||
else if (sizeof (scm_t_intmax) == 4)
|
||||
{
|
||||
test_6 (SCM_T_UINTMAX_MAX, "(- (expt 2 32) 1)");
|
||||
}
|
||||
test_6 (SCM_MOST_POSITIVE_FIXNUM, "most-positive-fixnum");
|
||||
test_6 (SCM_MOST_POSITIVE_FIXNUM+1, "(+ most-positive-fixnum 1)");
|
||||
}
|
||||
|
||||
int
|
||||
main (int argc, char *argv[])
|
||||
{
|
||||
scm_init_guile();
|
||||
test_is_signed_integer ();
|
||||
test_is_unsigned_integer ();
|
||||
test_to_signed_integer ();
|
||||
test_to_unsigned_integer ();
|
||||
test_from_signed_integer ();
|
||||
test_from_unsigned_integer ();
|
||||
return 0;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue