You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
783 B
30 lines
783 B
// ReSharper disable InconsistentNaming
|
|
using FluentAssertions;
|
|
using NUnit.Framework;
|
|
using NzbDrone.Test.Common;
|
|
|
|
namespace NzbDrone.Common.Test
|
|
{
|
|
[TestFixture]
|
|
public class WebClientTests : TestBase
|
|
{
|
|
[Test]
|
|
public void DownloadString_should_be_able_to_dowload_text_file()
|
|
{
|
|
var jquery = new HttpProvider().DownloadString("http://www.google.com/robots.txt");
|
|
|
|
jquery.Should().NotBeBlank();
|
|
jquery.Should().Contain("Sitemap");
|
|
}
|
|
|
|
[TestCase("")]
|
|
[TestCase("http://")]
|
|
[TestCase(null)]
|
|
[ExpectedException]
|
|
public void DownloadString_should_throw_on_error(string url)
|
|
{
|
|
var jquery = new HttpProvider().DownloadString(url);
|
|
}
|
|
}
|
|
}
|