(t *testing.T)
| 237 | } |
| 238 | |
| 239 | func TestQueryFrontendRemoteRead(t *testing.T) { |
| 240 | runQueryFrontendTest(t, queryFrontendTestConfig{ |
| 241 | remoteReadEnabled: true, |
| 242 | setup: func(t *testing.T, s *e2e.Scenario) (configFile string, flags map[string]string) { |
| 243 | require.NoError(t, writeFileToSharedDir(s, cortexConfigFile, []byte(BlocksStorageConfig))) |
| 244 | |
| 245 | minio := e2edb.NewMinio(9000, BlocksStorageFlags()["-blocks-storage.s3.bucket-name"]) |
| 246 | require.NoError(t, s.StartAndWaitReady(minio)) |
| 247 | return cortexConfigFile, flags |
| 248 | }, |
| 249 | }) |
| 250 | } |
| 251 | |
| 252 | func TestQueryFrontendSubQueryStepSize(t *testing.T) { |
| 253 | runQueryFrontendTest(t, queryFrontendTestConfig{ |
nothing calls this directly
no test coverage detected