aboutsummaryrefslogtreecommitdiffstats
path: root/swarm/storage/localstore/gc_test.go
blob: eb039a554a118cc467e318452cd9cdf9a063c38c (plain) (blame)
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
352
353
354
355
356
357
358
// Copyright 2018 The go-ethereum Authors
// This file is part of the go-ethereum library.
//
// The go-ethereum library is free software: you can redistribute it and/or modify
// it under the terms of the GNU Lesser General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// The go-ethereum library is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public License
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.

package localstore

import (
    "io/ioutil"
    "math/rand"
    "os"
    "testing"
    "time"

    "github.com/ethereum/go-ethereum/swarm/storage"
)

// TestDB_collectGarbageWorker tests garbage collection runs
// by uploading and syncing a number of chunks.
func TestDB_collectGarbageWorker(t *testing.T) {
    testDB_collectGarbageWorker(t)
}

// TestDB_collectGarbageWorker_multipleBatches tests garbage
// collection runs by uploading and syncing a number of
// chunks by having multiple smaller batches.
func TestDB_collectGarbageWorker_multipleBatches(t *testing.T) {
    // lower the maximal number of chunks in a single
    // gc batch to ensure multiple batches.
    defer func(s int64) { gcBatchSize = s }(gcBatchSize)
    gcBatchSize = 2

    testDB_collectGarbageWorker(t)
}

// testDB_collectGarbageWorker is a helper test function to test
// garbage collection runs by uploading and syncing a number of chunks.
func testDB_collectGarbageWorker(t *testing.T) {
    chunkCount := 150

    testHookCollectGarbageChan := make(chan int64)
    defer setTestHookCollectGarbage(func(collectedCount int64) {
        testHookCollectGarbageChan <- collectedCount
    })()

    db, cleanupFunc := newTestDB(t, &Options{
        Capacity: 100,
    })
    defer cleanupFunc()

    uploader := db.NewPutter(ModePutUpload)
    syncer := db.NewSetter(ModeSetSync)

    addrs := make([]storage.Address, 0)

    // upload random chunks
    for i := 0; i < chunkCount; i++ {
        chunk := generateRandomChunk()

        err := uploader.Put(chunk)
        if err != nil {
            t.Fatal(err)
        }

        err = syncer.Set(chunk.Address())
        if err != nil {
            t.Fatal(err)
        }

        addrs = append(addrs, chunk.Address())
    }

    gcTarget := db.gcTarget()

    for {
        select {
        case <-testHookCollectGarbageChan:
        case <-time.After(10 * time.Second):
            t.Error("collect garbage timeout")
        }
        gcSize := db.getGCSize()
        if gcSize == gcTarget {
            break
        }
    }

    t.Run("pull index count", newItemsCountTest(db.pullIndex, int(gcTarget)))

    t.Run("gc index count", newItemsCountTest(db.gcIndex, int(gcTarget)))

    t.Run("gc size", newIndexGCSizeTest(db))

    // the first synced chunk should be removed
    t.Run("get the first synced chunk", func(t *testing.T) {
        _, err := db.NewGetter(ModeGetRequest).Get(addrs[0])
        if err != storage.ErrChunkNotFound {
            t.Errorf("got error %v, want %v", err, storage.ErrChunkNotFound)
        }
    })

    // last synced chunk should not be removed
    t.Run("get most recent synced chunk", func(t *testing.T) {
        _, err := db.NewGetter(ModeGetRequest).Get(addrs[len(addrs)-1])
        if err != nil {
            t.Fatal(err)
        }
    })

    // cleanup: drain the last testHookCollectGarbageChan
    // element before calling deferred functions not to block
    // collectGarbageWorker loop, preventing the race in
    // setting testHookCollectGarbage function
    select {
    case <-testHookCollectGarbageChan:
    default:
    }
}

