Blame view

RIOT/tests/unittests/tests-vfs/tests-vfs-file-system-ops.c 4.11 KB
a752c7ab   elopes   add first test an...
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
  /*
   * 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_fs_op_mount_res = -1;
  
  static void setup(void)
  {
      _test_vfs_fs_op_mount_res = vfs_mount(&_test_vfs_mount_null);
  }
  
  static void teardown(void)
  {
      vfs_umount(&_test_vfs_mount_null);
  }
  
  static void test_vfs_null_fs_ops_mount(void)
  {
      TEST_ASSERT_EQUAL_INT(0, _test_vfs_fs_op_mount_res);
      int res = vfs_mount(&_test_vfs_mount_null);
      /* Already mounted */
      TEST_ASSERT_EQUAL_INT(-EBUSY, res);
  }
  
  static void test_vfs_null_fs_ops_umount(void)
  {
      TEST_ASSERT_EQUAL_INT(0, _test_vfs_fs_op_mount_res);
      int res = vfs_umount(&_test_vfs_mount_null);
      TEST_ASSERT_EQUAL_INT(0, res);
      res = vfs_umount(&_test_vfs_mount_null);
      /* Not mounted */
      TEST_ASSERT_EQUAL_INT(-EINVAL, res);
  }
  
  static void test_vfs_null_fs_ops_rename(void)
  {
      TEST_ASSERT_EQUAL_INT(0, _test_vfs_fs_op_mount_res);
      int res = vfs_rename("/test/foo", "/test/bar");
      TEST_ASSERT_EQUAL_INT(-EPERM, res);
  }
  
  static void test_vfs_null_fs_ops_unlink(void)
  {
      TEST_ASSERT_EQUAL_INT(0, _test_vfs_fs_op_mount_res);
      int res = vfs_unlink("/test/foo");
      TEST_ASSERT_EQUAL_INT(-EPERM, res);
  }
  
  static void test_vfs_null_fs_ops_mkdir(void)
  {
      TEST_ASSERT_EQUAL_INT(0, _test_vfs_fs_op_mount_res);
      int res = vfs_mkdir("/test/foodir", 0);
      TEST_ASSERT_EQUAL_INT(-EPERM, res);
  }
  
  static void test_vfs_null_fs_ops_rmdir(void)
  {
      TEST_ASSERT_EQUAL_INT(0, _test_vfs_fs_op_mount_res);
      int res = vfs_rmdir("/test/foodir");
      TEST_ASSERT_EQUAL_INT(-EPERM, res);
  }
  
  static void test_vfs_null_fs_ops_stat(void)
  {
      TEST_ASSERT_EQUAL_INT(0, _test_vfs_fs_op_mount_res);
      struct stat buf;
      int res = vfs_stat("/test/foo", &buf);
      TEST_ASSERT_EQUAL_INT(-EPERM, res);
  }
  
  static void test_vfs_null_fs_ops_statvfs(void)
  {
      TEST_ASSERT_EQUAL_INT(0, _test_vfs_fs_op_mount_res);
      struct statvfs buf;
      int res = vfs_statvfs("/test", &buf);
      TEST_ASSERT_EQUAL_INT(-EPERM, res);
  }
  
  static void test_vfs_null_fs_ops_fstatvfs(void)
  {
      TEST_ASSERT_EQUAL_INT(0, _test_vfs_fs_op_mount_res);
      int fd = vfs_open("/test/baz", O_RDONLY, 0);
      TEST_ASSERT(fd >= 0);
      struct statvfs buf;
      int res = vfs_fstatvfs(fd, &buf);
      TEST_ASSERT_EQUAL_INT(-EINVAL, res);
  }
  
  
  Test *tests_vfs_null_file_system_ops_tests(void)
  {
      EMB_UNIT_TESTFIXTURES(fixtures) {
          new_TestFixture(test_vfs_null_fs_ops_mount),
          new_TestFixture(test_vfs_null_fs_ops_umount),
          new_TestFixture(test_vfs_null_fs_ops_rename),
          new_TestFixture(test_vfs_null_fs_ops_unlink),
          new_TestFixture(test_vfs_null_fs_ops_mkdir),
          new_TestFixture(test_vfs_null_fs_ops_rmdir),
          new_TestFixture(test_vfs_null_fs_ops_stat),
          new_TestFixture(test_vfs_null_fs_ops_statvfs),
          new_TestFixture(test_vfs_null_fs_ops_fstatvfs),
      };
  
      EMB_UNIT_TESTCALLER(vfs_fs_op_tests, setup, teardown, fixtures);
  
      return (Test *)&vfs_fs_op_tests;
  }
  
  /** @} */