Best JavaScript code snippet using wpt
webxr_test_asserts.js
Source: webxr_test_asserts.js
1// Utility assert functions.2// Relies on resources/testharness.js to be included before this file.3// Relies on webxr_test_constants.js to be included before this file.4// |p1|, |p2| - objects with x, y, z, w components that are floating point numbers5// |epsilon| - float specifying precision6// |prefix| - string used as a prefix for logging7let assert_point_approx_equals = function(p1, p2, epsilon = FLOAT_EPSILON, prefix = "") {8 if (p1 == null && p2 == null) {9 return;10 }11 assert_not_equals(p1, null, prefix + "p1 must be non-null");12 assert_not_equals(p2, null, prefix + "p2 must be non-null");13 let mismatched_component = null;14 for (const v of ['x', 'y', 'z', 'w']) {15 if (Math.abs(p1[v] - p2[v]) > epsilon) {16 mismatched_component = v;17 break;18 }19 }20 if (mismatched_component !== null) {21 let error_message = prefix + ' Point comparison failed.\n';22 error_message += ` p1: {x: ${p1.x}, y: ${p1.y}, z: ${p1.z}, w: ${p1.w}}\n`;23 error_message += ` p2: {x: ${p2.x}, y: ${p2.y}, z: ${p2.z}, w: ${p2.w}}\n`;24 error_message += ` Difference in component ${mismatched_component} exceeded the given epsilon.\n`;25 assert_approx_equals(p2[mismatched_component], p1[mismatched_component], epsilon, error_message);26 }27};28// |m1|, |m2| - arrays of floating point numbers29// |epsilon| - float specifying precision30// |prefix| - string used as a prefix for logging31let assert_matrix_approx_equals = function(m1, m2, epsilon = FLOAT_EPSILON, prefix = "") {32 if (m1 == null && m2 == null) {33 return;34 }35 assert_not_equals(m1, null, prefix + "m1 must be non-null");36 assert_not_equals(m2, null, prefix + "m2 must be non-null");37 assert_equals(m1.length, 16, prefix + "m1 must have length of 16");38 assert_equals(m2.length, 16, prefix + "m2 must have length of 16");39 let mismatched_element = -1;40 for (let i = 0; i < 16; ++i) {41 if (Math.abs(m1[i] - m2[i]) > epsilon) {42 mismatched_element = i;43 break;44 }45 }46 if (mismatched_element > -1) {47 let error_message = prefix + 'Matrix comparison failed.\n';48 error_message += ' Difference in element ' + mismatched_element +49 ' exceeded the given epsilon.\n';50 error_message += ' Matrix 1: [' + m1.join(',') + ']\n';51 error_message += ' Matrix 2: [' + m2.join(',') + ']\n';52 assert_approx_equals(53 m1[mismatched_element], m2[mismatched_element], epsilon,54 error_message);55 }56}57// |m1|, |m2| - arrays of floating point numbers58// |epsilon| - float specifying precision59// |prefix| - string used as a prefix for logging60let assert_matrix_significantly_not_equals = function(m1, m2, epsilon = FLOAT_EPSILON, prefix = "") {61 if (m1 == null && m2 == null) {62 return;63 }64 assert_not_equals(m1, null, prefix + "m1 must be non-null");65 assert_not_equals(m2, null, prefix + "m2 must be non-null");66 assert_equals(m1.length, 16, prefix + "m1 must have length of 16");67 assert_equals(m2.length, 16, prefix + "m2 must have length of 16");68 let mismatch = false;69 for (let i = 0; i < 16; ++i) {70 if (Math.abs(m1[i] - m2[i]) > epsilon) {71 mismatch = true;72 break;73 }74 }75 if (!mismatch) {76 let m1_str = '[';77 let m2_str = '[';78 for (let i = 0; i < 16; ++i) {79 m1_str += m1[i] + (i < 15 ? ', ' : '');80 m2_str += m2[i] + (i < 15 ? ', ' : '');81 }82 m1_str += ']';83 m2_str += ']';84 let error_message = prefix + 'Matrix comparison failed.\n';85 error_message +=86 ' No element exceeded the given epsilon ' + epsilon + '.\n';87 error_message += ' Matrix A: ' + m1_str + '\n';88 error_message += ' Matrix B: ' + m2_str + '\n';89 assert_unreached(error_message);90 }91}92// |r1|, |r2| - XRRay objects93// |epsilon| - float specifying precision94// |prefix| - string used as a prefix for logging95let assert_ray_approx_equals = function(r1, r2, epsilon = FLOAT_EPSILON, prefix = "") {96 assert_point_approx_equals(r1.origin, r2.origin, epsilon, prefix + "origin:");97 assert_point_approx_equals(r1.direction, r2.direction, epsilon, prefix + "direction:");98 assert_matrix_approx_equals(r1.matrix, r2.matrix, epsilon, prefix + "matrix:");...
Using AI Code Generation
1var assert_matrix_significantly_not_equals = require('./wptassert.js').assert_matrix_significantly_not_equals;2var a = [[1, 2], [3, 4]];3var b = [[1, 2], [3, 4]];4var c = [[1, 2], [3, 5]];5assert_matrix_significantly_not_equals(a, b, "a and b are equal");6assert_matrix_significantly_not_equals(a, c, "a and c are not equal");7+assert_matrix_significantly_not_equals = function(actual, expected, message) {8+ var actual_rows = actual.length;9+ var actual_cols = actual[0].length;10+ var expected_rows = expected.length;11+ var expected_cols = expected[0].length;12+ if(actual_rows != expected_rows || actual_cols != expected_cols) {13+ assert_equals(actual, expected, message);14+ }15+ else {16+ var flag = 0;17+ for(var i = 0; i < actual_rows; i++) {18+ for(var j = 0; j < actual_cols; j++) {19+ if(actual[i][j] != expected[i][j]) {20+ flag = 1;21+ break;22+ }23+ }24+ }25+ if(flag == 0) {26+ assert_true(false, message);27+ }28+ else {29+ assert_true(true, message);30+ }31+ }32+}33Attachment #8835140 - Flags: review?(jgraham) → review+
Using AI Code Generation
1var assert = new Assert();2assert.assert_matrix_significantly_not_equals([[0,0,0],[0,0,0],[0,0,0]], [[0,0,0],[0,0,0],[0,0,0]], "Matrix is not significantly not equal");3assert.assert_matrix_significantly_not_equals([[0,0,0],[0,0,0],[0,0,0]], [[0,0,0],[0,0,0],[0,0,0]], "Matrix is not significantly not equal", 0.001);4assert.assert_matrix_significantly_not_equals([[0,0,0],[0,0,0],[0,0,0]], [[0,0,0],[0,0,0],[0,0,0]], "Matrix is not significantly not equal", 0.001, 0.001);5assert.assert_matrix_significantly_not_equals([[0,0,0],[0,0,0],[0,0,0]], [[0,0,0],[0,0,0],[0,0,0]], "Matrix is not significantly not equal", 0.001, 0.001, "Matrix is not significantly not equal");6function Assert() {7 this.assert_matrix_significantly_not_equals = function(actual, expected, message, tolerance, significant_digits, description) {8 var result = assert_matrix_significantly_not_equals(actual, expected, message, tolerance, significant_digits);9 if (result === undefined) {10 result = { message: description };11 }12 test(result);13 };14}15function assert_matrix_significantly_not_equals(actual, expected, message, tolerance, significant_digits) {16 var actual_type = Object.prototype.toString.call(actual);17 var expected_type = Object.prototype.toString.call(expected);18 if (actual_type !== expected_type) {19 return { message: message, expected: expected_type, actual: actual_type };20 }21 if (actual_type !== "[object Array]") {22 return { message: message, expected: "Array", actual: actual_type };23 }24 if (actual.length !== expected.length) {25 return { message: message, expected: "Array length: " + expected.length, actual: "Array length: " + actual.length };26 }27 for (var i = 0; i < actual.length
Using AI Code Generation
1var assert_matrix_significantly_not_equals = require("wpt").assert_matrix_significantly_not_equals;2var matrix1 = [1,2,3,4,5,6];3var matrix2 = [1,2,3,4,5,6];4var matrix3 = [1,2,3,4,5,7];5assert_matrix_significantly_not_equals(matrix1, matrix2, "matrix1 and matrix2 are equal");6assert_matrix_significantly_not_equals(matrix1, matrix3, "matrix1 and matrix3 are not equal");7assert_matrix_significantly_not_equals()8assert_matrix_significantly_not_equals(matrix1, matrix2, message)9var assert_matrix_significantly_not_equals = require("wpt").assert_matrix_significantly_not_equals;10var matrix1 = [1,2,3,4,5,6];11var matrix2 = [1,2,3,4,5,6];12var matrix3 = [1,2,3,4,5,7];13assert_matrix_significantly_not_equals(matrix1, matrix2, "matrix1 and matrix2 are equal");14assert_matrix_significantly_not_equals(matrix1, matrix3, "matrix1 and matrix3 are not equal");15assert_matrix_equals()16assert_matrix_not_equals()17assert_matrix_significantly_equals()18assert_matrix_significantly_not_equals()19assert_matrix_significantly_similar()20assert_matrix_similar()21assert_matrix_similar()
Using AI Code Generation
1var assert_matrix_significantly_not_equals = function (a, b, msg) {2 var equal = true;3 for (var i = 0; i < a.length; i++) {4 for (var j = 0; j < a[i].length; j++) {5 if (a[i][j] != b[i][j]) {6 equal = false;7 break;8 }9 }10 }11 if (equal) {12 testFailed(msg);13 } else {14 testPassed(msg);15 }16};17var a = [[1, 2, 3], [4, 5, 6], [7, 8, 9]];18var b = [[1, 2, 3], [4, 5, 6], [7, 8, 9]];19var c = [[1, 2, 3], [4, 5, 6], [7, 8, 10]];20var d = [[1, 2, 3], [4, 5, 6], [7, 8]];21var e = [[1, 2, 3], [4, 5, 6], [7, 8, 9, 10]];22assert_matrix_significantly_not_equals(a, b, 'a == b');23assert_matrix_significantly_not_equals(a, c, 'a != c');24assert_matrix_significantly_not_equals(a, d, 'a != d');25assert_matrix_significantly_not_equals(a, e, 'a != e');26assert_matrix_significantly_not_equals(a, b, 'a == b') failed27assert_matrix_significantly_not_equals(a, c, 'a != c') passed28assert_matrix_significantly_not_equals(a, d, 'a != d') passed29assert_matrix_significantly_not_equals(a, e, 'a != e') passed30var a = [[1, 2, 3], [4, 5, 6], [7, 8, 9]];31var b = [[1, 2, 3], [4, 5, 6], [7, 8, 9]];32var c = [[1, 2, 3], [4, 5, 6], [7, 8, 10]];
Using AI Code Generation
1import { assert_matrix_significantly_not_equals } from '../wpt-test-harness.js';2const expected = [[1, 2], [3, 4]];3const actual = [[1, 2], [3, 4]];4const threshold = 0.2;5assert_matrix_significantly_not_equals(expected, actual, threshold);6export function assert_matrix_significantly_not_equals(expected, actual, threshold) {7}8export function assert_matrix_significantly_not_equals(expected, actual, threshold) {9}10import { assert_matrix_significantly_not_equals } from '../wpt-test-harness.js';11const expected = [[1, 2], [3, 4]];12const actual = [[1, 2], [3, 4]];13const threshold = 0.2;14assert_matrix_significantly_not_equals(expected, actual, threshold);15export function assert_matrix_significantly_not_equals(expected, actual, threshold) {16}
Using AI Code Generation
1import {assert_matrix_significantly_not_equals} from '../assert.js';2import {Matrix} from '../matrix.js';3import {MatrixTest} from '../matrix_test.js';4const test = new MatrixTest();5const A = new Matrix([[1, 2, 3], [4, 5, 6], [7, 8, 9]]);6const B = new Matrix([[1, 2, 3], [4, 5, 6], [7, 8, 9]]);7const C = new Matrix([[1, 2, 3], [4, 5, 6], [7, 8, 10]]);8const D = new Matrix([[1, 2, 3], [4, 5, 6], [7, 8, 9], [10, 11, 12]]);9test.test('test assert_matrix_significantly_not_equals', () => {10 assert_matrix_significantly_not_equals(A, B);11 assert_matrix_significantly_not_equals(A, C);12 assert_matrix_significantly_not_equals(A, D);13});
Using AI Code Generation
1var wpt = require('webpagetest');2var assert = require('assert');3var api = new wpt('www.webpagetest.org', 'A.1234567890123456789012345678901234567890');4var matrix1 = [[1,2,3],[4,5,6],[7,8,9]];5var matrix2 = [[1,2,3],[4,5,6],[7,8,9]];6api.assert_matrix_significantly_not_equals(matrix1, matrix2, 0.05, 'matrix1 and matrix2 are significantly not equal');7matrix1 = [[1,2,3],[4,5,6],[7,8,9]];8matrix2 = [[1,2,3],[4,5,6],[7,8,9]];9api.assert_matrix_significantly_not_equals(matrix1, matrix2, 0.01, 'matrix1 and matrix2 are significantly not equal');10matrix1 = [[1,2,3],[4,5,6],[7,8,9]];11matrix2 = [[1,2,3],[4,5,6],[7,8,9]];12api.assert_matrix_significantly_not_equals(matrix1, matrix2, 0.001, 'matrix1 and matrix2 are significantly not equal');13matrix1 = [[1,2,3],[4,5,6],[7,8,9]];14matrix2 = [[1,2,3],[4,5,6],[7,8,9]];15api.assert_matrix_significantly_not_equals(matrix1, matrix2, 0.0001, 'matrix1 and matrix2 are significantly not equal');16matrix1 = [[1,2,3],[4,5,6],[7,8,9]];17matrix2 = [[1,2,3],[4,5,6],[7,8,9]];18api.assert_matrix_significantly_not_equals(matrix1, matrix2, 0.00001, 'matrix1 and matrix2 are significantly not equal');19matrix1 = [[1,2,3],[4,5,6],[7,8,9]];20matrix2 = [[1,2,3],[4,5,6],[7,8,9]];21api.assert_matrix_significantly_not_equals(matrix1, matrix2, 0.000001
Check out the latest blogs from LambdaTest on this topic:
Testing is a critical step in any web application development process. However, it can be an overwhelming task if you don’t have the right tools and expertise. A large percentage of websites still launch with errors that frustrate users and negatively affect the overall success of the site. When a website faces failure after launch, it costs time and money to fix.
We launched LT Browser in 2020, and we were overwhelmed by the response as it was awarded as the #5 product of the day on the ProductHunt platform. Today, after 74,585 downloads and 7,000 total test runs with an average of 100 test runs each day, the LT Browser has continued to help developers build responsive web designs in a jiffy.
Smartphones have changed the way humans interact with technology. Be it travel, fitness, lifestyle, video games, or even services, it’s all just a few touches away (quite literally so). We only need to look at the growing throngs of smartphone or tablet users vs. desktop users to grasp this reality.
As part of one of my consulting efforts, I worked with a mid-sized company that was looking to move toward a more agile manner of developing software. As with any shift in work style, there is some bewilderment and, for some, considerable anxiety. People are being challenged to leave their comfort zones and embrace a continuously changing, dynamic working environment. And, dare I say it, testing may be the most ‘disturbed’ of the software roles in agile development.
Learn to execute automation testing from scratch with LambdaTest Learning Hub. Right from setting up the prerequisites to run your first automation test, to following best practices and diving deeper into advanced test scenarios. LambdaTest Learning Hubs compile a list of step-by-step guides to help you be proficient with different test automation frameworks i.e. Selenium, Cypress, TestNG etc.
You could also refer to video tutorials over LambdaTest YouTube channel to get step by step demonstration from industry experts.
Get 100 minutes of automation test minutes FREE!!