| OLD | NEW |
| (Empty) | |
| 1 <!DOCTYPE html> |
| 2 <script src="../resources/testharness.js"></script> |
| 3 <script src="../resources/testharnessreport.js"></script> |
| 4 <script src="../resources/mojo-helpers.js"></script> |
| 5 <script src="resources/mock-shapedetection.js"></script> |
| 6 <body> |
| 7 <img id='img' src='../media/content/greenbox.png'/> |
| 8 </body> |
| 9 <script> |
| 10 |
| 11 var createTestForImageElement = function(detectorName, detectionResultTest) { |
| 12 async_test(function(t) { |
| 13 var img = document.getElementById("img"); |
| 14 |
| 15 var theMock = null; |
| 16 mockShapeDetectionReady |
| 17 .then(mock => { |
| 18 theMock = mock; |
| 19 var detector = eval("new " + detectorName + "();"); |
| 20 return detector; |
| 21 }) |
| 22 .catch(error => { |
| 23 assert_unreached("Error creating MockShapeDetection: " + error); |
| 24 }) |
| 25 .then(detector => { |
| 26 return detector.detect(img); |
| 27 }) |
| 28 .then(detectionResult => { |
| 29 detectionResultTest(detectionResult, theMock); |
| 30 t.done(); |
| 31 }) |
| 32 .catch(error => { |
| 33 assert_unreached("Error during detect(img): " + error); |
| 34 }); |
| 35 |
| 36 }, 'Detector detect(HTMLImageElement)'); |
| 37 }; |
| 38 |
| 39 function FaceDetectorDetectionResultTest(detectionResult, mock) { |
| 40 const imageReceivedByMock = mock.getFrameData(); |
| 41 assert_equals(imageReceivedByMock.byteLength, 2500, "Image length"); |
| 42 const GREEN_PIXEL = 0xFF00FF00; |
| 43 assert_equals(imageReceivedByMock[0], GREEN_PIXEL, "Pixel color"); |
| 44 assert_equals(detectionResult.length, 3, "Number of faces"); |
| 45 } |
| 46 |
| 47 function BarcodeDetectorDetectionResultTest(detectionResult, mock) { |
| 48 assert_equals(detectionResult.length, 2, "Number of barcodes"); |
| 49 assert_equals(detectionResult[0].rawValue, "cats", "barcode 1"); |
| 50 assert_equals(detectionResult[1].rawValue, "dogs", "barcode 2"); |
| 51 } |
| 52 |
| 53 // These tests verify that a Detector's detect() works on an HTMLImageElement. |
| 54 // Use the mock mojo server implemented in mock-shapedetection.js. |
| 55 generate_tests(createTestForImageElement, [ |
| 56 [ "Face", "FaceDetector", FaceDetectorDetectionResultTest ], |
| 57 [ "Barcode", "BarcodeDetector", BarcodeDetectorDetectionResultTest ] |
| 58 ]); |
| 59 |
| 60 </script> |
| OLD | NEW |