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.
37 lines
1.2 KiB
37 lines
1.2 KiB
using FluentAssertions;
|
|
using NUnit.Framework;
|
|
using NzbDrone.Common.Http;
|
|
using NzbDrone.Common.Http.Proxy;
|
|
using NzbDrone.Core.Http;
|
|
using NzbDrone.Test.Common;
|
|
|
|
namespace NzbDrone.Core.Test.Http
|
|
{
|
|
[TestFixture]
|
|
public class HttpProxySettingsProviderFixture : TestBase<HttpProxySettingsProvider>
|
|
{
|
|
private HttpProxySettings GetProxySettings()
|
|
{
|
|
return new HttpProxySettings(ProxyType.Socks5, "localhost", 8080, "*.httpbin.org,google.com", true, null, null);
|
|
}
|
|
|
|
[Test]
|
|
public void should_bypass_proxy()
|
|
{
|
|
var settings = GetProxySettings();
|
|
|
|
Subject.ShouldProxyBeBypassed(settings, new HttpUri("http://eu.httpbin.org/get")).Should().BeTrue();
|
|
Subject.ShouldProxyBeBypassed(settings, new HttpUri("http://google.com/get")).Should().BeTrue();
|
|
Subject.ShouldProxyBeBypassed(settings, new HttpUri("http://localhost:8654/get")).Should().BeTrue();
|
|
}
|
|
|
|
[Test]
|
|
public void should_not_bypass_proxy()
|
|
{
|
|
var settings = GetProxySettings();
|
|
|
|
Subject.ShouldProxyBeBypassed(settings, new HttpUri("http://bing.com/get")).Should().BeFalse();
|
|
}
|
|
}
|
|
}
|