view tests/test-vfs-dir.c @ 646:7e1eb7f6c049 default tip @

misc: remove .clang
author David Demelier <markand@malikania.fr>
date Sun, 04 Feb 2024 15:24:37 +0100
parents fcd124e513ea
children
line wrap: on
line source

/*
 * test-vfs-directory.c -- test VFS directory
 *
 * Copyright (c) 2020-2022 David Demelier <markand@malikania.fr>
 *
 * Permission to use, copy, modify, and/or distribute this software for any
 * purpose with or without fee is hereby granted, provided that the above
 * copyright notice and this permission notice appear in all copies.
 *
 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 */

#include <mlk/core/vfs-dir.h>

#include <dt.h>

static void
test_basics_read(void)
{
	struct mlk_vfs_dir dir;
	struct mlk_vfs_file *file;
	char data[256] = {};

	mlk_vfs_dir_init(&dir, DIRECTORY "/vfs/directory");

	DT_ASSERT(file = mlk_vfs_open(&dir.vfs, "hello.txt", "r"));
	DT_EQ_UINT(mlk_vfs_file_read(file, data, sizeof (data)), 13U);
	DT_EQ_STR(data, "Hello World!\n");

	mlk_vfs_file_finish(file);
	mlk_vfs_finish(&dir.vfs);
}

static void
test_error_notfound(void)
{
	struct mlk_vfs_dir dir;

	mlk_vfs_dir_init(&dir, DIRECTORY "/vfs/directory");

	DT_ASSERT(!mlk_vfs_open(&dir.vfs, "notfound.txt", "r"));

	mlk_vfs_finish(&dir.vfs);
}

int
main(void)
{
	DT_RUN(test_basics_read);
	DT_RUN(test_error_notfound);
	DT_SUMMARY();
}