ovni/test/unit/loom.c

88 lines
1.7 KiB
C
Raw Normal View History

2023-02-27 13:40:20 +01:00
/* Copyright (c) 2021-2023 Barcelona Supercomputing Center (BSC)
* SPDX-License-Identifier: GPL-3.0-or-later */
2023-01-25 18:11:13 +01:00
#include "emu/loom.h"
#include "emu/cpu.h"
#include "emu/proc.h"
#include "common.h"
#include "utlist.h"
#include "unittest.h"
2023-01-25 18:11:13 +01:00
char testloom[] = "loom.0";
char testproc[] = "loom.0/proc.1";
static void
test_bad_name(struct loom *loom)
{
ERR(loom_init_begin(loom, "blah"));
ERR(loom_init_begin(loom, "loom/blah"));
ERR(loom_init_begin(loom, "loom.123/testloom"));
ERR(loom_init_begin(loom, "loom.123/"));
ERR(loom_init_begin(loom, "/loom.123"));
ERR(loom_init_begin(loom, "./loom.123"));
OK(loom_init_begin(loom, "loom.123"));
2023-01-25 18:11:13 +01:00
err("ok");
}
2023-02-16 16:54:25 +01:00
static void
test_hostname(struct loom *loom)
{
OK(loom_init_begin(loom, "loom.node1.blah"));
2023-02-16 16:54:25 +01:00
if (strcmp(loom->hostname, "node1") != 0)
die("wrong hostname: %s", loom->hostname);
err("ok");
}
2023-01-25 18:11:13 +01:00
static void
test_negative_cpu(struct loom *loom)
{
OK(loom_init_begin(loom, testloom));
2023-01-25 18:11:13 +01:00
struct cpu cpu;
cpu_init_begin(&cpu, -1, -1, 0);
2023-01-25 18:11:13 +01:00
ERR(loom_add_cpu(loom, &cpu));
2023-01-25 18:11:13 +01:00
err("ok");
}
static void
test_duplicate_cpus(struct loom *loom)
{
struct cpu cpu;
OK(loom_init_begin(loom, testloom));
cpu_init_begin(&cpu, 123, 123, 0);
OK(loom_add_cpu(loom, &cpu));
ERR(loom_add_cpu(loom, &cpu));
2023-01-25 18:11:13 +01:00
err("ok");
}
static void
test_duplicate_procs(struct loom *loom)
{
struct proc proc;
OK(loom_init_begin(loom, testloom));
OK(proc_init_begin(&proc, testproc));
OK(loom_add_proc(loom, &proc));
ERR(loom_add_proc(loom, &proc));
2023-01-25 18:11:13 +01:00
err("ok");
}
int main(void)
{
struct loom loom;
test_bad_name(&loom);
2023-02-16 16:54:25 +01:00
test_hostname(&loom);
2023-01-25 18:11:13 +01:00
test_negative_cpu(&loom);
test_duplicate_cpus(&loom);
test_duplicate_procs(&loom);
return 0;
}