diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-04 12:41:41 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-04 12:41:41 +0000 |
commit | 10ee2acdd26a7f1298c6f6d6b7af9b469fe29b87 (patch) | |
tree | bdffd5d80c26cf4a7a518281a204be1ace85b4c1 /vendor/wasm-bindgen/tests/wasm/enums.js | |
parent | Releasing progress-linux version 1.70.0+dfsg1-9~progress7.99u1. (diff) | |
download | rustc-10ee2acdd26a7f1298c6f6d6b7af9b469fe29b87.tar.xz rustc-10ee2acdd26a7f1298c6f6d6b7af9b469fe29b87.zip |
Merging upstream version 1.70.0+dfsg2.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'vendor/wasm-bindgen/tests/wasm/enums.js')
-rw-r--r-- | vendor/wasm-bindgen/tests/wasm/enums.js | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/vendor/wasm-bindgen/tests/wasm/enums.js b/vendor/wasm-bindgen/tests/wasm/enums.js new file mode 100644 index 000000000..640597dac --- /dev/null +++ b/vendor/wasm-bindgen/tests/wasm/enums.js @@ -0,0 +1,40 @@ +const wasm = require('wasm-bindgen-test.js'); +const assert = require('assert'); + +exports.js_c_style_enum = () => { + assert.strictEqual(wasm.Color.Green, 0); + assert.strictEqual(wasm.Color.Yellow, 1); + assert.strictEqual(wasm.Color.Red, 2); + assert.strictEqual(wasm.Color[0], 'Green'); + assert.strictEqual(wasm.Color[1], 'Yellow'); + assert.strictEqual(wasm.Color[2], 'Red'); + assert.strictEqual(Object.keys(wasm.Color).length, 6); + + assert.strictEqual(wasm.enum_cycle(wasm.Color.Green), wasm.Color.Yellow); +}; + +exports.js_c_style_enum_with_custom_values = () => { + assert.strictEqual(wasm.ColorWithCustomValues.Green, 21); + assert.strictEqual(wasm.ColorWithCustomValues.Yellow, 34); + assert.strictEqual(wasm.ColorWithCustomValues.Red, 2); + assert.strictEqual(wasm.ColorWithCustomValues[21], 'Green'); + assert.strictEqual(wasm.ColorWithCustomValues[34], 'Yellow'); + assert.strictEqual(wasm.ColorWithCustomValues[2], 'Red'); + assert.strictEqual(Object.keys(wasm.ColorWithCustomValues).length, 6); + + assert.strictEqual(wasm.enum_with_custom_values_cycle(wasm.ColorWithCustomValues.Green), wasm.ColorWithCustomValues.Yellow); +}; + +exports.js_handle_optional_enums = x => wasm.handle_optional_enums(x); + +exports.js_expect_enum = (a, b) => { + assert.strictEqual(a, b); +}; + +exports.js_expect_enum_none = a => { + assert.strictEqual(a, undefined); +}; + +exports.js_renamed_enum = b => { + assert.strictEqual(wasm.JsRenamedEnum.B, b); +}; |