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:
In recent times, many web applications have been ported to mobile platforms, and mobile applications are also created to support businesses. However, Android and iOS are the major platforms because many people use smartphones compared to desktops for accessing web applications.
The sky’s the limit (and even beyond that) when you want to run test automation. Technology has developed so much that you can reduce time and stay more productive than you used to 10 years ago. You needn’t put up with the limitations brought to you by Selenium if that’s your go-to automation testing tool. Instead, you can pick from various test automation frameworks and tools to write effective test cases and run them successfully.
In today’s fast-paced world, the primary goal of every business is to release their application or websites to the end users as early as possible. As a result, businesses constantly search for ways to test, measure, and improve their products. With the increase in competition, faster time to market (TTM) has become vital for any business to survive in today’s market. However, one of the possible challenges many business teams face is the release cycle time, which usually gets extended for several reasons.
Software testing is fueling the IT sector forward by scaling up the test process and continuous product delivery. Currently, this profession is in huge demand, as it needs certified testers with expertise in automation testing. When it comes to outsourcing software testing jobs, whether it’s an IT company or an individual customer, they all look for accredited professionals. That’s why having an software testing certification has become the need of the hour for the folks interested in the test automation field. A well-known certificate issued by an authorized institute kind vouches that the certificate holder is skilled in a specific technology.
Sometimes, in our test code, we need to handle actions that apparently could not be done automatically. For example, some mouse actions such as context click, double click, drag and drop, mouse movements, and some special key down and key up actions. These specific actions could be crucial depending on the project context.
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!!