Automate all E2E tests on WebView
See original GitHub issueWe now have test apps that can run the Blazor E2E tests from BasicTestApp
within a WinForms or WPF BlazorWebView
(see https://github.com/dotnet/aspnetcore/pull/31021). This represents the majority of Blazor’s E2E test cases. Most already pass without trouble, some fail for expected reasons (they aren’t applicable scenarios, or can’t work until SWA is added), and a few fail unexpectedly and probably indicate a missing piece of implementation or an actual bug. This issue is to track getting them all to work or at least explaining why they aren’t applicable.
Note that I’ve only checked the following within WinForms hosting, just because I got to it first. There’s no reason to think that WPF or MAUI hosting would behave differently (except if MAUI is on Mono, in which case certain dependency edge cases could vary).
Test cases
-
BasicTestApp.AddRemoveChildComponents (Add/remove child components)
- OK
-
BasicTestApp.AfterRenderInteropComponent (After-render interop component)
- OK
-
BasicTestApp.AsyncEventHandlerComponent (Async event handlers)
- OK
-
BasicTestApp.AuthTest.AuthRouter (Auth cases)
- FAIL: There’s no AuthenticationStateProvider service
- Need to determine whether this test should be applicable and if so how it should be made to work
-
BasicTestApp.AuthTest.CascadingAuthenticationStateParent (Cascading authentication state)
- FAIL: Can’t load some type. Another auth case.
-
BasicTestApp.BindCasesComponent (bind cases)
- Looks OK
-
BasicTestApp.CascadingValueTest.CascadingValueSupplier (Cascading values)
- OK
-
BasicTestApp.ComponentRefComponent (Component ref component)
- OK
-
BasicTestApp.ConcurrentRenderParent (Concurrent rendering)
- OK
-
BasicTestApp.ConfigurationComponent (Configuration)
- FAIL: There’s no DI service
IWebAssemblyHostEnvironment
. - Need to determine whether this test should be applicable and if so how it should be made to work
- FAIL: There’s no DI service
-
BasicTestApp.ContentEditable (Content-editable)
- Doesn’t really do anything; probably works.
-
BasicTestApp.CounterComponent (Counter)
- OK
-
BasicTestApp.CounterComponentUsingChild (Counter using child component)
- OK
-
BasicTestApp.CounterComponentWrapper (Counter wrapped in parent)
- OK
-
BasicTestApp.CulturePicker (Culture Picker)
- FAIL: This needs to be wired up differently if we want it to actually change the test app culture.
- Doesn’t imply we have a bug though
-
BasicTestApp.DataDashComponent (data- attribute rendering)
- OK
-
BasicTestApp.DispatchingComponent (Dispatching to sync context)
- FAIL Produces output in wrong order, with one item missing entirely
- This one looks like a genuine bug in WinForms hosting. If we want the sync context semantics to be the same across all hosting models, looks like more work is needed.
-
BasicTestApp.DuplicateAttributesComponent (Duplicate attributes)
- OK
-
BasicTestApp.DynamicComponentRendering (DynamicComponent rendering)
- OK
-
BasicTestApp.ElementFocusComponent (Element focus component)
- OK (fixed in https://github.com/dotnet/aspnetcore/pull/31050)
-
BasicTestApp.ElementRefComponent (Element ref component)
- OK
-
BasicTestApp.ErrorComponent (Error throwing)
- OK
-
BasicTestApp.EventBubblingComponent (Event bubbling)
- OK
-
BasicTestApp.EventCallbackTest.EventCallbackCases (EventCallback)
- OK
-
BasicTestApp.EventCustomArgsComponent (Event custom arguments)
- OK
-
BasicTestApp.EventDisablingComponent (Event disabling)
- OK
-
BasicTestApp.EventDuringBatchRendering (Event during batch rendering)
- OK
-
BasicTestApp.EventPreventDefaultComponent (Event preventDefault)
- OK
-
BasicTestApp.ExternalContentPackage (External content package)
- OK - fixed in https://github.com/dotnet/aspnetcore/pull/31054
-
BasicTestApp.FocusEventComponent (Focus events)
- OK
-
BasicTestApp.FormsTest.InputFocusComponent (Input Focus)
-
BasicTestApp.FormsTest.NotifyPropertyChangedValidationComponent (INotifyPropertyChanged validation)
- OK
-
BasicTestApp.FormsTest.SimpleValidationComponent (Simple validation)
- OK
-
BasicTestApp.FormsTest.SimpleValidationComponentUsingExperimentalValidator (Simple validation using experimental validator)
- FAIL
Could not load type 'BasicTestApp.FormsTest.SimpleValidationComponentUsingExperimentalValidator'
- I have no idea what’s wrong here. Needs investigation.
- FAIL
-
BasicTestApp.FormsTest.TypicalValidationComponent (Typical validation)
- OK
-
BasicTestApp.FormsTest.TypicalValidationComponentUsingExperimentalValidator (Typical validation using experimental validator)
- FAIL
Could not load type 'BasicTestApp.FormsTest.TypicalValidationComponentUsingExperimentalValidator'
- I have no idea what’s wrong here. Needs investigation.
- FAIL
-
BasicTestApp.FormsTest.InputFileComponent (Input file)
- OK (fixed in dotnet/aspnetcore#31049)
-
BasicTestApp.NavigateOnSubmit (Navigate to submit)
- Inconclusive - I’m not certain what this test case is meant to do. It seems to do nothing.
-
BasicTestApp.GlobalizationBindCases (Globalization Bind Cases)
- OK
-
BasicTestApp.GracefulTermination (Graceful Termination)
- Probably fine but it’s not 100% clear whether these cases should behave differently in some way on WebView
-
BasicTestApp.HierarchicalImportsTest.Subdir.ComponentUsingImports (Imports statement)
- OK
-
BasicTestApp.HtmlBlockChildContent (ChildContent HTML Block)
- OK
-
BasicTestApp.HtmlEncodedChildContent (ChildContent HTML Encoded Block)
- OK
-
BasicTestApp.HtmlMixedChildContent (ChildContent Mixed Block)
- OK
-
BasicTestApp.HttpClientTest.BinaryHttpRequestsComponent (Binary HttpClient tester)
- Should be fine since
HttpClient
is independent of the code here. Validating it in more detail requires figuring out exactly what the automated tests would do (e.g., which URLs they request).
- Should be fine since
-
BasicTestApp.HttpClientTest.CookieCounterComponent (HttpClient cookies)
- Should be fine since
HttpClient
is independent of the code here. Validating it in more detail requires figuring out exactly what the automated tests would do (e.g., which URLs they request).
- Should be fine since
-
BasicTestApp.HttpClientTest.HttpRequestsComponent (HttpClient tester)
- Should be fine since
HttpClient
is independent of the code here. Validating it in more detail requires figuring out exactly what the automated tests would do (e.g., which URLs they request).
- Should be fine since
-
BasicTestApp.InputEventComponent (Input events)
- OK
-
BasicTestApp.InteropComponent (Interop component)
- OK - fixed in https://github.com/dotnet/aspnetcore/pull/31054
-
BasicTestApp.InteropOnInitializationComponent (Interop on initialization)
- OK
-
BasicTestApp.JsonSerializationCases (JSON serialization)
- OK
-
BasicTestApp.KeyCasesComponent (Key cases)
- OK
-
BasicTestApp.KeyPressEventComponent (Key press event)
- OK
-
BasicTestApp.LaggyTypingComponent (Laggy typing)
- OK
-
BasicTestApp.LimitCounterComponent (Limit counter component)
- OK I think; unclear how to repro the test case manually
-
BasicTestApp.LocalizedText (Localized Text)
- OK
-
BasicTestApp.LogicalElementInsertionCases (Logical element insertion cases)
- OK
-
BasicTestApp.LoggingComponent (Logging)
- FAIL - produces no log output, either to browser console or .NET host app console, at least on WinForms
- We need to work out what’s supposed to happen in the WebView case here and make sure it’s right
-
BasicTestApp.LongRunningInterop (Long running interop)
- OK
-
BasicTestApp.MarkupBlockComponent (Markup blocks)
- OK
-
BasicTestApp.MouseEventComponent (Mouse events)
- OK
-
BasicTestApp.MovingCheckboxesComponent (Moving checkboxes diff case)
- OK
-
BasicTestApp.MultipleChildContent (Multiple child content)
- OK
-
BasicTestApp.NavigationFailureComponent (Navigation failure)
- OK… I think? It does produce an exception, which seems to be what the test case wants to do.
-
BasicTestApp.ParentChildComponent (Parent component with child)
- OK
-
BasicTestApp.PropertiesChangedHandlerParent (Parent component that changes parameters on child)
- OK
-
@GetTestServerProjectComponent(“Components.TestServer.ProtectedBrowserStorageUsageComponent”) (Protected browser storage usage)
- Not applicable -
ProtectedBrowserStorage
doesn’t make sense in WebView (same as in WebAssembly)
- Not applicable -
-
@GetTestServerProjectComponent(“Components.TestServer.ProtectedBrowserStorageInjectionComponent”) (Protected browser storage injection)
- Not applicable -
ProtectedBrowserStorage
doesn’t make sense in WebView (same as in WebAssembly)
- Not applicable -
-
BasicTestApp.RazorTemplates (Razor Templates)
- OK, I think (unclear what the test case proves)
-
BasicTestApp.Reconnection.ReconnectionComponent (Reconnection server-side blazor)
- Not applicable - reconnection doesn’t make sense in WebView (it’s only for Server)
-
BasicTestApp.RedTextComponent (Red text)
- OK
-
BasicTestApp.ReliabilityComponent (Server reliability component)
- Not applicable - these are only for Server
-
BasicTestApp.RenderFragmentToggler (Render fragment renderer)
- OK
-
BasicTestApp.RenderAttributesBeforeConnectedCallback (Render attributes before ConnectedCallback)
- Not applicable - these are only for Server
-
BasicTestApp.ReorderingFocusComponent (Reordering focus retention)
- OK
-
BasicTestApp.RouterTest.NavigationManagerComponent (NavigationManager Test)
- OK
-
BasicTestApp.RouterTest.TestRouter (Router)
- Inconclusive - There are a lot of subcases here and it will take more work to figure out what we expect in each case on WebView
-
BasicTestApp.RouterTest.TestRouterWithOnNavigate (Router with OnNavigate)
- Inconclusive - There are a lot of subcases here and it will take more work to figure out what we expect in each case on WebView
-
BasicTestApp.RouterTest.TestRouterWithLazyAssembly (Router with dynamic assembly)
- FAIL There’s no DI service
LazyAssemblyLoader
- Lazy loading isn’t really applicable on WebView, but we should consider whether we want it to work anyway so that the same components would work across WebAssembly and WebView
- FAIL There’s no DI service
-
BasicTestApp.RouterTest.TestRouterWithAdditionalAssembly (Router with additional assembly)
- Inconclusive - There are a lot of subcases here and it will take more work to figure out what we expect in each case on WebView
-
BasicTestApp.SelectVariantsComponent (Select with component options)
- OK
-
BasicTestApp.SignalRClientComponent (SignalR client)
- Inconclusive - Need a SignalR hub at the other end to exercise this test
- It’s not really specific to WebView anyway. As long as the SignalR client works on the underlying runtime, there’s nothing else for us to test here
-
BasicTestApp.StringComparisonComponent (StringComparison)
- OK, I think (unclear what the test expects)
-
BasicTestApp.SvgComponent (SVG)
- OK
-
BasicTestApp.TextOnlyComponent (Plain text)
- OK
-
BasicTestApp.ToggleEventComponent (Toggle Event)
- OK
-
BasicTestApp.TouchEventComponent (Touch events)
- Inconclusive - Seems to do nothing. Not sure what it expects to happen.
-
BasicTestApp.VirtualizationComponent (Virtualization)
- OK
-
BasicTestApp.VirtualizationDataChanges (Virtualization data changes)
- OK
Issue Analytics
- State:
- Created 3 years ago
- Reactions:1
- Comments:5 (5 by maintainers)
(Add/remove child components)
(After-render interop component)
(Async event handlers)
(Auth cases)
(Cascading authentication state)
(bind cases)
(Cascading values)
(Component ref component)
(Concurrent rendering)
(Configuration)
(Content-editable)
(Counter)
(Counter using child component)
(Counter wrapped in parent)
(Culture Picker)
(data-* attribute rendering)
(Dispatching to sync context)
(Duplicate attributes)
(DynamicComponent rendering)
(Element focus component)
(Element ref component)
(Error throwing)
(Error boundary cases)
(Event bubbling)
(EventCallback)
(Event custom arguments)
(Event disabling)
(Event during batch rendering)
(Event preventDefault)
(External content package)
(Focus events)
(Input Focus)
(INotifyPropertyChanged validation)
(Simple validation)
(Simple validation using experimental validator)
(Typical validation)
(Typical validation using experimental validator)
(Input file)
(Navigate to submit)
(Globalization Bind Cases)
(Graceful Termination)
(Imports statement)
(ChildContent HTML Block)
(ChildContent HTML Encoded Block)
(ChildContent Mixed Block)
(Binary HttpClient tester)
(HttpClient cookies)
(HttpClient tester)
(Input events)
(Interop component)
(Interop on initialization)
(JSON serialization)
(Key cases)
(Key press event)
(Laggy typing)
(Limit counter component)
(Localized Text)
(Logical element insertion cases)
(Logging)
(Long running interop)
(Markup blocks)
(Mouse events)
(Moving checkboxes diff case)
(Multiple child content)
(Navigation failure)
(Parent component with child)
(Parent component that changes parameters on child)
(Razor Templates)
(Reconnection server-side blazor)
(Red text)
(Server reliability component)
(Render fragment renderer)
(Render attributes before ConnectedCallback)
(Reordering focus retention)
(NavigationManager Test)
(Router)
(Router with OnNavigate)
(Router with dynamic assembly)
(Router with additional assembly)
(Select with component options)
(SignalR client)
(StringComparison)
(SVG)
(Plain text)
(Toggle Event)
(Touch events)
(Virtualization)
(Virtualization data changes)
(Render on hot reload)
The pending work here is to automate using Photino in the dotnet/aspnetcore repo.