(t *testing.T)
| 190 | } |
| 191 | |
| 192 | func TestNilOnUnknownTenantID(t *testing.T) { |
| 193 | r, _, _, _ := testConfig(t, 0) |
| 194 | |
| 195 | buff, failedBlocks, err := r.Find(context.Background(), "unknown", []byte{0x01}, BlockIDMin, BlockIDMax, 0, 0, common.DefaultSearchOptions()) |
| 196 | assert.Nil(t, buff) |
| 197 | assert.Nil(t, err) |
| 198 | assert.Nil(t, failedBlocks) |
| 199 | } |
| 200 | |
| 201 | func TestBlockCleanup(t *testing.T) { |
| 202 | r, w, c, tempDir := testConfig(t, 0) |
nothing calls this directly
no test coverage detected