2020-10-31 18:21:46 +00:00
using System ;
2022-07-20 12:29:30 +00:00
using System.Collections.Generic ;
2022-07-19 19:28:04 +00:00
using System.Linq ;
2020-10-31 18:21:46 +00:00
using System.Net ;
using Jellyfin.Networking.Manager ;
using MediaBrowser.Common.Configuration ;
2023-11-10 15:59:45 +00:00
using MediaBrowser.Common.Net ;
2023-02-16 17:15:12 +00:00
using MediaBrowser.Model.Net ;
2023-10-10 22:02:37 +00:00
using Microsoft.Extensions.Configuration ;
2020-10-31 18:21:46 +00:00
using Microsoft.Extensions.Logging.Abstractions ;
2021-03-09 02:04:47 +00:00
using Moq ;
2020-10-31 18:21:46 +00:00
using Xunit ;
2023-11-14 18:12:17 +00:00
using IConfigurationManager = MediaBrowser . Common . Configuration . IConfigurationManager ;
2020-10-31 18:21:46 +00:00
2020-11-21 16:08:19 +00:00
namespace Jellyfin.Networking.Tests
2020-10-31 18:21:46 +00:00
{
2020-11-21 16:03:25 +00:00
public class NetworkParseTests
2020-10-31 18:21:46 +00:00
{
2021-03-23 16:39:55 +00:00
internal static IConfigurationManager GetMockConfig ( NetworkConfiguration conf )
2020-10-31 18:21:46 +00:00
{
var configManager = new Mock < IConfigurationManager >
{
CallBase = true
} ;
configManager . Setup ( x = > x . GetConfiguration ( It . IsAny < string > ( ) ) ) . Returns ( conf ) ;
2021-10-03 04:05:18 +00:00
return configManager . Object ;
2020-10-31 18:21:46 +00:00
}
2020-11-21 20:31:24 +00:00
/// <summary>
2021-02-21 13:31:59 +00:00
/// Checks the ability to ignore virtual interfaces.
2020-11-21 20:31:24 +00:00
/// </summary>
2021-01-06 20:30:57 +00:00
/// <param name="interfaces">Mock network setup, in the format (IP address, interface index, interface name) | .... </param>
2020-11-21 20:31:24 +00:00
/// <param name="lan">LAN addresses.</param>
/// <param name="value">Bind addresses that are excluded.</param>
2020-10-31 18:21:46 +00:00
[Theory]
2021-02-21 13:31:59 +00:00
// All valid
[InlineData("192.168.1.208/24,-16,eth16|200.200.200.200/24,11,eth11", "192.168.1.0/24;200.200.200.0/24", "[192.168.1.208/24,200.200.200.200/24] ")]
// eth16 only
[InlineData("192.168.1.208/24,-16,eth16|200.200.200.200/24,11,eth11", "192.168.1.0/24", "[192.168.1.208/24] ")]
2022-10-17 13:38:42 +00:00
// eth16 only without mask
[InlineData("192.168.1.208,-16,eth16|200.200.200.200,11,eth11", "192.168.1.0/24", "[192.168.1.208/32] ")]
2021-04-14 09:26:05 +00:00
// All interfaces excluded. (including loopbacks)
2021-05-01 16:21:14 +00:00
[InlineData("192.168.1.208/24,-16,vEthernet1|192.168.2.208/24,-16,vEthernet212|200.200.200.200/24,11,eth11", "192.168.1.0/24", "[] ")]
2021-02-21 13:31:59 +00:00
// vEthernet1 and vEthernet212 should be excluded.
2021-05-01 16:21:14 +00:00
[InlineData("192.168.1.200/24,-20,vEthernet1|192.168.2.208/24,-16,vEthernet212|200.200.200.200/24,11,eth11", "192.168.1.0/24;200.200.200.200/24", "[200.200.200.200/24] ")]
2021-03-09 00:07:21 +00:00
// Overlapping interface,
[InlineData("192.168.1.110/24,-20,br0|192.168.1.10/24,-16,br0|200.200.200.200/24,11,eth11", "192.168.1.0/24", "[192.168.1.110/24,192.168.1.10/24] ")]
2020-10-31 18:21:46 +00:00
public void IgnoreVirtualInterfaces ( string interfaces , string lan , string value )
{
var conf = new NetworkConfiguration ( )
{
2023-02-15 21:34:44 +00:00
EnableIPv6 = true ,
EnableIPv4 = true ,
2020-11-16 17:30:27 +00:00
LocalNetworkSubnets = lan ? . Split ( ';' ) ? ? throw new ArgumentNullException ( nameof ( lan ) )
2020-10-31 18:21:46 +00:00
} ;
NetworkManager . MockNetworkSettings = interfaces ;
2023-10-10 22:02:37 +00:00
var startupConf = new Mock < IConfiguration > ( ) ;
using var nm = new NetworkManager ( NetworkParseTests . GetMockConfig ( conf ) , startupConf . Object , new NullLogger < NetworkManager > ( ) ) ;
2020-10-31 18:21:46 +00:00
NetworkManager . MockNetworkSettings = string . Empty ;
2022-07-19 19:53:10 +00:00
Assert . Equal ( value , "[" + string . Join ( "," , nm . GetInternalBindAddresses ( ) . Select ( x = > x . Address + "/" + x . Subnet . PrefixLength ) ) + "]" ) ;
2020-10-31 18:21:46 +00:00
}
2022-07-19 21:42:32 +00:00
/// <summary>
/// Checks valid IP address formats.
/// </summary>
/// <param name="address">IP Address.</param>
[Theory]
[InlineData("127.0.0.1")]
2022-10-17 13:38:42 +00:00
[InlineData("127.0.0.1/8")]
[InlineData("192.168.1.2")]
[InlineData("192.168.1.2/24")]
2022-07-19 21:42:32 +00:00
[InlineData("fd23:184f:2029:0:3139:7386:67d7:d517")]
[InlineData("[fd23:184f:2029:0:3139:7386:67d7:d517] ")]
[InlineData("fe80::7add:12ff:febb:c67b%16")]
[InlineData("[fe80::7add:12ff:febb:c67b%16] : 123 ")]
[InlineData("fe80::7add:12ff:febb:c67b%16:123")]
[InlineData("[fe80::7add:12ff:febb:c67b%16] ")]
2022-10-17 13:38:42 +00:00
[InlineData("fd23:184f:2029:0:3139:7386:67d7:d517/56")]
2022-07-19 21:42:32 +00:00
public static void TryParseValidIPStringsTrue ( string address )
2023-11-10 15:59:45 +00:00
= > Assert . True ( NetworkUtils . TryParseToSubnet ( address , out _ ) ) ;
2022-07-19 21:42:32 +00:00
/// <summary>
/// Checks invalid IP address formats.
/// </summary>
/// <param name="address">IP Address.</param>
[Theory]
[InlineData("127.0.0.1#")]
[InlineData("localhost!")]
[InlineData("256.128.0.0.0.1")]
[InlineData("fd23:184f:2029:0:3139:7386:67d7:d517:1231")]
[InlineData("[fd23:184f:2029:0:3139:7386:67d7:d517:1231] ")]
public static void TryParseInvalidIPStringsFalse ( string address )
2023-11-10 15:59:45 +00:00
= > Assert . False ( NetworkUtils . TryParseToSubnet ( address , out _ ) ) ;
2022-07-19 21:42:32 +00:00
2022-10-17 13:38:42 +00:00
/// <summary>
/// Checks if IPv4 address is within a defined subnet.
/// </summary>
/// <param name="netMask">Network mask.</param>
2023-07-29 21:52:26 +00:00
/// <param name="ipAddress">IP Address.</param>
2020-10-31 18:21:46 +00:00
[Theory]
[InlineData("192.168.5.85/24", "192.168.5.1")]
[InlineData("192.168.5.85/24", "192.168.5.254")]
[InlineData("10.128.240.50/30", "10.128.240.48")]
[InlineData("10.128.240.50/30", "10.128.240.49")]
[InlineData("10.128.240.50/30", "10.128.240.50")]
[InlineData("10.128.240.50/30", "10.128.240.51")]
[InlineData("127.0.0.1/8", "127.0.0.1")]
2023-02-15 21:34:44 +00:00
public void IPv4SubnetMaskMatchesValidIPAddress ( string netMask , string ipAddress )
2020-10-31 18:21:46 +00:00
{
2022-10-17 13:38:42 +00:00
var ipa = IPAddress . Parse ( ipAddress ) ;
2023-11-10 15:59:45 +00:00
Assert . True ( NetworkUtils . TryParseToSubnet ( netMask , out var subnet ) & & subnet . Contains ( IPAddress . Parse ( ipAddress ) ) ) ;
2020-10-31 18:21:46 +00:00
}
2022-10-17 13:38:42 +00:00
/// <summary>
/// Checks if IPv4 address is not within a defined subnet.
/// </summary>
/// <param name="netMask">Network mask.</param>
/// <param name="ipAddress">IP Address.</param>
2020-10-31 18:21:46 +00:00
[Theory]
[InlineData("192.168.5.85/24", "192.168.4.254")]
[InlineData("192.168.5.85/24", "191.168.5.254")]
[InlineData("10.128.240.50/30", "10.128.240.47")]
[InlineData("10.128.240.50/30", "10.128.240.52")]
[InlineData("10.128.240.50/30", "10.128.239.50")]
[InlineData("10.128.240.50/30", "10.127.240.51")]
2023-02-15 21:34:44 +00:00
public void IPv4SubnetMaskDoesNotMatchInvalidIPAddress ( string netMask , string ipAddress )
2020-10-31 18:21:46 +00:00
{
2022-10-17 13:38:42 +00:00
var ipa = IPAddress . Parse ( ipAddress ) ;
2023-11-10 15:59:45 +00:00
Assert . False ( NetworkUtils . TryParseToSubnet ( netMask , out var subnet ) & & subnet . Contains ( IPAddress . Parse ( ipAddress ) ) ) ;
2020-10-31 18:21:46 +00:00
}
2022-10-17 13:38:42 +00:00
/// <summary>
/// Checks if IPv6 address is within a defined subnet.
/// </summary>
/// <param name="netMask">Network mask.</param>
/// <param name="ipAddress">IP Address.</param>
2020-10-31 18:21:46 +00:00
[Theory]
[InlineData("2001:db8:abcd:0012::0/64", "2001:0DB8:ABCD:0012:0000:0000:0000:0000")]
[InlineData("2001:db8:abcd:0012::0/64", "2001:0DB8:ABCD:0012:FFFF:FFFF:FFFF:FFFF")]
[InlineData("2001:db8:abcd:0012::0/64", "2001:0DB8:ABCD:0012:0001:0000:0000:0000")]
[InlineData("2001:db8:abcd:0012::0/64", "2001:0DB8:ABCD:0012:FFFF:FFFF:FFFF:FFF0")]
[InlineData("2001:db8:abcd:0012::0/128", "2001:0DB8:ABCD:0012:0000:0000:0000:0000")]
2023-02-15 21:34:44 +00:00
public void IPv6SubnetMaskMatchesValidIPAddress ( string netMask , string ipAddress )
2020-10-31 18:21:46 +00:00
{
2023-11-10 15:59:45 +00:00
Assert . True ( NetworkUtils . TryParseToSubnet ( netMask , out var subnet ) & & subnet . Contains ( IPAddress . Parse ( ipAddress ) ) ) ;
2020-10-31 18:21:46 +00:00
}
[Theory]
[InlineData("2001:db8:abcd:0012::0/64", "2001:0DB8:ABCD:0011:FFFF:FFFF:FFFF:FFFF")]
[InlineData("2001:db8:abcd:0012::0/64", "2001:0DB8:ABCD:0013:0000:0000:0000:0000")]
[InlineData("2001:db8:abcd:0012::0/64", "2001:0DB8:ABCD:0013:0001:0000:0000:0000")]
[InlineData("2001:db8:abcd:0012::0/64", "2001:0DB8:ABCD:0011:FFFF:FFFF:FFFF:FFF0")]
[InlineData("2001:db8:abcd:0012::0/128", "2001:0DB8:ABCD:0012:0000:0000:0000:0001")]
2023-02-15 21:34:44 +00:00
public void IPv6SubnetMaskDoesNotMatchInvalidIPAddress ( string netMask , string ipAddress )
2020-10-31 18:21:46 +00:00
{
2023-11-10 15:59:45 +00:00
Assert . False ( NetworkUtils . TryParseToSubnet ( netMask , out var subnet ) & & subnet . Contains ( IPAddress . Parse ( ipAddress ) ) ) ;
2020-10-31 18:21:46 +00:00
}
[Theory]
2020-11-21 20:31:24 +00:00
// Testing bind interfaces.
2020-10-31 18:21:46 +00:00
// On my system eth16 is internal, eth11 external (Windows defines the indexes).
//
2022-07-19 19:28:04 +00:00
// This test is to replicate how DLNA requests work throughout the system.
2020-10-31 18:21:46 +00:00
// User on internal network, we're bound internal and external - so result is internal.
[InlineData("192.168.1.1", "eth16,eth11", false, "eth16")]
// User on external network, we're bound internal and external - so result is external.
[InlineData("8.8.8.8", "eth16,eth11", false, "eth11")]
// User on internal network, we're bound internal only - so result is internal.
[InlineData("10.10.10.10", "eth16", false, "eth16")]
// User on internal network, no binding specified - so result is the 1st internal.
[InlineData("192.168.1.1", "", false, "eth16")]
// User on external network, internal binding only - so result is the 1st internal.
[InlineData("jellyfin.org", "eth16", false, "eth16")]
// User on external network, no binding - so result is the 1st external.
[InlineData("jellyfin.org", "", false, "eth11")]
2021-04-10 18:44:09 +00:00
// Dns failure - should skip the test.
2021-04-12 09:28:24 +00:00
// https://en.wikipedia.org/wiki/.test
[InlineData("invalid.domain.test", "", false, "eth11")]
2020-10-31 18:21:46 +00:00
// User assumed to be internal, no binding - so result is the 1st internal.
[InlineData("", "", false, "eth16")]
public void TestBindInterfaces ( string source , string bindAddresses , bool ipv6enabled , string result )
{
2022-10-06 18:21:23 +00:00
ArgumentNullException . ThrowIfNull ( source ) ;
2020-11-16 17:30:27 +00:00
2022-10-06 18:21:23 +00:00
ArgumentNullException . ThrowIfNull ( bindAddresses ) ;
2020-11-16 17:30:27 +00:00
2022-10-06 18:21:23 +00:00
ArgumentNullException . ThrowIfNull ( result ) ;
2020-11-16 17:30:27 +00:00
2020-10-31 18:21:46 +00:00
var conf = new NetworkConfiguration ( )
{
LocalNetworkAddresses = bindAddresses . Split ( ',' ) ,
2023-02-15 21:34:44 +00:00
EnableIPv6 = ipv6enabled ,
EnableIPv4 = true
2020-10-31 18:21:46 +00:00
} ;
2021-01-06 20:30:57 +00:00
NetworkManager . MockNetworkSettings = "192.168.1.208/24,-16,eth16|200.200.200.200/24,11,eth11" ;
2023-10-10 22:02:37 +00:00
var startupConf = new Mock < IConfiguration > ( ) ;
using var nm = new NetworkManager ( NetworkParseTests . GetMockConfig ( conf ) , startupConf . Object , new NullLogger < NetworkManager > ( ) ) ;
2020-10-31 18:21:46 +00:00
NetworkManager . MockNetworkSettings = string . Empty ;
2023-07-02 10:34:50 +00:00
// Check to see if DNS resolution is working. If not, skip test.
2023-11-10 15:59:45 +00:00
if ( ! NetworkUtils . TryParseHost ( source , out var host ) )
2023-07-02 10:34:50 +00:00
{
return ;
}
2021-04-10 18:44:09 +00:00
2023-07-02 10:34:50 +00:00
if ( nm . TryParseInterface ( result , out var resultObj ) )
2020-10-31 18:21:46 +00:00
{
2023-07-29 21:52:26 +00:00
result = resultObj [ 0 ] . Address . ToString ( ) ;
2023-02-16 17:15:12 +00:00
var intf = nm . GetBindAddress ( source , out _ ) ;
2020-10-31 18:21:46 +00:00
2020-11-21 20:02:19 +00:00
Assert . Equal ( intf , result ) ;
2020-10-31 18:21:46 +00:00
}
}
[Theory]
// Testing bind interfaces. These are set for my system so won't work elsewhere.
// On my system eth16 is internal, eth11 external (Windows defines the indexes).
//
// This test is to replicate how subnet bound ServerPublisherUri work throughout the system.
2021-03-09 02:04:47 +00:00
2020-10-31 18:21:46 +00:00
// User on internal network, we're bound internal and external - so result is internal override.
[InlineData("192.168.1.1", "192.168.1.0/24", "eth16,eth11", false, "192.168.1.0/24=internal.jellyfin", "internal.jellyfin")]
// User on external network, we're bound internal and external - so result is override.
2023-10-10 22:02:37 +00:00
[InlineData("8.8.8.8", "192.168.1.0/24", "eth16,eth11", false, "all=http://helloworld.com", "http://helloworld.com")]
2020-10-31 18:21:46 +00:00
// User on internal network, we're bound internal only, but the address isn't in the LAN - so return the override.
2023-10-10 22:02:37 +00:00
[InlineData("10.10.10.10", "192.168.1.0/24", "eth16", false, "external=http://internalButNotDefinedAsLan.com", "http://internalButNotDefinedAsLan.com")]
2020-10-31 18:21:46 +00:00
// User on internal network, no binding specified - so result is the 1st internal.
2023-10-10 22:02:37 +00:00
[InlineData("192.168.1.1", "192.168.1.0/24", "", false, "external=http://helloworld.com", "eth16")]
2020-10-31 18:21:46 +00:00
2021-02-07 17:42:23 +00:00
// User on external network, internal binding only - so assumption is a proxy forward, return external override.
2023-10-10 22:02:37 +00:00
[InlineData("jellyfin.org", "192.168.1.0/24", "eth16", false, "external=http://helloworld.com", "http://helloworld.com")]
2020-10-31 18:21:46 +00:00
// User on external network, no binding - so result is the 1st external which is overriden.
2023-10-10 22:02:37 +00:00
[InlineData("jellyfin.org", "192.168.1.0/24", "", false, "external=http://helloworld.com", "http://helloworld.com")]
2020-10-31 18:21:46 +00:00
2023-10-10 22:02:37 +00:00
// User assumed to be internal, no binding - so result is the 1st matching interface.
[InlineData("", "192.168.1.0/24", "", false, "all=http://helloworld.com", "eth16")]
2020-10-31 18:21:46 +00:00
2023-10-10 22:02:37 +00:00
// User is internal, no binding - so result is the 1st internal interface, which is then overridden.
2020-10-31 18:21:46 +00:00
[InlineData("192.168.1.1", "192.168.1.0/24", "", false, "eth16=http://helloworld.com", "http://helloworld.com")]
public void TestBindInterfaceOverrides ( string source , string lan , string bindAddresses , bool ipv6enabled , string publishedServers , string result )
{
2022-10-06 18:21:23 +00:00
ArgumentNullException . ThrowIfNull ( lan ) ;
2020-11-16 17:30:27 +00:00
2022-10-06 18:21:23 +00:00
ArgumentNullException . ThrowIfNull ( bindAddresses ) ;
2020-11-16 17:30:27 +00:00
2020-10-31 18:21:46 +00:00
var conf = new NetworkConfiguration ( )
{
LocalNetworkSubnets = lan . Split ( ',' ) ,
LocalNetworkAddresses = bindAddresses . Split ( ',' ) ,
2023-02-15 21:34:44 +00:00
EnableIPv6 = ipv6enabled ,
EnableIPv4 = true ,
2020-10-31 18:21:46 +00:00
PublishedServerUriBySubnet = new string [ ] { publishedServers }
} ;
2021-01-06 20:30:57 +00:00
NetworkManager . MockNetworkSettings = "192.168.1.208/24,-16,eth16|200.200.200.200/24,11,eth11" ;
2023-10-10 22:02:37 +00:00
var startupConf = new Mock < IConfiguration > ( ) ;
using var nm = new NetworkManager ( NetworkParseTests . GetMockConfig ( conf ) , startupConf . Object , new NullLogger < NetworkManager > ( ) ) ;
2020-10-31 18:21:46 +00:00
NetworkManager . MockNetworkSettings = string . Empty ;
2023-02-20 20:51:15 +00:00
if ( nm . TryParseInterface ( result , out IReadOnlyList < IPData > ? resultObj ) & & resultObj is not null )
2020-10-31 18:21:46 +00:00
{
2022-10-17 13:38:42 +00:00
// Parse out IPAddresses so we can do a string comparison (ignore subnet masks).
2023-07-29 21:52:26 +00:00
result = resultObj [ 0 ] . Address . ToString ( ) ;
2020-10-31 18:21:46 +00:00
}
2023-02-16 17:15:12 +00:00
var intf = nm . GetBindAddress ( source , out int? _ ) ;
2020-10-31 18:21:46 +00:00
2022-07-19 19:28:04 +00:00
Assert . Equal ( result , intf ) ;
2020-10-31 18:21:46 +00:00
}
2021-03-11 21:36:58 +00:00
[Theory]
2021-03-11 22:47:30 +00:00
[InlineData("185.10.10.10,200.200.200.200", "79.2.3.4", true)]
[InlineData("185.10.10.10", "185.10.10.10", false)]
2021-03-22 17:04:09 +00:00
[InlineData("", "100.100.100.100", false)]
2023-02-17 18:27:36 +00:00
public void HasRemoteAccess_GivenWhitelist_AllowsOnlyIPsInWhitelist ( string addresses , string remoteIP , bool denied )
2021-03-11 21:36:58 +00:00
{
// Comma separated list of IP addresses or IP/netmask entries for networks that will be allowed to connect remotely.
// If left blank, all remote addresses will be allowed.
var conf = new NetworkConfiguration ( )
{
2023-02-15 21:34:44 +00:00
EnableIPv4 = true ,
2021-03-27 08:16:48 +00:00
RemoteIPFilter = addresses . Split ( ',' ) ,
2021-03-11 22:47:30 +00:00
IsRemoteIPFilterBlacklist = false
} ;
2023-10-10 22:02:37 +00:00
var startupConf = new Mock < IConfiguration > ( ) ;
using var nm = new NetworkManager ( NetworkParseTests . GetMockConfig ( conf ) , startupConf . Object , new NullLogger < NetworkManager > ( ) ) ;
2021-03-11 22:47:30 +00:00
2023-02-17 18:27:36 +00:00
Assert . NotEqual ( nm . HasRemoteAccess ( IPAddress . Parse ( remoteIP ) ) , denied ) ;
2021-03-11 22:47:30 +00:00
}
[Theory]
2021-03-22 17:04:09 +00:00
[InlineData("185.10.10.10", "79.2.3.4", false)]
[InlineData("185.10.10.10", "185.10.10.10", true)]
[InlineData("", "100.100.100.100", false)]
2022-07-19 19:28:04 +00:00
2023-02-17 18:27:36 +00:00
public void HasRemoteAccess_GivenBlacklist_BlacklistTheIPs ( string addresses , string remoteIP , bool denied )
2021-03-11 22:47:30 +00:00
{
// Comma separated list of IP addresses or IP/netmask entries for networks that will be allowed to connect remotely.
// If left blank, all remote addresses will be allowed.
var conf = new NetworkConfiguration ( )
{
2023-02-15 21:34:44 +00:00
EnableIPv4 = true ,
2021-03-27 08:16:48 +00:00
RemoteIPFilter = addresses . Split ( ',' ) ,
2021-03-11 22:47:30 +00:00
IsRemoteIPFilterBlacklist = true
2021-03-11 21:36:58 +00:00
} ;
2023-10-10 22:02:37 +00:00
var startupConf = new Mock < IConfiguration > ( ) ;
using var nm = new NetworkManager ( NetworkParseTests . GetMockConfig ( conf ) , startupConf . Object , new NullLogger < NetworkManager > ( ) ) ;
2021-03-11 21:36:58 +00:00
2023-02-17 18:27:36 +00:00
Assert . NotEqual ( nm . HasRemoteAccess ( IPAddress . Parse ( remoteIP ) ) , denied ) ;
2021-03-11 21:36:58 +00:00
}
2021-04-24 22:54:48 +00:00
[Theory]
[InlineData("192.168.1.209/24,-16,eth16", "192.168.1.0/24", "", "192.168.1.209")] // Only 1 address so use it.
[InlineData("192.168.1.208/24,-16,eth16|10.0.0.1/24,10,eth7", "192.168.1.0/24", "", "192.168.1.208")] // LAN address is specified by default.
[InlineData("192.168.1.208/24,-16,eth16|10.0.0.1/24,10,eth7", "192.168.1.0/24", "10.0.0.1", "10.0.0.1")] // return bind address
2021-09-07 08:27:55 +00:00
public void GetBindInterface_NoSourceGiven_Success ( string interfaces , string lan , string bind , string result )
2021-04-24 22:54:48 +00:00
{
2021-09-07 08:27:55 +00:00
var conf = new NetworkConfiguration
2021-04-24 22:54:48 +00:00
{
2023-02-15 21:34:44 +00:00
EnableIPv4 = true ,
2021-04-24 22:54:48 +00:00
LocalNetworkSubnets = lan . Split ( ',' ) ,
LocalNetworkAddresses = bind . Split ( ',' )
} ;
NetworkManager . MockNetworkSettings = interfaces ;
2023-10-10 22:02:37 +00:00
var startupConf = new Mock < IConfiguration > ( ) ;
using var nm = new NetworkManager ( NetworkParseTests . GetMockConfig ( conf ) , startupConf . Object , new NullLogger < NetworkManager > ( ) ) ;
2021-04-24 22:54:48 +00:00
2023-02-16 17:15:12 +00:00
var interfaceToUse = nm . GetBindAddress ( string . Empty , out _ ) ;
2021-04-24 22:54:48 +00:00
2021-05-01 15:29:13 +00:00
Assert . Equal ( result , interfaceToUse ) ;
2021-04-24 22:54:48 +00:00
}
[Theory]
[InlineData("192.168.1.209/24,-16,eth16", "192.168.1.0/24", "", "192.168.1.210", "192.168.1.209")] // Source on LAN
[InlineData("192.168.1.208/24,-16,eth16|10.0.0.1/24,10,eth7", "192.168.1.0/24", "", "192.168.1.209", "192.168.1.208")] // Source on LAN
[InlineData("192.168.1.208/24,-16,eth16|10.0.0.1/24,10,eth7", "192.168.1.0/24", "", "8.8.8.8", "10.0.0.1")] // Source external.
[InlineData("192.168.1.208/24,-16,eth16|10.0.0.1/24,10,eth7", "192.168.1.0/24", "10.0.0.1", "192.168.1.209", "10.0.0.1")] // LAN not bound, so return external.
[InlineData("192.168.1.208/24,-16,eth16|10.0.0.1/24,10,eth7", "192.168.1.0/24", "192.168.1.208,10.0.0.1", "8.8.8.8", "10.0.0.1")] // return external bind address
[InlineData("192.168.1.208/24,-16,eth16|10.0.0.1/24,10,eth7", "192.168.1.0/24", "192.168.1.208,10.0.0.1", "192.168.1.210", "192.168.1.208")] // return LAN bind address
2021-09-07 08:27:55 +00:00
public void GetBindInterface_ValidSourceGiven_Success ( string interfaces , string lan , string bind , string source , string result )
2021-04-24 22:54:48 +00:00
{
2021-09-07 08:27:55 +00:00
var conf = new NetworkConfiguration
2021-04-24 22:54:48 +00:00
{
2023-02-15 21:34:44 +00:00
EnableIPv4 = true ,
2021-04-24 22:54:48 +00:00
LocalNetworkSubnets = lan . Split ( ',' ) ,
LocalNetworkAddresses = bind . Split ( ',' )
} ;
NetworkManager . MockNetworkSettings = interfaces ;
2023-10-10 22:02:37 +00:00
var startupConf = new Mock < IConfiguration > ( ) ;
using var nm = new NetworkManager ( NetworkParseTests . GetMockConfig ( conf ) , startupConf . Object , new NullLogger < NetworkManager > ( ) ) ;
2021-04-24 22:54:48 +00:00
2023-02-16 17:15:12 +00:00
var interfaceToUse = nm . GetBindAddress ( source , out _ ) ;
2021-04-24 22:54:48 +00:00
2021-05-01 16:16:25 +00:00
Assert . Equal ( result , interfaceToUse ) ;
2021-04-24 22:54:48 +00:00
}
2020-10-31 18:21:46 +00:00
}
}