urbit/tests/test.c

273 lines
5.0 KiB
C
Raw Normal View History

2014-09-07 04:09:29 +04:00
/* w/test.c
2014-09-03 06:58:36 +04:00
**
*/
#define C3_GLOBAL
#include <stdio.h>
#include <stdlib.h>
#include <fcntl.h>
#include <sys/ioctl.h>
#include <sys/stat.h>
#include <unistd.h>
#include <setjmp.h>
#include <gmp.h>
#include <dirent.h>
#include <stdint.h>
#include <uv.h>
#include <curses.h>
#include <termios.h>
#include <term.h>
#include <errno.h>
2014-09-05 23:55:16 +04:00
#include "all.h"
2014-09-03 06:58:36 +04:00
#if 1
2014-09-06 00:13:24 +04:00
/* u3_walk_load(): load file or bail.
2014-09-03 06:58:36 +04:00
*/
2014-09-06 00:13:24 +04:00
static u3_noun
u3_walk_load(c3_c* pas_c)
2014-09-03 06:58:36 +04:00
{
struct stat buf_b;
c3_i fid_i = open(pas_c, O_RDONLY, 0644);
c3_w fln_w, red_w;
c3_y* pad_y;
if ( (fid_i < 0) || (fstat(fid_i, &buf_b) < 0) ) {
fprintf(stderr, "%s: %s\r\n", pas_c, strerror(errno));
2014-09-06 00:13:24 +04:00
return u3_cm_bail(c3__fail);
2014-09-03 06:58:36 +04:00
}
fln_w = buf_b.st_size;
pad_y = c3_malloc(buf_b.st_size);
red_w = read(fid_i, pad_y, fln_w);
close(fid_i);
if ( fln_w != red_w ) {
free(pad_y);
2014-09-06 00:13:24 +04:00
return u3_cm_bail(c3__fail);
2014-09-03 06:58:36 +04:00
}
else {
2014-09-06 00:13:24 +04:00
u3_noun pad = u3_ci_bytes(fln_w, (c3_y *)pad_y);
2014-09-03 06:58:36 +04:00
free(pad_y);
return pad;
}
}
#endif
#if 0
static c3_w*
_test_walloc(c3_w siz_w)
{
2014-09-06 00:13:24 +04:00
c3_w *ptr_w = u3_ca_walloc(siz_w);
2014-09-03 06:58:36 +04:00
c3_w i_w;
c3_assert(siz_w >= 1);
*ptr_w = siz_w;
for ( i_w = 1; i_w < siz_w; i_w++ ) {
2014-09-06 00:13:24 +04:00
ptr_w[i_w] = u3_cr_mug((0xffff & (c3_p)(ptr_w)) + i_w);
2014-09-03 06:58:36 +04:00
}
return ptr_w;
}
static void
_test_free(c3_w* ptr_w)
{
c3_w i_w, siz_w = *ptr_w;
for ( i_w = 1; i_w < siz_w; i_w++ ) {
2014-09-06 00:13:24 +04:00
c3_assert(ptr_w[i_w] == u3_cr_mug((0xffff & (c3_p)(ptr_w)) + i_w));
2014-09-03 06:58:36 +04:00
}
2014-09-06 00:13:24 +04:00
u3_ca_free(ptr_w);
2014-09-03 06:58:36 +04:00
}
#define NUM 16384
// Simple allocation test.
//
void
test(void)
{
c3_w* one_w[NUM];
c3_w* two_w[NUM];
c3_w i_w;
for ( i_w = 0; i_w < NUM; i_w++ ) {
2014-09-06 00:13:24 +04:00
c3_w siz_w = c3_max(1, u3_cr_mug(i_w) & 0xff);
2014-09-03 06:58:36 +04:00
one_w[i_w] = _test_walloc(siz_w);
two_w[i_w] = _test_walloc(siz_w);
}
_road_sane();
for ( i_w = 0; i_w < NUM; i_w++ ) {
_test_free(two_w[NUM - (i_w + 1)]);
_road_sane();
}
for ( i_w = 0; i_w < NUM; i_w++ ) {
2014-09-06 00:13:24 +04:00
c3_w siz_w = c3_max(1, u3_cr_mug(i_w + 1) & 0xff);
2014-09-03 06:58:36 +04:00
two_w[i_w] = _test_walloc(siz_w);
_road_sane();
}
for ( i_w = 0; i_w < NUM; i_w++ ) {
_test_free(one_w[NUM - (i_w + 1)]);
_road_sane();
}
for ( i_w = 0; i_w < NUM; i_w++ ) {
2014-09-06 00:13:24 +04:00
c3_w siz_w = c3_max(1, u3_cr_mug(i_w + 2) & 0xff);
2014-09-03 06:58:36 +04:00
one_w[i_w] = _test_walloc(siz_w);
_road_sane();
}
for ( i_w = 0; i_w < NUM; i_w++ ) {
_test_free(one_w[NUM - (i_w + 1)]);
_road_sane();
}
for ( i_w = 0; i_w < NUM; i_w++ ) {
_test_free(two_w[NUM - (i_w + 1)]);
_road_sane();
}
printf("allocations %d, iterations %d\n", ALL_w, ITE_w);
}
#endif
2014-09-29 01:56:17 +04:00
#if 1
2014-09-03 06:58:36 +04:00
static void
_test_hash(void)
{
2014-09-29 01:56:17 +04:00
u3_cm_dump();
2014-09-03 06:58:36 +04:00
{
2014-09-06 00:13:24 +04:00
u3_ch_root* har_u = u3_ch_new();
2014-09-03 06:58:36 +04:00
c3_w i_w;
c3_w max_w = (1 << 20);
for ( i_w = 0; i_w < max_w; i_w++ ) {
2014-09-06 00:13:24 +04:00
u3_noun key = u3nc(0, i_w);
2014-09-03 06:58:36 +04:00
2014-09-06 00:13:24 +04:00
u3_ch_put(har_u, key, (i_w + 1));
u3z(key);
2014-09-03 06:58:36 +04:00
}
for ( i_w = 0; i_w < max_w; i_w++ ) {
2014-09-06 00:13:24 +04:00
u3_noun key = u3nc(0, i_w);
u3_noun val = u3_ch_get(har_u, key);
2014-09-03 06:58:36 +04:00
if ( val != (i_w + 1) ) {
2014-09-06 00:13:24 +04:00
if ( u3_none == val ) {
2014-09-03 06:58:36 +04:00
printf("at %d, nothing\n", i_w);
}
else printf("at %d, oddly, is %d\n", i_w, val);
c3_assert(0);
}
2014-09-06 00:13:24 +04:00
u3z(key);
2014-09-03 06:58:36 +04:00
}
2014-09-06 00:13:24 +04:00
u3_ch_free(har_u);
2014-09-03 06:58:36 +04:00
}
2014-09-29 01:56:17 +04:00
u3_cm_dump();
2014-09-03 06:58:36 +04:00
}
2014-09-07 02:39:28 +04:00
#endif
2014-09-03 06:58:36 +04:00
2014-09-29 01:56:17 +04:00
#if 1
2014-09-07 02:39:28 +04:00
static void
_test_jam(void)
2014-09-03 06:58:36 +04:00
{
2014-09-29 01:56:17 +04:00
u3_cm_dump();
2014-09-07 02:39:28 +04:00
{
2014-09-29 01:56:17 +04:00
u3_noun pil = u3_walk_load("urb/urbit.pill");
2014-09-07 02:39:28 +04:00
u3_noun cue, jam;
2014-09-03 06:58:36 +04:00
2014-09-07 02:39:28 +04:00
printf("cueing pill - %d bytes\n", u3_cr_met(3, pil));
cue = u3_cke_cue(pil);
printf("cued - mug %x\n", u3_cr_mug(cue));
2014-09-03 06:58:36 +04:00
2014-09-07 02:39:28 +04:00
#if 1
jam = u3_cke_jam(cue);
printf("jammed - %d bytes\n", u3_cr_met(3, jam));
cue = u3_cke_cue(jam);
printf("cued - mug %x\n", u3_cr_mug(cue));
#endif
2014-09-03 06:58:36 +04:00
2014-09-07 02:39:28 +04:00
u3z(cue);
2014-09-03 06:58:36 +04:00
}
2014-09-29 01:56:17 +04:00
u3_cm_dump();
2014-09-03 06:58:36 +04:00
}
2014-09-07 02:39:28 +04:00
#endif
2014-09-03 06:58:36 +04:00
2014-10-01 23:17:40 +04:00
static void
_test_leap(void)
{
#if 1
u3_cm_dump();
{
u3_noun pil;
u3_noun cue, jam;
2014-10-03 21:44:08 +04:00
c3_w gof_w = u3_cm_golf();
2014-10-01 23:17:40 +04:00
pil = u3_walk_load("urb/urbit.pill");
2014-10-03 21:44:08 +04:00
u3_cm_leap(0);
2014-10-01 23:17:40 +04:00
printf("cueing pill - %d bytes\n", u3_cr_met(3, pil));
cue = u3_cke_cue(pil);
2014-10-03 21:44:08 +04:00
printf("cued - %p, mug %x\n", u3_co_to_ptr(cue), u3_cr_mug(cue));
2014-10-01 23:17:40 +04:00
u3_cm_fall();
cue = u3_ca_take(cue);
2014-10-03 21:44:08 +04:00
printf("taken - %p, mug %x\n", u3_co_to_ptr(cue), u3_cr_mug(cue));
u3_cm_flog(gof_w);
2014-10-01 23:17:40 +04:00
u3z(pil);
#if 1
jam = u3_cke_jam(cue);
printf("jammed - %d bytes\n", u3_cr_met(3, jam));
cue = u3_cke_cue(jam);
printf("cued - mug %x\n", u3_cr_mug(cue));
#endif
u3z(cue);
}
u3_cm_dump();
#endif
}
2014-09-07 08:24:18 +04:00
static void
_test_test(void)
{
2014-09-09 20:44:08 +04:00
u3_noun fol = u3_cke_cue(u3_walk_load("pill/west.pill"));
2014-09-07 08:24:18 +04:00
u3_noun val;
printf("test_test: formula mug %x\n", u3_cr_mug(fol));
val = u3_cn_nock_on(u3nc(42, 17), fol);
printf("val %d\n", val);
u3z(val);
}
2014-09-29 01:56:17 +04:00
int FOO;
2014-09-07 02:39:28 +04:00
// A simple memory tester.
//
int
main(int argc, char *argv[])
2014-09-03 06:58:36 +04:00
{
printf("hello, world: len %dMB\n", (1 << U3_OS_LoomBits) >> 18);
2014-09-07 02:39:28 +04:00
// _test_words();
2014-09-03 06:58:36 +04:00
2014-09-29 01:56:17 +04:00
u3_ce_init(u3_no);
u3_cm_boot(u3_yes);
2014-10-01 23:17:40 +04:00
// u3_cj_boot();
2014-09-29 01:56:17 +04:00
2014-10-01 23:17:40 +04:00
// u3_cm_dump();
2014-09-07 04:09:29 +04:00
2014-09-07 02:39:28 +04:00
printf("booted.\n");
2014-09-03 06:58:36 +04:00
2014-09-07 02:39:28 +04:00
{
2014-10-01 23:17:40 +04:00
_test_leap();
// _test_hash();
2014-09-07 02:39:28 +04:00
// _test_jam();
2014-09-03 06:58:36 +04:00
}
2014-09-07 04:09:29 +04:00
u3_cm_clear();
2014-10-01 23:17:40 +04:00
// u3_cm_dump();
2014-09-03 06:58:36 +04:00
}