X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/46b11ba2ed71e2c074e9e6c8f5b9f7a003e7067f..f87bda0e69ec38a7485f250328c32643c5587fd8:/services/keepstore/handlers_with_generic_volume_test.go diff --git a/services/keepstore/handlers_with_generic_volume_test.go b/services/keepstore/handlers_with_generic_volume_test.go index 9f31f5f6fe..c5349d399c 100644 --- a/services/keepstore/handlers_with_generic_volume_test.go +++ b/services/keepstore/handlers_with_generic_volume_test.go @@ -2,19 +2,18 @@ package main import ( "bytes" - "testing" ) // A TestableVolumeManagerFactory creates a volume manager with at least two TestableVolume instances. // The factory function, and the TestableVolume instances it returns, can use "t" to write // logs, fail the current test, etc. -type TestableVolumeManagerFactory func(t *testing.T) (*RRVolumeManager, []TestableVolume) +type TestableVolumeManagerFactory func(t TB) (*RRVolumeManager, []TestableVolume) // DoHandlersWithGenericVolumeTests runs a set of handler tests with a // Volume Manager comprised of TestableVolume instances. // It calls factory to create a volume manager with TestableVolume // instances for each test case, to avoid leaking state between tests. -func DoHandlersWithGenericVolumeTests(t *testing.T, factory TestableVolumeManagerFactory) { +func DoHandlersWithGenericVolumeTests(t TB, factory TestableVolumeManagerFactory) { testGetBlock(t, factory, TestHash, TestBlock) testGetBlock(t, factory, EmptyHash, EmptyBlock) testPutRawBadDataGetBlock(t, factory, TestHash, TestBlock, []byte("baddata")) @@ -26,7 +25,7 @@ func DoHandlersWithGenericVolumeTests(t *testing.T, factory TestableVolumeManage } // Setup RRVolumeManager with TestableVolumes -func setupHandlersWithGenericVolumeTest(t *testing.T, factory TestableVolumeManagerFactory) []TestableVolume { +func setupHandlersWithGenericVolumeTest(t TB, factory TestableVolumeManagerFactory) []TestableVolume { vm, testableVolumes := factory(t) KeepVM = vm @@ -39,7 +38,7 @@ func setupHandlersWithGenericVolumeTest(t *testing.T, factory TestableVolumeMana } // Put a block using PutRaw in just one volume and Get it using GetBlock -func testGetBlock(t *testing.T, factory TestableVolumeManagerFactory, testHash string, testBlock []byte) { +func testGetBlock(t TB, factory TestableVolumeManagerFactory, testHash string, testBlock []byte) { testableVolumes := setupHandlersWithGenericVolumeTest(t, factory) // Put testBlock in one volume @@ -56,7 +55,7 @@ func testGetBlock(t *testing.T, factory TestableVolumeManagerFactory, testHash s } // Put a bad block using PutRaw and get it. -func testPutRawBadDataGetBlock(t *testing.T, factory TestableVolumeManagerFactory, +func testPutRawBadDataGetBlock(t TB, factory TestableVolumeManagerFactory, testHash string, testBlock []byte, badData []byte) { testableVolumes := setupHandlersWithGenericVolumeTest(t, factory) @@ -72,7 +71,7 @@ func testPutRawBadDataGetBlock(t *testing.T, factory TestableVolumeManagerFactor } // Invoke PutBlock twice to ensure CompareAndTouch path is tested. -func testPutBlock(t *testing.T, factory TestableVolumeManagerFactory, testHash string, testBlock []byte) { +func testPutBlock(t TB, factory TestableVolumeManagerFactory, testHash string, testBlock []byte) { setupHandlersWithGenericVolumeTest(t, factory) // PutBlock @@ -95,7 +94,7 @@ func testPutBlock(t *testing.T, factory TestableVolumeManagerFactory, testHash s } // Put a bad block using PutRaw, overwrite it using PutBlock and get it. -func testPutBlockCorrupt(t *testing.T, factory TestableVolumeManagerFactory, +func testPutBlockCorrupt(t TB, factory TestableVolumeManagerFactory, testHash string, testBlock []byte, badData []byte) { testableVolumes := setupHandlersWithGenericVolumeTest(t, factory)