forked from dotnet/sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBrowserConnectorTests.cs
25 lines (22 loc) · 1.21 KB
/
BrowserConnectorTests.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
#nullable enable
namespace Microsoft.DotNet.Watch.UnitTests;
public class BrowserConnectorTests
{
[Theory]
[InlineData(null, "https://localhost:1234", "https://localhost:1234")]
[InlineData(null, "https://localhost:1234/", "https://localhost:1234/")]
[InlineData("", "https://localhost:1234", "https://localhost:1234")]
[InlineData(" ", "https://localhost:1234", "https://localhost:1234")]
[InlineData("", "a/b", "a/b")]
[InlineData("x/y", "a/b", "a/b")]
[InlineData("a/b?X=1", "https://localhost:1234", "https://localhost:1234/a/b?X=1")]
[InlineData("https://localhost:1000/", "https://localhost:1234", "https://localhost:1000/")]
[InlineData("https://localhost:1000/a/b", "https://localhost:1234", "https://localhost:1000/a/b")]
[InlineData("https://localhost:1000/x/y?z=u", "https://localhost:1234/a?b=c", "https://localhost:1000/x/y?z=u")]
public void GetLaunchUrl(string? profileLaunchUrl, string outputLaunchUrl, string expected)
{
Assert.Equal(expected, BrowserConnector.GetLaunchUrl(profileLaunchUrl, outputLaunchUrl));
}
}