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.
18 lines
950 B
18 lines
950 B
using Emby.Dlna.PlayTo;
|
|
using Xunit;
|
|
|
|
namespace Jellyfin.Dlna.Tests
|
|
{
|
|
public static class GetUuidTests
|
|
{
|
|
[Theory]
|
|
[InlineData("uuid:fc4ec57e-b051-11db-88f8-0060085db3f6::urn:schemas-upnp-org:device:WANDevice:1", "fc4ec57e-b051-11db-88f8-0060085db3f6")]
|
|
[InlineData("uuid:IGD{8c80f73f-4ba0-45fa-835d-042505d052be}000000000000", "8c80f73f-4ba0-45fa-835d-042505d052be")]
|
|
[InlineData("uuid:IGD{8c80f73f-4ba0-45fa-835d-042505d052be}000000000000::urn:schemas-upnp-org:device:InternetGatewayDevice:1", "8c80f73f-4ba0-45fa-835d-042505d052be")]
|
|
[InlineData("uuid:00000000-0000-0000-0000-000000000000::upnp:rootdevice", "00000000-0000-0000-0000-000000000000")]
|
|
[InlineData("uuid:fc4ec57e-b051-11db-88f8-0060085db3f6", "fc4ec57e-b051-11db-88f8-0060085db3f6")]
|
|
public static void GetUuid_Valid_Success(string usn, string uuid)
|
|
=> Assert.Equal(uuid, PlayToManager.GetUuid(usn));
|
|
}
|
|
}
|