tests-vfs-dir-ops.c
2.76 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
/*
* Copyright (C) 2016 Eistec AB
*
* This file is subject to the terms and conditions of the GNU Lesser
* General Public License v2.1. See the file LICENSE in the top level
* directory for more details.
*/
/**
* @{
*
* @file
* @brief Transparent-box unit tests of vfs functions stubs used when the file
* system does not implement the requested function.
*/
#include <errno.h>
#include <stddef.h>
#include <stdint.h>
#include <string.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#include "embUnit/embUnit.h"
#include "vfs.h"
#include "tests-vfs.h"
static const vfs_file_system_ops_t null_fs_ops = {
.mount = NULL,
.umount = NULL,
.unlink = NULL,
.statvfs = NULL,
.stat = NULL,
};
static const vfs_file_ops_t null_file_ops = {
.close = NULL,
.fstat = NULL,
.lseek = NULL,
.open = NULL,
.read = NULL,
.write = NULL,
};
static const vfs_dir_ops_t null_dir_ops = {
.opendir = NULL,
.readdir = NULL,
.closedir = NULL,
};
static const vfs_file_system_t null_file_system = {
.f_op = &null_file_ops,
.fs_op = &null_fs_ops,
.d_op = &null_dir_ops,
};
static vfs_mount_t _test_vfs_mount_null = {
.mount_point = "/test",
.fs = &null_file_system,
.private_data = NULL,
};
static int _test_vfs_dir_op_status = -1;
static vfs_DIR _test_dir;
static void setup(void)
{
int res = vfs_mount(&_test_vfs_mount_null);
if (res < 0) {
_test_vfs_dir_op_status = -1;
return;
}
_test_vfs_dir_op_status = vfs_opendir(&_test_dir, "/test/mydir");
}
static void teardown(void)
{
if (_test_vfs_dir_op_status >= 0) {
vfs_closedir(&_test_dir);
_test_vfs_dir_op_status = -1;
}
vfs_umount(&_test_vfs_mount_null);
}
static void test_vfs_null_dir_ops_opendir(void)
{
TEST_ASSERT_EQUAL_INT(0, _test_vfs_dir_op_status);
int res = vfs_opendir(NULL, "/test/mydir2");
TEST_ASSERT_EQUAL_INT(-EINVAL, res);
}
static void test_vfs_null_dir_ops_closedir(void)
{
TEST_ASSERT_EQUAL_INT(0, _test_vfs_dir_op_status);
int res = vfs_closedir(&_test_dir);
TEST_ASSERT_EQUAL_INT(0, res);
res = vfs_closedir(&_test_dir);
TEST_ASSERT_EQUAL_INT(-EBADF, res);
}
static void test_vfs_null_dir_ops_readdir(void)
{
TEST_ASSERT_EQUAL_INT(0, _test_vfs_dir_op_status);
vfs_dirent_t buf;
int res = vfs_readdir(&_test_dir, &buf);
TEST_ASSERT_EQUAL_INT(-EINVAL, res);
}
Test *tests_vfs_null_dir_ops_tests(void)
{
EMB_UNIT_TESTFIXTURES(fixtures) {
new_TestFixture(test_vfs_null_dir_ops_opendir),
new_TestFixture(test_vfs_null_dir_ops_closedir),
new_TestFixture(test_vfs_null_dir_ops_readdir),
};
EMB_UNIT_TESTCALLER(vfs_dir_op_tests, setup, teardown, fixtures);
return (Test *)&vfs_dir_op_tests;
}
/** @} */