1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-10-06 08:07:20 +02:00
Radarr/NzbDrone.Common.Test/WebClientTests.cs

30 lines
783 B
C#
Raw Normal View History

2011-10-24 00:44:37 +02:00
// ReSharper disable InconsistentNaming
using FluentAssertions;
using NUnit.Framework;
2011-11-13 19:16:31 +01:00
using NzbDrone.Test.Common;
2011-10-24 00:44:37 +02:00
namespace NzbDrone.Common.Test
{
[TestFixture]
2011-11-13 19:16:31 +01:00
public class WebClientTests : TestBase
2011-10-24 00:44:37 +02:00
{
[Test]
2011-11-17 07:40:54 +01:00
public void DownloadString_should_be_able_to_dowload_text_file()
2011-10-24 00:44:37 +02:00
{
2012-02-11 01:48:20 +01:00
var jquery = new HttpProvider().DownloadString("http://www.google.com/robots.txt");
2011-10-24 00:44:37 +02:00
jquery.Should().NotBeBlank();
2011-11-17 07:40:54 +01:00
jquery.Should().Contain("Sitemap");
2011-10-24 00:44:37 +02:00
}
[TestCase("")]
[TestCase("http://")]
[TestCase(null)]
[ExpectedException]
public void DownloadString_should_throw_on_error(string url)
{
2012-02-11 01:48:20 +01:00
var jquery = new HttpProvider().DownloadString(url);
2011-10-24 00:44:37 +02:00
}
}
}