René's URL Explorer Experiment


Title: DefaultConverter has many broken cases · Issue #450 · scijava/scijava-common · GitHub

Open Graph Title: DefaultConverter has many broken cases · Issue #450 · scijava/scijava-common

X Title: DefaultConverter has many broken cases · Issue #450 · scijava/scijava-common

Description: The DefaultConverter was not being tested directly. With 4e40e04, now it is. But there are many cases that do not work, marked with commented out tests. (Also many missing tests, but at least it's a start!) This issue exists to document ...

Open Graph Description: The DefaultConverter was not being tested directly. With 4e40e04, now it is. But there are many cases that do not work, marked with commented out tests. (Also many missing tests, but at least it's ...

X Description: The DefaultConverter was not being tested directly. With 4e40e04, now it is. But there are many cases that do not work, marked with commented out tests. (Also many missing tests, but at least it...

Opengraph URL: https://github.com/scijava/scijava-common/issues/450

X: @github

direct link

Domain: github.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"DiscussionForumPosting","headline":"DefaultConverter has many broken cases","articleBody":"The `DefaultConverter` was not being tested directly. With 4e40e04189cafcfad4c66357cbad17727dbf6325, now it is. But there are many cases that do not work, marked with commented out tests. (Also many missing tests, but at least it's a start!)\r\n\r\nThis issue exists to document some of the known problems, and thoughts on how best to resolve them.\r\n\r\nJust to give an inkling of the problems highlighted by this issue:\r\n```diff\r\n--- a/src/main/java/org/scijava/convert/DefaultConverter.java\r\n+++ b/src/main/java/org/scijava/convert/DefaultConverter.java\r\n@@ -73,6 +73,7 @@ public class DefaultConverter extends AbstractConverter\u003cObject, Object\u003e {\r\n \r\n        @Override\r\n        public Object convert(final Object src, final Type dest) {\r\n+               if (!canConvert(src, dest)) return null;\r\n \r\n                // Handle array types, including generic array types.\r\n                final Type componentType = Types.component(dest);\r\n@@ -92,6 +93,8 @@ public class DefaultConverter extends AbstractConverter\u003cObject, Object\u003e {\r\n \r\n        @Override\r\n        public \u003cT\u003e T convert(final Object src, final Class\u003cT\u003e dest) {\r\n+               if (!canConvert(src, dest)) return null;\r\n+\r\n                // ensure type is well-behaved, rather than a primitive type\r\n                final Class\u003cT\u003e saneDest = Types.box(dest);\r\n```\r\n:point_up: This patch breaks three tests. :open_mouth: \r\n\r\nSo let's consider the following questions:\r\n\r\nWhat would you expect to happen in the following circumstances? You ask SciJava Common to convert some data you have, to a particular type:\r\n\r\n1. `\"{{0, 1}, {2, 3}}\"` \u0026rarr; `double[][]`. Do you expect: A) `[[0d, 1d], [2d, 3d]]`? B) `null`?\r\n2. `\"{{0, 1}, {curtis, 3}}\"` \u0026rarr; `Double[][]`. Do you expect: A) `[[0d, 1d], [null, 3d]]`? B) `null`?\r\n3. `\"{{0, 1}, {curtis, 3}}\"` \u0026rarr; `double[][]`. Do you expect: A) `[[0d, 1d], [NaN, 3d]]`? B) `null`?\r\n4. `\"5\"` \u0026rarr; `double[]`. Do you expect: A) `[5d]`? B) `null`?\r\n5. `\"5\"` \u0026rarr; `double[][]`. Do you expect: A) `[[5d]]`? B) `null`?\r\n6. `\"curtis\"` \u0026rarr; `double[]`. Do you expect: A) `[NaN]`? B) `null`?\r\n7. `\"curtis\"` \u0026rarr; `Double[]`. Do you expect: A) `[null]`? B) `null`?\r\n8. `\"curtis\"` \u0026rarr; `Double[][]`. Do you expect: A) `[[null]]`? B) `null`?\r\n\r\nI think the following behavior is what we should shoot for:\r\n\r\n* When converting to an array/collection type, we first go to `Object[]`, `Object[][]`, etc., of correct dimensionality.\r\n* If dimensionality of this initially converted source is less than dimensionality of target, we wrap it in extra dimensions till it's the same.\r\n* If dimensionality of the initially converted source is *more* than the dimensionality of target, return `null`.\r\n* Otherwise: we allocate the destination object of the requested type, then convert source's leaf elements one by one to destination elements.\r\n\r\nE.g. for (8) above, we would go `\"curtis\"` \u0026rarr; `new Object[][] {{\"curtis\"}}` \u0026rarr; `new Double[][] {{ convert(\"curtis\", Double.class) }}`.\r\n\r\nThe remaining question is: what to do if any/all of those leaves are not convertible?\r\n\r\nAfter some discussion between myself, @hinerm, and @gselzer, we narrowed down the following potentially reasonable behavior:\r\n\r\n1. If *all* of the leaf elements are convertible to the destination element type, then the converted object is populated. Otherwise, the *whole collection* is inconvertible, and we return `null` for the whole collection, and `false` for `canConvert`. This would answer the above list with `null` for questions 2, 3, 6, 7, 8.\r\n\r\n2. If *any* of the leaf elements are convertible to the destination element type, then the converted object is populated, filling any inconvertible elements with `null`. This would answer the above list with `null` for questions 6, 7, 8—but 2 and 3 would work.\r\n\r\n3. *Regardless* of whether any leaf elements are convertible to the destination element type, the converted object is populated, filling nulls as in (2). This would answer the above list with \"As all the way down\" i.e. no `null` results.\r\n\r\nPart of this issue is deciding which of these three behaviors would be best. Then fixing the `DefaultConverter` to work that way—in both its `canConvert` and `convert` methods—and uncommenting the disabled tests (and adjusting them as needed) to validate it.","author":{"url":"https://github.com/ctrueden","@type":"Person","name":"ctrueden"},"datePublished":"2023-02-01T21:19:56.000Z","interactionStatistic":{"@type":"InteractionCounter","interactionType":"https://schema.org/CommentAction","userInteractionCount":2},"url":"https://github.com/450/scijava-common/issues/450"}

route-pattern/_view_fragments/issues/show/:user_id/:repository/:id/issue_layout(.:format)
route-controllervoltron_issues_fragments
route-actionissue_layout
fetch-noncev2:daeb18bd-71ef-e577-40d7-48331b1b741a
current-catalog-service-hash81bb79d38c15960b92d99bca9288a9108c7a47b18f2423d0f6438c5b7bcd2114
request-idA22C:6F200:C07D24:1088998:6969F47C
html-safe-noncea0480f90b1ccb2092d6d7f11bc45d4cdf6e528e289f7422b3c2de809e2ec986e
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiJBMjJDOjZGMjAwOkMwN0QyNDoxMDg4OTk4OjY5NjlGNDdDIiwidmlzaXRvcl9pZCI6IjI4MDUwODc0MTEwMTQwNzE0MjAiLCJyZWdpb25fZWRnZSI6ImlhZCIsInJlZ2lvbl9yZW5kZXIiOiJpYWQifQ==
visitor-hmac1fdf9b6e45d29905c9f6bd7698bd3bd933355a532ac472319598628bfd67127b
hovercard-subject-tagissue:1566849210
github-keyboard-shortcutsrepository,issues,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///voltron/issues_fragments/issue_layout
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/_view_fragments/issues/show/scijava/scijava-common/450/issue_layout
twitter:imagehttps://opengraph.githubassets.com/fde9bce670449722e2790445c455ac448d77c16595cbdfd4e1aa92f5160ebee2/scijava/scijava-common/issues/450
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/fde9bce670449722e2790445c455ac448d77c16595cbdfd4e1aa92f5160ebee2/scijava/scijava-common/issues/450
og:image:altThe DefaultConverter was not being tested directly. With 4e40e04, now it is. But there are many cases that do not work, marked with commented out tests. (Also many missing tests, but at least it's ...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
og:author:usernamectrueden
hostnamegithub.com
expected-hostnamegithub.com
None7b32f1c7c4549428ee399213e8345494fc55b5637195d3fc5f493657579235e8
turbo-cache-controlno-preview
go-importgithub.com/scijava/scijava-common git https://github.com/scijava/scijava-common.git
octolytics-dimension-user_id1262770
octolytics-dimension-user_loginscijava
octolytics-dimension-repository_id3594497
octolytics-dimension-repository_nwoscijava/scijava-common
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id3594497
octolytics-dimension-repository_network_root_nwoscijava/scijava-common
turbo-body-classeslogged-out env-production page-responsive
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
releasebdde15ad1b403e23b08bbd89b53fbe6bdf688cad
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://github.com/scijava/scijava-common/issues/450#start-of-content
https://github.com/
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fscijava%2Fscijava-common%2Fissues%2F450
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub SparkBuild and deploy intelligent appshttps://github.com/features/spark
GitHub ModelsManage and compare promptshttps://github.com/features/models
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
GitHub SponsorsFund open source developershttps://github.com/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/accelerator
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://github.com/login?return_to=https%3A%2F%2Fgithub.com%2Fscijava%2Fscijava-common%2Fissues%2F450
Sign up https://github.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fvoltron%2Fissues_fragments%2Fissue_layout&source=header-repo&source_repo=scijava%2Fscijava-common
Reloadhttps://github.com/scijava/scijava-common/issues/450
Reloadhttps://github.com/scijava/scijava-common/issues/450
Reloadhttps://github.com/scijava/scijava-common/issues/450
scijava https://github.com/scijava
scijava-commonhttps://github.com/scijava/scijava-common
Notifications https://github.com/login?return_to=%2Fscijava%2Fscijava-common
Fork 53 https://github.com/login?return_to=%2Fscijava%2Fscijava-common
Star 90 https://github.com/login?return_to=%2Fscijava%2Fscijava-common
Code https://github.com/scijava/scijava-common
Issues 169 https://github.com/scijava/scijava-common/issues
Pull requests 16 https://github.com/scijava/scijava-common/pulls
Actions https://github.com/scijava/scijava-common/actions
Projects 0 https://github.com/scijava/scijava-common/projects
Wiki https://github.com/scijava/scijava-common/wiki
Security Uh oh! There was an error while loading. Please reload this page. https://github.com/scijava/scijava-common/security
Please reload this pagehttps://github.com/scijava/scijava-common/issues/450
Insights https://github.com/scijava/scijava-common/pulse
Code https://github.com/scijava/scijava-common
Issues https://github.com/scijava/scijava-common/issues
Pull requests https://github.com/scijava/scijava-common/pulls
Actions https://github.com/scijava/scijava-common/actions
Projects https://github.com/scijava/scijava-common/projects
Wiki https://github.com/scijava/scijava-common/wiki
Security https://github.com/scijava/scijava-common/security
Insights https://github.com/scijava/scijava-common/pulse
New issuehttps://github.com/login?return_to=https://github.com/scijava/scijava-common/issues/450
New issuehttps://github.com/login?return_to=https://github.com/scijava/scijava-common/issues/450
DefaultConverter has many broken caseshttps://github.com/scijava/scijava-common/issues/450#top
https://github.com/ctrueden
https://github.com/ctrueden
ctruedenhttps://github.com/ctrueden
on Feb 1, 2023https://github.com/scijava/scijava-common/issues/450#issue-1566849210
4e40e04https://github.com/scijava/scijava-common/commit/4e40e04189cafcfad4c66357cbad17727dbf6325
@hinermhttps://github.com/hinerm
@gselzerhttps://github.com/gselzer
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.