public void StopStreamRecorderAsync_Success() { // Case 1 var wowzaHttpClient = new WowzaHttpClient(new HttpClient(new FakeHttpMessageHandler()) { BaseAddress = new Uri($"http://{HttpStatusCode.OK}.com/") }); var result = wowzaHttpClient.StopStreamRecorderAsync ( It.IsAny <string>(), It.IsAny <string>(), It.IsAny <string>() ); result.IsCompleted.Should().BeTrue(); result.IsFaulted.Should().BeFalse(); }
public void StopStreamRecorderAsync_Throws_AudioPlatformException_On_Http_Failure() { // Case 1 var wowzaHttpClient = new WowzaHttpClient(new HttpClient(new FakeHttpMessageHandler()) { BaseAddress = new Uri($"http://{nameof(Exception)}.com/") }); var exception = Assert.ThrowsAsync <Exception> ( () => wowzaHttpClient.StopStreamRecorderAsync ( It.IsAny <string>(), It.IsAny <string>(), It.IsAny <string>() ) ); exception.Message.Should().Be("Exception thrown"); }