Skip to content
This repository was archived by the owner on Jul 12, 2024. It is now read-only.

Setup a testing infrastructure #7

Merged
merged 2 commits into from
Mar 7, 2024
Merged

Setup a testing infrastructure #7

merged 2 commits into from
Mar 7, 2024

Conversation

tanishiking
Copy link
Owner

Requires NodeJS >= 22 (for enough support of WasmGC).

With nvm, you can install the nightly version of Node with the following command. (but Node 22 should become a "current" version in April or May 2024).

$ NVM_NODEJS_ORG_MIRROR=https://nodejs.org/download/nightly nvm install v22
  • tests/test will
    • Run testSuite/run to compile the Scala code under test-suite to WebAssembly
    • Run the WebAssembly binary using NodeJS
  • Each Scala program in test-suite should have a function that has no arguments and return a Boolean value. The test passes if the function returns true.
  • When you add a test,
    • Add a file under test-suite
    • Add a test case to cli/src/main/scala/TestSuites.scala (methodName should be a exported function name).

Copy link
Collaborator

@sjrd sjrd left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yee, unit tests! Looks great.

wasmModule.toFuture.map { module =>
val testFunction =
module.instance.exports
.asInstanceOf[js.Dynamic]
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This asInstanceOf is not necessary. exports is already a js.Dynamic.

def compileIRFiles(
irFiles: Seq[IRFile],
moduleInitializers: List[ModuleInitializer],
// outputDir: String,
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Meant for removal?

Requires NodeJS >= 22 (for enough support of WasmGC).

With nvm, you can install the nightly version of Node with the following
command. (but Node 22 should become a "current" version in April or May 2024).

```sh
$ NVM_NODEJS_ORG_MIRROR=https://nodejs.org/download/nightly nvm install v22
```

- `tests/test` will
  - Run `testSuite/run` to compile the Scala code under `test-suite` to WebAssembly
  - Run the WebAssembly binary using NodeJS
- Each Scala program in `test-suite` should have a function that has no arguments and return a Boolean value. The test passes if the function returns `true`.
- When you add a test,
  - Add a file under `test-suite`
  - Add a test case to `cli/src/main/scala/TestSuites.scala` (`methodName` should be a exported function name).
@tanishiking tanishiking merged commit ec03bdc into main Mar 7, 2024
@tanishiking tanishiking deleted the testsuite branch March 7, 2024 05:18
@tanishiking tanishiking mentioned this pull request Mar 7, 2024
5 tasks
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants