Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

JSInterop: Enable returning null for a nullable value type #52908

Conversation

Regenhardt
Copy link
Contributor

@Regenhardt Regenhardt commented Dec 19, 2023

JSInterop: Enable returning null for a nullable value type

  • You've read the Contributor Guide and Code of Conduct.
  • You've included unit or integration tests for your change, where applicable.
  • You've included inline docs for your change, where applicable.
  • There's an open issue for the PR that you are making. If you'd like to propose a new feature or change, please open an issue to discuss the change or find an existing issue.

Summary of the changes (Less than 80 chars)

Description

When a result value is null, and the return type is a nullable value type, Convert.ChangeType throws instead of returning the null value, so in case off null this now uses null directly.

Fixes #30366

@Regenhardt Regenhardt requested a review from a team as a code owner December 19, 2023 17:21
@ghost ghost added the community-contribution Indicates that the PR has been added by a community member label Dec 19, 2023
@ghost
Copy link

ghost commented Dec 19, 2023

Thanks for your PR, @Regenhardt. Someone from the team will get assigned to your PR shortly and we'll get it reviewed.

@dotnet-issue-labeler dotnet-issue-labeler bot added the area-blazor Includes: Blazor, Razor Components label Dec 19, 2023
@Regenhardt Regenhardt force-pushed the feature/null-value-type-from-js-runtime branch from a9c0a2a to 270742c Compare December 19, 2023 17:26
@Regenhardt
Copy link
Contributor Author

Not entirely sure how to react if the value is null but T is not nullable so I figured keep the existing reaction of Convert.ChangeType.

@Regenhardt Regenhardt force-pushed the feature/null-value-type-from-js-runtime branch 2 times, most recently from 7d2f9e7 to 3ec4e8b Compare December 19, 2023 17:49
@ghost ghost added the pending-ci-rerun When assigned to a PR indicates that the CI checks should be rerun label Dec 27, 2023
When a result value is null, and the return type is a nullable value type, Convert.ChangeType throws instead of returning the null value.

dotnet#30366
@Regenhardt Regenhardt force-pushed the feature/null-value-type-from-js-runtime branch from 3ec4e8b to 8ccaf89 Compare December 29, 2023 09:35
@Regenhardt
Copy link
Contributor Author

Or I could also rebase onto master and force push :-)

@Regenhardt
Copy link
Contributor Author

Can someone explain this CI error to me? I don't understand what's wrong:

dotnet\sdk\9.0.100-alpha.1.23618.1\NuGet.targets(169,5): error : (NETCORE_ENGINEERING_TELEMETRY=Build) Cannot create a file when that file already exists.

@halter73
Copy link
Member

The CI error appears to be infra flakiness that has cleared up.

Not entirely sure how to react if the value is null but T is not nullable so I figured keep the existing reaction of Convert.ChangeType.

This seems reasonable to me. I'm guessing you still get an InvalidCastException which isn't great, but no worse than before as you said.

Can you add a regression test for this fix? It doesn't look like there's a ton of testing in this area, but I think you could put something in BasicTestApp and write an E2E test using Selenium along the lines of StartupErrorNotificationTest but in a new test class. Other people on the @dotnet/aspnet-blazor-eng might have better suggestions, but that's where I'd probably start.

@wtgodbe wtgodbe removed the pending-ci-rerun When assigned to a PR indicates that the CI checks should be rerun label Feb 13, 2024
@dotnet dotnet deleted a comment Feb 13, 2024
@dotnet-policy-service dotnet-policy-service bot added the area-infrastructure Includes: MSBuild projects/targets, build scripts, CI, Installers and shared framework label Feb 13, 2024
@wtgodbe wtgodbe removed the area-infrastructure Includes: MSBuild projects/targets, build scripts, CI, Installers and shared framework label Feb 13, 2024
Copy link
Contributor

Looks like this PR hasn't been active for some time and the codebase could have been changed in the meantime.
To make sure no conflicting changes have occurred, please rerun validation before merging. You can do this by leaving an /azp run comment here (requires commit rights), or by simply closing and reopening.

@dotnet-policy-service dotnet-policy-service bot added the pending-ci-rerun When assigned to a PR indicates that the CI checks should be rerun label Feb 20, 2024
@mkArtakMSFT
Copy link
Member

Can you add a regression test for this fix? It doesn't look like there's a ton of testing in this area, but I think you could put something in BasicTestApp and write an E2E test using Selenium along the lines of StartupErrorNotificationTest but in a new test class. Other people on the @dotnet/aspnet-blazor-eng might have better suggestions, but that's where I'd probably start.

@Regenhardt do you plan to address the feedback here? We try to maintain high quality bar and improve it in areas where it lacks. Without additional tests we won't be able to proceed with this change.

@mkArtakMSFT mkArtakMSFT added the pr: pending author input For automation. Specifically separate from Needs: Author Feedback label Feb 22, 2024
@Regenhardt
Copy link
Contributor Author

Yes I'm definitely planning on putting this under test, I just need some time for I'm currently writing my bachelor's thesis so that has priority.

Copy link
Contributor

Hi @Regenhardt.
It seems you haven't touched this PR for the last two weeks. To avoid accumulating old PRs, we're marking it as stale. As a result, it will be closed if no further activity occurs within 4 days of this comment. You can learn more about our Issue Management Policies here.

@dotnet-policy-service dotnet-policy-service bot added the stale Indicates a stale issue. These issues will be closed automatically soon. label Mar 3, 2024
@Regenhardt
Copy link
Contributor Author

v2 now available at #60850, including tests.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area-blazor Includes: Blazor, Razor Components community-contribution Indicates that the PR has been added by a community member pending-ci-rerun When assigned to a PR indicates that the CI checks should be rerun pr: pending author input For automation. Specifically separate from Needs: Author Feedback stale Indicates a stale issue. These issues will be closed automatically soon.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

jsRuntime.InvokeAsync can't return null as Nullable<Guid>
4 participants