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

Best way to formulate type tests? #17

Closed
dgr opened this issue Dec 7, 2024 · 3 comments
Closed

Best way to formulate type tests? #17

dgr opened this issue Dec 7, 2024 · 3 comments

Comments

@dgr
Copy link
Contributor

dgr commented Dec 7, 2024

I was just looking at adding some corner case tests to plus.cljc and noticed that there are some tests for the resulting type of various addition operations. These tests are in a reader conditional for the :default case. For instance: (is (instance? clojure.lang.BigInt (+ 0 1N))). Is the expectation that all Clojure implementations default to having the same class structure as does Clojure JVM? Or would these tests be better written to use predicates? I don't have access to Clojure CLR to know what it returns for these tests, and I don't know how Jank is handling this, either.

For instance, would it be better to use

(defn big-int? [n]
  (and (integer? n)
       (not (int? n))))

(is (big-int? (+ 0 1N)))

instead of the explicit instance? test for clojure.lang.BitInt?

@jeaye
Copy link
Member

jeaye commented Dec 7, 2024

I share the same concern with you, but I've been lenient so far, to get the Clojure JVM tests written first. To be clear, I don't expect any dialect to share the same class names. As far as I know, none of them do currently.

I think, rather than being so indirect about it, what we may want to do is to have a dedicated ns, maybe called clojure.core-test.portability or something, which exposes these functions and then each dialect can have different implementations of them. For example:

(defn big-int? [n]
  #?(:clj (instance? clojure.lang.BigInt n)
     :cljs (instance? js/BigInt n)
     :default (throw (ex-info "unimplemented: big-int?" {:n n})))))

If you'd like to get the ball rolling with this, please do!

@dgr
Copy link
Contributor Author

dgr commented Dec 7, 2024

OK, I'll try to think this through and perhaps create that portability namespace.

@dgr
Copy link
Contributor Author

dgr commented Jan 29, 2025

This is done. Closing.

@dgr dgr closed this as completed Jan 29, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants