From 2eaf8f7ce0ced2b5660f41a169447a8520bcc943 Mon Sep 17 00:00:00 2001 From: Ben Johnson Date: Thu, 29 May 2014 08:02:15 -0600 Subject: Add freelist assertion on every free(). This commit performs a check on the freelist pages to ensure that a double free can never happen. --- tx_test.go | 25 ------------------------- 1 file changed, 25 deletions(-) (limited to 'tx_test.go') diff --git a/tx_test.go b/tx_test.go index 5cbe20f..2fe4723 100644 --- a/tx_test.go +++ b/tx_test.go @@ -288,31 +288,6 @@ func TestTx_OnCommit_Rollback(t *testing.T) { assert.Equal(t, 0, x) } -// Ensure that a Tx in strict mode will fail when corrupted. -func TestTx_Check_Corrupt(t *testing.T) { - var msg string - func() { - defer func() { - msg = fmt.Sprintf("%s", recover()) - }() - - withOpenDB(func(db *DB, path string) { - db.StrictMode = true - db.Update(func(tx *Tx) error { - tx.CreateBucket([]byte("foo")) - - // Corrupt the DB by adding a page to the freelist. - warn("---") - db.freelist.free(0, tx.page(3)) - - return nil - }) - }) - }() - - assert.Equal(t, "check fail: page 3: already freed", msg) -} - // Ensure that the database can be copied to a file path. func TestTx_CopyFile(t *testing.T) { withOpenDB(func(db *DB, path string) { -- cgit v1.2.3