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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
|
package fuse_test
import (
"fmt"
"os"
"path/filepath"
"sort"
"testing"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
// TestDirectoryOperations tests fundamental FUSE directory operations
func TestDirectoryOperations(t *testing.T) {
framework := NewFuseTestFramework(t, DefaultTestConfig())
defer framework.Cleanup()
require.NoError(t, framework.Setup(DefaultTestConfig()))
t.Run("CreateDirectory", func(t *testing.T) {
testCreateDirectory(t, framework)
})
t.Run("RemoveDirectory", func(t *testing.T) {
testRemoveDirectory(t, framework)
})
t.Run("ReadDirectory", func(t *testing.T) {
testReadDirectory(t, framework)
})
t.Run("NestedDirectories", func(t *testing.T) {
testNestedDirectories(t, framework)
})
t.Run("DirectoryPermissions", func(t *testing.T) {
testDirectoryPermissions(t, framework)
})
t.Run("DirectoryRename", func(t *testing.T) {
testDirectoryRename(t, framework)
})
}
// testCreateDirectory tests creating directories
func testCreateDirectory(t *testing.T, framework *FuseTestFramework) {
dirName := "test_directory"
mountPath := filepath.Join(framework.GetMountPoint(), dirName)
// Create directory
require.NoError(t, os.Mkdir(mountPath, 0755))
// Verify directory exists
info, err := os.Stat(mountPath)
require.NoError(t, err)
assert.True(t, info.IsDir())
assert.Equal(t, os.FileMode(0755), info.Mode().Perm())
}
// testRemoveDirectory tests removing directories
func testRemoveDirectory(t *testing.T, framework *FuseTestFramework) {
dirName := "test_remove_dir"
mountPath := filepath.Join(framework.GetMountPoint(), dirName)
// Create directory
require.NoError(t, os.Mkdir(mountPath, 0755))
// Verify it exists
_, err := os.Stat(mountPath)
require.NoError(t, err)
// Remove directory
require.NoError(t, os.Remove(mountPath))
// Verify it's gone
_, err = os.Stat(mountPath)
require.True(t, os.IsNotExist(err))
}
// testReadDirectory tests reading directory contents
func testReadDirectory(t *testing.T, framework *FuseTestFramework) {
testDir := "test_read_dir"
framework.CreateTestDir(testDir)
// Create various types of entries
entries := []string{
"file1.txt",
"file2.log",
"subdir1",
"subdir2",
"script.sh",
}
// Create files and subdirectories
for _, entry := range entries {
entryPath := filepath.Join(testDir, entry)
if entry == "subdir1" || entry == "subdir2" {
framework.CreateTestDir(entryPath)
} else {
framework.CreateTestFile(entryPath, []byte("content of "+entry))
}
}
// Read directory
mountPath := filepath.Join(framework.GetMountPoint(), testDir)
dirEntries, err := os.ReadDir(mountPath)
require.NoError(t, err)
// Verify all entries are present
var actualNames []string
for _, entry := range dirEntries {
actualNames = append(actualNames, entry.Name())
}
sort.Strings(entries)
sort.Strings(actualNames)
assert.Equal(t, entries, actualNames)
// Verify entry types
for _, entry := range dirEntries {
if entry.Name() == "subdir1" || entry.Name() == "subdir2" {
assert.True(t, entry.IsDir())
} else {
assert.False(t, entry.IsDir())
}
}
}
// testNestedDirectories tests operations on nested directory structures
func testNestedDirectories(t *testing.T, framework *FuseTestFramework) {
// Create nested structure: parent/child1/grandchild/child2
structure := []string{
"parent",
"parent/child1",
"parent/child1/grandchild",
"parent/child2",
}
// Create directories
for _, dir := range structure {
framework.CreateTestDir(dir)
}
// Create files at various levels
files := map[string][]byte{
"parent/root_file.txt": []byte("root level"),
"parent/child1/child_file.txt": []byte("child level"),
"parent/child1/grandchild/deep_file.txt": []byte("deep level"),
"parent/child2/another_file.txt": []byte("another child"),
}
for path, content := range files {
framework.CreateTestFile(path, content)
}
// Verify structure by walking
mountPath := filepath.Join(framework.GetMountPoint(), "parent")
var foundPaths []string
err := filepath.Walk(mountPath, func(path string, info os.FileInfo, err error) error {
if err != nil {
return err
}
// Get relative path from mount point
relPath, _ := filepath.Rel(framework.GetMountPoint(), path)
foundPaths = append(foundPaths, relPath)
return nil
})
require.NoError(t, err)
// Verify all expected paths were found
expectedPaths := []string{
"parent",
"parent/child1",
"parent/child1/grandchild",
"parent/child1/grandchild/deep_file.txt",
"parent/child1/child_file.txt",
"parent/child2",
"parent/child2/another_file.txt",
"parent/root_file.txt",
}
sort.Strings(expectedPaths)
sort.Strings(foundPaths)
assert.Equal(t, expectedPaths, foundPaths)
// Verify file contents
for path, expectedContent := range files {
framework.AssertFileContent(path, expectedContent)
}
}
// testDirectoryPermissions tests directory permission operations
func testDirectoryPermissions(t *testing.T, framework *FuseTestFramework) {
dirName := "test_permissions_dir"
mountPath := filepath.Join(framework.GetMountPoint(), dirName)
// Create directory with specific permissions
require.NoError(t, os.Mkdir(mountPath, 0700))
// Check initial permissions
info, err := os.Stat(mountPath)
require.NoError(t, err)
assert.Equal(t, os.FileMode(0700), info.Mode().Perm())
// Change permissions
require.NoError(t, os.Chmod(mountPath, 0755))
// Verify permission change
info, err = os.Stat(mountPath)
require.NoError(t, err)
assert.Equal(t, os.FileMode(0755), info.Mode().Perm())
}
// testDirectoryRename tests renaming directories
func testDirectoryRename(t *testing.T, framework *FuseTestFramework) {
oldName := "old_directory"
newName := "new_directory"
// Create directory with content
framework.CreateTestDir(oldName)
framework.CreateTestFile(filepath.Join(oldName, "test_file.txt"), []byte("test content"))
oldPath := filepath.Join(framework.GetMountPoint(), oldName)
newPath := filepath.Join(framework.GetMountPoint(), newName)
// Rename directory
require.NoError(t, os.Rename(oldPath, newPath))
// Verify old path doesn't exist
_, err := os.Stat(oldPath)
require.True(t, os.IsNotExist(err))
// Verify new path exists and is a directory
info, err := os.Stat(newPath)
require.NoError(t, err)
assert.True(t, info.IsDir())
// Verify content still exists
framework.AssertFileContent(filepath.Join(newName, "test_file.txt"), []byte("test content"))
}
// TestComplexDirectoryOperations tests more complex directory scenarios
func TestComplexDirectoryOperations(t *testing.T) {
framework := NewFuseTestFramework(t, DefaultTestConfig())
defer framework.Cleanup()
require.NoError(t, framework.Setup(DefaultTestConfig()))
t.Run("RemoveNonEmptyDirectory", func(t *testing.T) {
testRemoveNonEmptyDirectory(t, framework)
})
t.Run("DirectoryWithManyFiles", func(t *testing.T) {
testDirectoryWithManyFiles(t, framework)
})
t.Run("DeepDirectoryNesting", func(t *testing.T) {
testDeepDirectoryNesting(t, framework)
})
}
// testRemoveNonEmptyDirectory tests behavior when trying to remove non-empty directories
func testRemoveNonEmptyDirectory(t *testing.T, framework *FuseTestFramework) {
dirName := "non_empty_dir"
framework.CreateTestDir(dirName)
// Add content to directory
framework.CreateTestFile(filepath.Join(dirName, "file.txt"), []byte("content"))
framework.CreateTestDir(filepath.Join(dirName, "subdir"))
mountPath := filepath.Join(framework.GetMountPoint(), dirName)
// Try to remove non-empty directory (should fail)
err := os.Remove(mountPath)
require.Error(t, err)
// Directory should still exist
info, err := os.Stat(mountPath)
require.NoError(t, err)
assert.True(t, info.IsDir())
// Remove with RemoveAll should work
require.NoError(t, os.RemoveAll(mountPath))
// Verify it's gone
_, err = os.Stat(mountPath)
require.True(t, os.IsNotExist(err))
}
// testDirectoryWithManyFiles tests directories with large numbers of files
func testDirectoryWithManyFiles(t *testing.T, framework *FuseTestFramework) {
dirName := "many_files_dir"
framework.CreateTestDir(dirName)
// Create many files
numFiles := 100
for i := 0; i < numFiles; i++ {
filename := filepath.Join(dirName, fmt.Sprintf("file_%03d.txt", i))
content := []byte(fmt.Sprintf("Content of file %d", i))
framework.CreateTestFile(filename, content)
}
// Read directory
mountPath := filepath.Join(framework.GetMountPoint(), dirName)
entries, err := os.ReadDir(mountPath)
require.NoError(t, err)
// Verify count
assert.Equal(t, numFiles, len(entries))
// Verify some random files
testIndices := []int{0, 10, 50, 99}
for _, i := range testIndices {
filename := filepath.Join(dirName, fmt.Sprintf("file_%03d.txt", i))
expectedContent := []byte(fmt.Sprintf("Content of file %d", i))
framework.AssertFileContent(filename, expectedContent)
}
}
// testDeepDirectoryNesting tests very deep directory structures
func testDeepDirectoryNesting(t *testing.T, framework *FuseTestFramework) {
// Create deep nesting (20 levels)
depth := 20
currentPath := ""
for i := 0; i < depth; i++ {
if i == 0 {
currentPath = fmt.Sprintf("level_%02d", i)
} else {
currentPath = filepath.Join(currentPath, fmt.Sprintf("level_%02d", i))
}
framework.CreateTestDir(currentPath)
}
// Create a file at the deepest level
deepFile := filepath.Join(currentPath, "deep_file.txt")
deepContent := []byte("This is very deep!")
framework.CreateTestFile(deepFile, deepContent)
// Verify file exists and has correct content
framework.AssertFileContent(deepFile, deepContent)
// Verify we can navigate the full structure
mountPath := filepath.Join(framework.GetMountPoint(), currentPath)
info, err := os.Stat(mountPath)
require.NoError(t, err)
assert.True(t, info.IsDir())
}
|