-
Notifications
You must be signed in to change notification settings - Fork 10
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
Test ESR wasm support #125
Merged
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
// https://github.com/GoogleChromeLabs/wasm-feature-detect | ||
import * as features from "https://unpkg.com/[email protected]?module"; | ||
const { Driver } = wasm_bindgen; | ||
|
||
const mkNoteStyle = (inner, bibliography) => { | ||
|
@@ -13,7 +15,7 @@ const mkNoteStyle = (inner, bibliography) => { | |
${inner} | ||
</layout> | ||
</citation> | ||
${ bibliography != null ? bibliography : "" } | ||
${bibliography != null ? bibliography : ""} | ||
</style> | ||
`; | ||
} | ||
|
@@ -29,7 +31,7 @@ class Fetcher { | |
} | ||
} | ||
|
||
async function run() { | ||
async function test_citeproc_rs() { | ||
await wasm_bindgen('./pkg-nomod/_no_modules/citeproc_rs_wasm_bg.wasm'); | ||
|
||
const fetcher = new Fetcher(); | ||
|
@@ -40,14 +42,68 @@ async function run() { | |
}).unwrap(); | ||
|
||
console.log("--- Successfully loaded wasm driver. You can now use it. ---") | ||
driver.insertReference({id: "citekey", title: "Hello", language: 'fr-FR'}).unwrap(); | ||
driver.initClusters([{id: "one", cites: [{id: "citekey"}]}]).unwrap(); | ||
driver.setClusterOrder([ {id: "one"} ]).unwrap(); | ||
driver.insertReference({ id: "citekey", title: "Hello", language: 'fr-FR' }).unwrap(); | ||
driver.initClusters([{ id: "one", cites: [{ id: "citekey" }] }]).unwrap(); | ||
driver.setClusterOrder([{ id: "one" }]).unwrap(); | ||
await driver.fetchLocales(); | ||
let result = driver.builtCluster("one").unwrap(); | ||
console.log("Built a cite cluster:", result); | ||
} | ||
|
||
run() | ||
// this tests the current Firefox ESR's wasm support | ||
async function test_wasm_support() { | ||
let allChecks = await Promise.all( | ||
Object.keys(features).map(async name => { | ||
let feat = features[name]; | ||
let supported = await feat(); | ||
return { name, supported } | ||
}) | ||
); | ||
|
||
let resolved = {}; | ||
allChecks.forEach((check) => { | ||
let { name, supported } = check; | ||
resolved[name] = supported; | ||
}); | ||
|
||
// ESR 60.9 supports none of the newer features, but | ||
// you would expect to have to change a few of these | ||
// when newer ESRs are used in Zotero. | ||
let expected = { | ||
mutableGlobals: false, | ||
bigInt: false, | ||
bulkMemory: false, | ||
exceptions: false, | ||
memory64: false, | ||
multiValue: false, | ||
referenceTypes: false, | ||
saturatedFloatToInt: false, | ||
signExtensions: false, | ||
simd: false, | ||
tailCall: false, | ||
threads: false, | ||
}; | ||
|
||
let results = Object.keys(resolved).map(key => { | ||
return { | ||
key, | ||
expected: expected[key], | ||
resolved: resolved[key], | ||
}; | ||
}); | ||
|
||
let failed = results.filter(x => x.expected !== x.resolved); | ||
if (failed.length > 0) { | ||
throw new Error("wasm support mismatch: " + JSON.stringify(failed)) | ||
} | ||
|
||
} | ||
|
||
async function suite() { | ||
await test_citeproc_rs(); | ||
await test_wasm_support(); | ||
} | ||
|
||
suite() | ||
.then(() => document.write('<p id="success">success</p>')) | ||
.catch((e) => document.write('<p id="failure">' + e.message + '</p>')); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The key bit