// TestDB_collectGarbageWorker_withRequests is a helper test function
// to test garbage collection runs by uploading, syncing and
// requesting a number of chunks.
func TestDB_collectGarbageWorker_withRequests(t *testing.T) {
    db, cleanupFunc := newTestDB(t, &Options{
        Capacity: 100,
    })
    defer cleanupFunc()

    uploader := db.NewPutter(ModePutUpload)
    syncer := db.NewSetter(ModeSetSync)

    testHookCollectGarbageChan := make(chan int64)
    defer setTestHookCollectGarbage(func(collectedCount int64) {
        testHookCollectGarbageChan <- collectedCount
    })()

    addrs := make([]storage.Address, 0)

    // upload random chunks just up to the capacity
    for i := 0; i < int(db.capacity)-1; i++ {
        chunk := generateRandomChunk()

        err := uploader.Put(chunk)
        if err != nil {
            t.Fatal(err)
        }

        err = syncer.Set(chunk.Address())
        if err != nil {
            t.Fatal(err)
        }

        addrs = append(addrs, chunk.Address())
    }

    // request the latest synced chunk
    // to prioritize it in the gc index
    // not to be collected
    _, err := db.NewGetter(ModeGetRequest).Get(addrs[0])
    if err != nil {
        t.Fatal(err)
    }

    // upload and sync another chunk to trigger
    // garbage collection
    chunk := generateRandomChunk()
    err = uploader.Put(chunk)
    if err != nil {
        t.Fatal(err)
    }
    err = syncer.Set(chunk.Address())
    if err != nil {
        t.Fatal(err)
    }
    addrs = append(addrs, chunk.Address())

    // wait for garbage collection

    gcTarget := db.gcTarget()

    var totalCollectedCount int64
    for {
        select {
        case c := <-testHookCollectGarbageChan:
            totalCollectedCount += c
        case <-time.After(10 * time.Second):
            t.Error("collect garbage timeout")
        }
        gcSize := db.getGCSize()
        if gcSize == gcTarget {
            break
        }
    }

    wantTotalCollectedCount := int64(len(addrs)) - gcTarget
    if totalCollectedCount != wantTotalCollectedCount {
        t.Errorf("total collected chunks %v, want %v", totalCollectedCount, wantTotalCollectedCount)
    }

    t.Run("pull index count", newItemsCountTest(db.pullIndex, int(gcTarget)))

    t.Run("gc index count", newItemsCountTest(db.gcIndex, int(gcTarget)))

    t.Run("gc size", newIndexGCSizeTest(db))

    // requested chunk should not be removed
    t.Run("get requested chunk", func(t *testing.T) {
        _, err := db.NewGetter(ModeGetRequest).Get(addrs[0])
        if err != nil {
            t.Fatal(err)
        }
    })

    // the second synced chunk should be removed
    t.Run("get gc-ed chunk", func(t *testing.T) {
        _, err := db.NewGetter(ModeGetRequest).Get(addrs[1])
        if err != storage.ErrChunkNotFound {
            t.Errorf("got error %v, want %v", err, storage.ErrChunkNotFound)
        }
    })

    // last synced chunk should not be removed
    t.Run("get most recent synced chunk", func(t *testing.T) {
        _, err := db.NewGetter(ModeGetRequest).Get(addrs[len(addrs)-1])
        if err != nil {
            t.Fatal(err)
        }
    })
}

// TestDB_gcSize checks if gcSize has a correct value after
// database is initialized with existing data.
func TestDB_gcSize(t *testing.T) {
    dir, err := ioutil.TempDir("", "localstore-stored-gc-size")
    if err != nil {
        t.Fatal(err)
    }
    defer os.RemoveAll(dir)
    baseKey := make([]byte, 32)
    if _, err := rand.Read(baseKey); err != nil {
        t.Fatal(err)
    }
    db, err := New(dir, baseKey, nil)
    if err != nil {
        t.Fatal(err)
    }

    uploader := db.NewPutter(ModePutUpload)
    syncer := db.NewSetter(ModeSetSync)

    count := 100

    for i := 0; i < count; i++ {
        chunk := generateRandomChunk()

        err := uploader.Put(chunk)
        if err != nil {
            t.Fatal(err)
        }

        err = syncer.Set(chunk.Address())
        if err != nil {
            t.Fatal(err)
        }
    }

    // DB.Close writes gc size to disk, so
    // Instead calling Close, simulate database shutdown
    // without it.
    close(db.close)
    db.updateGCWG.Wait()
    err = db.shed.Close()
    if err != nil {
        t.Fatal(err)
    }

    db, err = New(dir, baseKey, nil)
    if err != nil {
        t.Fatal(err)
    }

    t.Run("gc index size", newIndexGCSizeTest(db))

    t.Run("gc uncounted hashes index count", newItemsCountTest(db.gcUncountedHashesIndex, 0))
}

// setTestHookCollectGarbage sets testHookCollectGarbage and
// returns a function that will reset it to the
// value before the change.
func setTestHookCollectGarbage(h func(collectedCount int64)) (reset func()) {
    current := testHookCollectGarbage
    reset = func() { testHookCollectGarbage = current }
    testHookCollectGarbage = h
    return reset
}

// TestSetTestHookCollectGarbage tests if setTestHookCollectGarbage changes
// testHookCollectGarbage function correctly and if its reset function
// resets the original function.
func TestSetTestHookCollectGarbage(t *testing.T) {
    // Set the current function after the test finishes.
    defer func(h func(collectedCount int64)) { testHookCollectGarbage = h }(testHookCollectGarbage)

    // expected value for the unchanged function
    original := 1
    // expected value for the changed function
    changed := 2

    // this variable will be set with two different functions
    var got int

    // define the original (unchanged) functions
    testHookCollectGarbage = func(_ int64) {
        got = original
    }

    // set got variable
    testHookCollectGarbage(0)

    // test if got variable is set correctly
    if got != original {
        t.Errorf("got hook value %v, want %v", got, original)
    }

    // set the new function
    reset := setTestHookCollectGarbage(func(_ int64) {
        got = changed
    })

    // set got variable
    testHookCollectGarbage(0)

    // test if got variable is set correctly to changed value
    if got != changed {
        t.Errorf("got hook value %v, want %v", got, changed)
    }

    // set the function to the original one
    reset()

    // set got variable
    testHookCollectGarbage(0)

    // test if got variable is set correctly to original value
    if got != original {
        t.Errorf("got hook value %v, want %v", got, original)
    }
}