/
githubmirror
/
aspnetcore
Обзор
Документация
Войти
/
githubmirror
/
aspnetcore
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Components/test/E2ETest/Tests/SignalRClientTest.cs
81 строка
3 KB
Shreyas Jejurkar
chore : Remove unwanted `using` statement (#39176)
02 янв 2022, 17:39
Не верифицирован
02 янв 2022, 17:39
c85baf8
Код
Авторство
О чём код?
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using BasicTestApp; using Microsoft.AspNetCore.Components.E2ETest.Infrastructure; using Microsoft.AspNetCore.Components.E2ETest.Infrastructure.ServerFixtures; using Microsoft.AspNetCore.E2ETesting; using OpenQA.Selenium; using OpenQA.Selenium.Support.UI; using TestServer; using Xunit.Abstractions; namespace Microsoft.AspNetCore.Components.E2ETest.Tests; public class SignalRClientTest : ServerTestBase<BlazorWasmTestAppFixture<BasicTestApp.Program>>, IClassFixture<BasicTestAppServerSiteFixture<CorsStartup>> { private readonly ServerFixture _apiServerFixture; public SignalRClientTest( BrowserFixture browserFixture, BlazorWasmTestAppFixture<BasicTestApp.Program> devHostServerFixture, BasicTestAppServerSiteFixture<CorsStartup> apiServerFixture, ITestOutputHelper output) : base(browserFixture, devHostServerFixture, output) { _serverFixture.PathBase = "/subdir"; _apiServerFixture = apiServerFixture; } protected override void InitializeAsyncCore() { Navigate(ServerPathBase); Browser.MountTestComponent<SignalRClientComponent>(); Browser.Exists(By.Id("signalr-client")); } public override Task InitializeAsync() => base.InitializeAsync(Guid.NewGuid().ToString()); [Fact] public void SignalRClientWorksWithLongPolling() { Browser.Exists(By.Id("hub-url")).SendKeys( new Uri(_apiServerFixture.RootUri, "/subdir/chathub").AbsoluteUri); var target = new SelectElement(Browser.Exists(By.Id("transport-type"))); target.SelectByText("LongPolling"); Browser.Exists(By.Id("hub-connect")).Click(); Browser.Equal("SignalR Client: Echo LongPolling", () => Browser.FindElements(By.CssSelector("li")).FirstOrDefault()?.Text); } [Fact] public void SignalRClientWorksWithWebSockets() { Browser.Exists(By.Id("hub-url")).SendKeys( new Uri(_apiServerFixture.RootUri, "/subdir/chathub").AbsoluteUri); var target = new SelectElement(Browser.Exists(By.Id("transport-type"))); target.SelectByText("WebSockets"); Browser.Exists(By.Id("hub-connect")).Click(); Browser.Equal("SignalR Client: Echo WebSockets", () => Browser.FindElements(By.CssSelector("li")).FirstOrDefault()?.Text); } [Fact] public void SignalRClientSendsUserAgent() { Browser.Exists(By.Id("hub-url")).SendKeys( new Uri(_apiServerFixture.RootUri, "/subdir/chathub").AbsoluteUri); var target = new SelectElement(Browser.Exists(By.Id("transport-type"))); target.SelectByText("LongPolling"); Browser.Exists(By.Id("hub-connect")).Click(); Browser.Equal("SignalR Client: Echo LongPolling", () => Browser.FindElements(By.CssSelector("li")).FirstOrDefault()?.Text); Browser.Exists(By.Id("hub-useragent")).Click(); Assert.NotNull(Browser.FindElement(By.Id("useragent")).Text); } }