8 references to RetryRequestAsync
IISExpress.FunctionalTests (8)
src\Servers\IIS\IIS\test\Common.FunctionalTests\FrebTests.cs (1)
108
await result.HttpClient.
RetryRequestAsync
("/WaitingRequestCount", async message => await message.Content.ReadAsStringAsync() == "1");
src\Servers\IIS\IIS\test\Common.FunctionalTests\Infrastructure\Helpers.cs (1)
107
return
RetryRequestAsync
(client, uri, message => Task.FromResult(predicate(message)));
src\Servers\IIS\IIS\test\Common.FunctionalTests\RequestResponseTests.cs (2)
708
await _fixture.Client.
RetryRequestAsync
("/WaitingRequestCount", async message => await message.Content.ReadAsStringAsync() == "1");
711
await _fixture.Client.
RetryRequestAsync
("/WaitingRequestCount", async message => await message.Content.ReadAsStringAsync() == "0");
src\Servers\IIS\IIS\test\Common.LongTests\ShutdownTests.cs (4)
478
await deploymentResult.HttpClient.
RetryRequestAsync
("/ProcessId", async r => await r.Content.ReadAsStringAsync() != processBefore);
498
await deploymentResult.HttpClient.
RetryRequestAsync
("/ProcessId", async r => await r.Content.ReadAsStringAsync() == processBefore);
518
await deploymentResult.HttpClient.
RetryRequestAsync
("/ProcessId", async r => await r.Content.ReadAsStringAsync() == processBefore);
537
await deploymentResult.HttpClient.
RetryRequestAsync
("/ProcessId", async r => await r.Content.ReadAsStringAsync() == processBefore);