mirror of
https://github.com/servo/servo.git
synced 2025-06-29 19:43:39 +01:00
47 lines
1.5 KiB
JavaScript
47 lines
1.5 KiB
JavaScript
importScripts("/resources/testharness.js");
|
|
importScripts("resources/shapedetection-helpers.js");
|
|
|
|
'use strict';
|
|
|
|
// These tests verify that a Detector's detect() works on an
|
|
// ImageBitmap on workers.
|
|
const imageBitmapTests =
|
|
[
|
|
{
|
|
createDetector: () => { return new FaceDetector(); },
|
|
mockTestName: "FaceDetectionTest",
|
|
resultSize: 3, // Number of faces
|
|
detectorType: "Face"
|
|
},
|
|
{
|
|
createDetector: () => { return new BarcodeDetector(); },
|
|
mockTestName: "BarcodeDetectionTest",
|
|
resultSize: 2, // Number of barcodes
|
|
detectorType: "Barcode"
|
|
}
|
|
];
|
|
|
|
for (let imageBitmapTest of imageBitmapTests) {
|
|
// ImageBitmap is of transferable type and can be sent to and
|
|
// tested on worker.
|
|
detection_test(imageBitmapTest.mockTestName, async (t, detectionTest) => {
|
|
const img = createTestImage();
|
|
const theImageBitmap = await createImageBitmap(img);
|
|
const detector = imageBitmapTest.createDetector();
|
|
const detectionResult = await detector.detect(theImageBitmap);
|
|
assert_equals(detectionResult.length, imageBitmapTest.resultSize,
|
|
`Number of ${imageBitmapTest.detectorType}`);
|
|
}, `${imageBitmapTest.detectorType} Detector detect(ImageBitmap) on worker`);
|
|
}
|
|
|
|
function createTestImage() {
|
|
const image = new OffscreenCanvas(100, 50);
|
|
const imgctx = image.getContext('2d');
|
|
imgctx.fillStyle = "#F00";
|
|
imgctx.fillRect(0, 0, 2, 2);
|
|
imgctx.fillStyle = "#0F0";
|
|
imgctx.fillRect(0, 0, 1, 1);
|
|
return image;
|
|
}
|
|
|
|
done();
|