15 var TEST_BLOCK = []byte("The quick brown fox jumps over the lazy dog.")
16 var TEST_HASH = "e4d909c290d0fb1ca068ffaddf22cbd0"
17 var TEST_HASH_PUT_RESPONSE = "e4d909c290d0fb1ca068ffaddf22cbd0+44\n"
19 var TEST_BLOCK_2 = []byte("Pack my box with five dozen liquor jugs.")
20 var TEST_HASH_2 = "f15ac516f788aec4f30932ffb6395c39"
22 var TEST_BLOCK_3 = []byte("Now is the time for all good men to come to the aid of their country.")
23 var TEST_HASH_3 = "eed29bbffbc2dbe5e5ee0bb71888e61f"
25 // BAD_BLOCK is used to test collisions and corruption.
26 // It must not match any test hashes.
27 var BAD_BLOCK = []byte("The magic words are squeamish ossifrage.")
29 // TODO(twp): Tests still to be written
32 // - test that PutBlock returns 503 Full if the filesystem is full.
33 // (must mock FreeDiskSpace or Statfs? use a tmpfs?)
35 // * TestPutBlockWriteErr
36 // - test the behavior when Write returns an error.
37 // - Possible solutions: use a small tmpfs and a high
38 // MIN_FREE_KILOBYTES to trick PutBlock into attempting
39 // to write a block larger than the amount of space left
40 // - use an interface to mock ioutil.TempFile with a File
41 // object that always returns an error on write
43 // ========================================
45 // ========================================
48 // Test that simple block reads succeed.
50 func TestGetBlock(t *testing.T) {
53 // Prepare two test Keep volumes. Our block is stored on the second volume.
54 KeepVM = MakeTestVolumeManager(2)
55 defer func() { KeepVM.Quit() }()
57 vols := KeepVM.Volumes()
58 if err := vols[1].Put(TEST_HASH, TEST_BLOCK); err != nil {
62 // Check that GetBlock returns success.
63 result, err := GetBlock(TEST_HASH, false)
65 t.Errorf("GetBlock error: %s", err)
67 if fmt.Sprint(result) != fmt.Sprint(TEST_BLOCK) {
68 t.Errorf("expected %s, got %s", TEST_BLOCK, result)
72 // TestGetBlockMissing
73 // GetBlock must return an error when the block is not found.
75 func TestGetBlockMissing(t *testing.T) {
78 // Create two empty test Keep volumes.
79 KeepVM = MakeTestVolumeManager(2)
80 defer func() { KeepVM.Quit() }()
82 // Check that GetBlock returns failure.
83 result, err := GetBlock(TEST_HASH, false)
84 if err != NotFoundError {
85 t.Errorf("Expected NotFoundError, got %v", result)
89 // TestGetBlockCorrupt
90 // GetBlock must return an error when a corrupted block is requested
91 // (the contents of the file do not checksum to its hash).
93 func TestGetBlockCorrupt(t *testing.T) {
96 // Create two test Keep volumes and store a corrupt block in one.
97 KeepVM = MakeTestVolumeManager(2)
98 defer func() { KeepVM.Quit() }()
100 vols := KeepVM.Volumes()
101 vols[0].Put(TEST_HASH, BAD_BLOCK)
103 // Check that GetBlock returns failure.
104 result, err := GetBlock(TEST_HASH, false)
105 if err != DiskHashError {
106 t.Errorf("Expected DiskHashError, got %v (buf: %v)", err, result)
110 // ========================================
112 // ========================================
115 // PutBlock can perform a simple block write and returns success.
117 func TestPutBlockOK(t *testing.T) {
120 // Create two test Keep volumes.
121 KeepVM = MakeTestVolumeManager(2)
122 defer func() { KeepVM.Quit() }()
124 // Check that PutBlock stores the data as expected.
125 if err := PutBlock(TEST_BLOCK, TEST_HASH); err != nil {
126 t.Fatalf("PutBlock: %v", err)
129 vols := KeepVM.Volumes()
130 result, err := vols[0].Get(TEST_HASH)
132 t.Fatalf("Volume #0 Get returned error: %v", err)
134 if string(result) != string(TEST_BLOCK) {
135 t.Fatalf("PutBlock stored '%s', Get retrieved '%s'",
136 string(TEST_BLOCK), string(result))
140 // TestPutBlockOneVol
141 // PutBlock still returns success even when only one of the known
142 // volumes is online.
144 func TestPutBlockOneVol(t *testing.T) {
147 // Create two test Keep volumes, but cripple one of them.
148 KeepVM = MakeTestVolumeManager(2)
149 defer func() { KeepVM.Quit() }()
151 vols := KeepVM.Volumes()
152 vols[0].(*MockVolume).Bad = true
154 // Check that PutBlock stores the data as expected.
155 if err := PutBlock(TEST_BLOCK, TEST_HASH); err != nil {
156 t.Fatalf("PutBlock: %v", err)
159 result, err := GetBlock(TEST_HASH, false)
161 t.Fatalf("GetBlock: %v", err)
163 if string(result) != string(TEST_BLOCK) {
164 t.Error("PutBlock/GetBlock mismatch")
165 t.Fatalf("PutBlock stored '%s', GetBlock retrieved '%s'",
166 string(TEST_BLOCK), string(result))
170 // TestPutBlockMD5Fail
171 // Check that PutBlock returns an error if passed a block and hash that
174 func TestPutBlockMD5Fail(t *testing.T) {
177 // Create two test Keep volumes.
178 KeepVM = MakeTestVolumeManager(2)
179 defer func() { KeepVM.Quit() }()
181 // Check that PutBlock returns the expected error when the hash does
182 // not match the block.
183 if err := PutBlock(BAD_BLOCK, TEST_HASH); err != RequestHashError {
184 t.Error("Expected RequestHashError, got %v", err)
187 // Confirm that GetBlock fails to return anything.
188 if result, err := GetBlock(TEST_HASH, false); err != NotFoundError {
189 t.Errorf("GetBlock succeeded after a corrupt block store (result = %s, err = %v)",
194 // TestPutBlockCorrupt
195 // PutBlock should overwrite corrupt blocks on disk when given
196 // a PUT request with a good block.
198 func TestPutBlockCorrupt(t *testing.T) {
201 // Create two test Keep volumes.
202 KeepVM = MakeTestVolumeManager(2)
203 defer func() { KeepVM.Quit() }()
205 // Store a corrupted block under TEST_HASH.
206 vols := KeepVM.Volumes()
207 vols[0].Put(TEST_HASH, BAD_BLOCK)
208 if err := PutBlock(TEST_BLOCK, TEST_HASH); err != nil {
209 t.Errorf("PutBlock: %v", err)
212 // The block on disk should now match TEST_BLOCK.
213 if block, err := GetBlock(TEST_HASH, false); err != nil {
214 t.Errorf("GetBlock: %v", err)
215 } else if bytes.Compare(block, TEST_BLOCK) != 0 {
216 t.Errorf("GetBlock returned: '%s'", string(block))
221 // PutBlock returns a 400 Collision error when attempting to
222 // store a block that collides with another block on disk.
224 func TestPutBlockCollision(t *testing.T) {
227 // These blocks both hash to the MD5 digest cee9a457e790cf20d4bdaa6d69f01e41.
228 var b1 = []byte("\x0e0eaU\x9a\xa7\x87\xd0\x0b\xc6\xf7\x0b\xbd\xfe4\x04\xcf\x03e\x9epO\x854\xc0\x0f\xfbe\x9cL\x87@\xcc\x94/\xeb-\xa1\x15\xa3\xf4\x15\\\xbb\x86\x07Is\x86em}\x1f4\xa4 Y\xd7\x8fZ\x8d\xd1\xef")
229 var b2 = []byte("\x0e0eaU\x9a\xa7\x87\xd0\x0b\xc6\xf7\x0b\xbd\xfe4\x04\xcf\x03e\x9etO\x854\xc0\x0f\xfbe\x9cL\x87@\xcc\x94/\xeb-\xa1\x15\xa3\xf4\x15\xdc\xbb\x86\x07Is\x86em}\x1f4\xa4 Y\xd7\x8fZ\x8d\xd1\xef")
230 var locator = "cee9a457e790cf20d4bdaa6d69f01e41"
232 // Prepare two test Keep volumes.
233 KeepVM = MakeTestVolumeManager(2)
234 defer func() { KeepVM.Quit() }()
236 // Store one block, then attempt to store the other. Confirm that
237 // PutBlock reported a CollisionError.
238 if err := PutBlock(b1, locator); err != nil {
241 if err := PutBlock(b2, locator); err == nil {
242 t.Error("PutBlock did not report a collision")
243 } else if err != CollisionError {
244 t.Errorf("PutBlock returned %v", err)
248 // ========================================
249 // FindKeepVolumes tests.
250 // ========================================
252 // TestFindKeepVolumes
253 // Confirms that FindKeepVolumes finds tmpfs volumes with "/keep"
254 // directories at the top level.
256 func TestFindKeepVolumes(t *testing.T) {
257 var tempVols [2]string
261 for _, path := range tempVols {
266 // Create two directories suitable for using as keep volumes.
267 for i := range tempVols {
268 if tempVols[i], err = ioutil.TempDir("", "findvol"); err != nil {
271 tempVols[i] = tempVols[i] + "/keep"
272 if err = os.Mkdir(tempVols[i], 0755); err != nil {
277 // Set up a bogus PROC_MOUNTS file.
278 if f, err := ioutil.TempFile("", "keeptest"); err == nil {
279 for _, vol := range tempVols {
280 fmt.Fprintf(f, "tmpfs %s tmpfs opts\n", path.Dir(vol))
283 PROC_MOUNTS = f.Name()
285 // Check that FindKeepVolumes finds the temp volumes.
286 resultVols := FindKeepVolumes()
287 if len(tempVols) != len(resultVols) {
288 t.Fatalf("set up %d volumes, FindKeepVolumes found %d\n",
289 len(tempVols), len(resultVols))
291 for i := range tempVols {
292 if tempVols[i] != resultVols[i] {
293 t.Errorf("FindKeepVolumes returned %s, expected %s\n",
294 resultVols[i], tempVols[i])
302 // TestFindKeepVolumesFail
303 // When no Keep volumes are present, FindKeepVolumes returns an empty slice.
305 func TestFindKeepVolumesFail(t *testing.T) {
308 // Set up a bogus PROC_MOUNTS file with no Keep vols.
309 if f, err := ioutil.TempFile("", "keeptest"); err == nil {
310 fmt.Fprintln(f, "rootfs / rootfs opts 0 0")
311 fmt.Fprintln(f, "sysfs /sys sysfs opts 0 0")
312 fmt.Fprintln(f, "proc /proc proc opts 0 0")
313 fmt.Fprintln(f, "udev /dev devtmpfs opts 0 0")
314 fmt.Fprintln(f, "devpts /dev/pts devpts opts 0 0")
316 PROC_MOUNTS = f.Name()
318 // Check that FindKeepVolumes returns an empty array.
319 resultVols := FindKeepVolumes()
320 if len(resultVols) != 0 {
321 t.Fatalf("FindKeepVolumes returned %v", resultVols)
324 os.Remove(PROC_MOUNTS)
329 // Test an /index request.
330 func TestIndex(t *testing.T) {
333 // Set up Keep volumes and populate them.
334 // Include multiple blocks on different volumes, and
335 // some metadata files.
336 KeepVM = MakeTestVolumeManager(2)
337 defer func() { KeepVM.Quit() }()
339 vols := KeepVM.Volumes()
340 vols[0].Put(TEST_HASH, TEST_BLOCK)
341 vols[1].Put(TEST_HASH_2, TEST_BLOCK_2)
342 vols[0].Put(TEST_HASH_3, TEST_BLOCK_3)
343 vols[0].Put(TEST_HASH+".meta", []byte("metadata"))
344 vols[1].Put(TEST_HASH_2+".meta", []byte("metadata"))
346 index := vols[0].Index("") + vols[1].Index("")
347 index_rows := strings.Split(index, "\n")
348 sort.Strings(index_rows)
349 sorted_index := strings.Join(index_rows, "\n")
350 expected := `^\n` + TEST_HASH + `\+\d+ \d+\n` +
351 TEST_HASH_3 + `\+\d+ \d+\n` +
352 TEST_HASH_2 + `\+\d+ \d+$`
354 match, err := regexp.MatchString(expected, sorted_index)
357 t.Errorf("IndexLocators returned:\n%s", index)
360 t.Errorf("regexp.MatchString: %s", err)
365 // Test that GetNodeStatus returns valid info about available volumes.
367 // TODO(twp): set up appropriate interfaces to permit more rigorous
370 func TestNodeStatus(t *testing.T) {
373 // Set up test Keep volumes with some blocks.
374 KeepVM = MakeTestVolumeManager(2)
375 defer func() { KeepVM.Quit() }()
377 vols := KeepVM.Volumes()
378 vols[0].Put(TEST_HASH, TEST_BLOCK)
379 vols[1].Put(TEST_HASH_2, TEST_BLOCK_2)
381 // Get node status and make a basic sanity check.
382 st := GetNodeStatus()
383 for i := range vols {
384 volinfo := st.Volumes[i]
385 mtp := volinfo.MountPoint
387 t.Errorf("GetNodeStatus mount_point %s, expected /bogo", mtp)
389 if volinfo.DeviceNum == 0 {
390 t.Errorf("uninitialized device_num in %v", volinfo)
392 if volinfo.BytesFree == 0 {
393 t.Errorf("uninitialized bytes_free in %v", volinfo)
395 if volinfo.BytesUsed == 0 {
396 t.Errorf("uninitialized bytes_used in %v", volinfo)
401 // ========================================
402 // Helper functions for unit tests.
403 // ========================================
405 // MakeTestVolumeManager
406 // Creates and returns a RRVolumeManager with the specified number
409 func MakeTestVolumeManager(num_volumes int) VolumeManager {
410 vols := make([]Volume, num_volumes)
411 for i := range vols {
412 vols[i] = CreateMockVolume()
414 return MakeRRVolumeManager(vols)
418 // Cleanup to perform after each test.
421 data_manager_token = ""
422 enforce_permissions = false
423 PermissionSecret = nil