summaryrefslogtreecommitdiffhomepage
path: root/test/fuse/README.md
blob: 65add57e2f0cb77fc3f11672c33c325faace5857 (plain)
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
# gVisor FUSE Test Suite

This is an integration test suite for fuse(4) filesystem. It runs under gVisor
sandbox container with VFS2 and FUSE function enabled.

This document describes the framework of FUSE integration test, how to use it,
and the guidelines that should be followed when adding new testing features.

## Integration Test Framework

By inheriting the `FuseTest` class defined in `linux/fuse_base.h`, every test
fixture can run in an environment with `mount_point_` mounted by a fake FUSE
server. It creates a `socketpair(2)` to send and receive control commands and
data between the client and the server. Because the FUSE server runs in the
background thread, gTest cannot catch its assertion failure immediately. Thus,
`TearDown()` function sends command to the FUSE server to check if all gTest
assertion in the server are successful and all requests and preset responses are
consumed.

## Communication Diagram

Diagram below describes how a testing thread communicates with the FUSE server
to achieve integration test.

For the following diagram, `>` means entering the function, `<` is leaving the
function, and `=` indicates sequentially entering and leaving. Not necessarily
follow exactly the below diagram due to the nature of a multi-threaded system,
however, it is still helpful to know when the client waits for the server to
complete a command and when the server awaits the next instruction.

```
|  Client (Testing Thread)            |  Server (FUSE Server Thread)
|                                     |
|  >TEST_F()                          |
|    >SetUp()                         |
|      =MountFuse()                   |
|      >SetUpFuseServer()             |
|        [create communication socket]|
|        =fork()                      |      =fork()
|        [wait server complete]       |
|                                     |      =ServerConsumeFuseInit()
|                                     |      =ServerCompleteWith()
|      <SetUpFuseServer()             |
|    <SetUp()                         |
|    [testing main]                   |
|                                     |      >ServerFuseLoop()
|                                     |        [poll on socket and fd]
|    >SetServerResponse()             |
|      [write data to socket]         |
|      [wait server complete]         |
|                                     |        [socket event occurs]
|                                     |        >ServerHandleCommand()
|                                     |          >ServerReceiveResponse()
|                                     |            [read data from socket]
|                                     |            [save data to memory]
|                                     |          <ServerReceiveResponse()
|                                     |          =ServerCompleteWith()
|    <SetServerResponse()             |
|                                     |        <ServerHandleCommand()
|    >[Do fs operation]               |
|      [wait for fs response]         |
|                                     |        [fd event occurs]
|                                     |        >ServerProcessFuseRequest()
|                                     |          =[read fs request]
|                                     |          =[save fs request to memory]
|                                     |          =[write fs response]
|    <[Do fs operation]               |
|                                     |        <ServerProcessFuseRequest()
|                                     |
|    =[Test fs operation result]      |
|                                     |
|    >GetServerActualRequest()        |
|      [write data to socket]         |
|      [wait data from server]        |
|                                     |        [socket event occurs]
|                                     |        >ServerHandleCommand()
|                                     |          >ServerSendReceivedRequest()
|                                     |            [write data to socket]
|      [read data from socket]        |
|      [wait server complete]         |
|                                     |          <ServerSendReceivedRequest()
|                                     |          =ServerCompleteWith()
|    <GetServerActualRequest()        |
|                                     |        <ServerHandleCommand()
|                                     |
|    =[Test actual request]           |
|                                     |
|    >TearDown()                      |
|      ...                            |
|      >GetServerNumUnsentResponses() |
|        [write data to socket]       |
|        [wait server complete]       |
|                                     |        [socket event arrive]
|                                     |        >ServerHandleCommand()
|                                     |          >ServerSendData()
|                                     |            [write data to socket]
|                                     |          <ServerSendData()
|                                     |          =ServerCompleteWith()
|        [read data from socket]      |
|        [test if all succeeded]      |
|      <GetServerNumUnsentResponses() |
|                                     |        <ServerHandleCommand()
|      =UnmountFuse()                 |
|    <TearDown()                      |
|  <TEST_F()                          |
```

## Running the tests

Based on syscall tests, FUSE tests generate targets only with vfs2 and fuse
enabled. The corresponding targets end in `_fuse`.

For example, to run fuse test in `stat_test.cc`:

```bash
$ bazel test //test/fuse:stat_test_runsc_ptrace_vfs2_fuse
```

Test all targets tagged with fuse:

```bash
$ bazel test --test_tag_filters=fuse //test/fuse/...
```

## Writing a new FUSE test

1.  Add test targets in `BUILD` and `linux/BUILD`.
2.  Inherit your test from `FuseTest` base class. It allows you to:
    -   Fork a fake FUSE server in background during each test setup.
    -   Create a pair of sockets for communication and provide utility
        functions.
    -   Stop FUSE server and check if error occurs in it after test completes.
3.  Build the expected opcode-response pairs of your FUSE operation.
4.  Call `SetServerResponse()` to preset the next expected opcode and response.
5.  Do real filesystem operations (FUSE is mounted at `mount_point_`).
6.  Check FUSE response and/or errors.
7.  Retrieve FUSE request by `GetServerActualRequest()`.
8.  Check if the request is as expected.

A few customized matchers used in syscalls test are encouraged to test the
outcome of filesystem operations. Such as:

```cc
SyscallSucceeds()
SyscallSucceedsWithValue(...)
SyscallFails()
SyscallFailsWithErrno(...)
```

Please refer to [test/syscalls/README.md](../syscalls/README.md) for further
details.

## Writing a new FuseTestCmd

A `FuseTestCmd` is a control protocol used in the communication between the
testing thread and the FUSE server. Such commands are sent from the testing
thread to the FUSE server to set up, control, or inspect the behavior of the
FUSE server in response to a sequence of FUSE requests.

The lifecycle of a command contains following steps:

1.  The testing thread sends a `FuseTestCmd` via socket and waits for
    completion.
2.  The FUSE server receives the command and does corresponding action.
3.  (Optional) The testing thread reads data from socket.
4.  The FUSE server sends a success indicator via socket after processing.
5.  The testing thread gets the success signal and continues testing.

The success indicator, i.e. `WaitServerComplete()`, is crucial at the end of
each `FuseTestCmd` sent from the testing thread. Because we don't want to begin
filesystem operation if the requests have not been completely set up. Also, to
test FUSE interactions in a sequential manner, concurrent requests are not
supported now.

To add a new `FuseTestCmd`, one must comply with following format:

1.  Add a new `FuseTestCmd` enum class item defined in `linux/fuse_base.h`
2.  Add a `SetServerXXX()` or `GetServerXXX()` public function in `FuseTest`.
    This is how the testing thread will call to send control message. Define how
    many bytes you want to send along with the command and what you will expect
    to receive. Finally it should block and wait for a success indicator from
    the FUSE server.
3.  Add a handler logic in the switch condition of `ServerHandleCommand()`. Use
    `ServerSendData()` or declare a new private function such as
    `ServerReceiveXXX()` or `ServerSendXXX()`. It is mandatory to set it private
    since only the FUSE server (forked from `FuseTest` base class) can call it.
    This is the server part of the specific `FuseTestCmd` and the format of the
    data should be consistent with what the client expects in the previous step.