Best JavaScript code snippet using wpt
register.viewModel.js
Source:register.viewModel.js
1/*2 ** viewModel - pojo model for capturing product details3 */4"use strict";5angular.module('productModule')6 .factory('productModel', ['appConstants', '$log',7 function (appConstants, $log) {8 //Below is hardcoded for demo purpose9 var _init = {10 id: "",11 filePath: [],12 productName: "",13 quantity: "",14 batchNumber: "",15 manufactureDate: "",16 quality: "",17 color: "",18 weight: "",19 description: "",20 dimension: "",21 modelNumber: ""22 };23 var _product = {};24 //Reset product obj25 var _reset = function () {26 try {27 this._product = angular.copy(_init);28 } catch (e) {29 $log.error(appConstants.FUNCTIONAL_ERR, e);30 }31 return this._product;32 };33 //Set product object34 var _setProduct = function (obj) {35 try {36 this._product = obj;37 } catch (e) {38 $log.error(appConstants.FUNCTIONAL_ERR, e);39 }40 };41 //Get product object42 var _getProduct = function () {43 try {44 return this._product ? this._product : angular.copy(_init);45 } catch (e) {46 $log.error(appConstants.FUNCTIONAL_ERR, e);47 }48 };49 //set list of uploaded file url 50 var _setFilePath = function (fileList) {51 this._product.filePath = fileList;52 };53 //set list of uploaded file url 54 var _setSelectedMaterials = function (list) {55 this.selectedMaterials = [];56 var self = this;57 angular.forEach(list, function (val, key) {58 self.selectedMaterials.push({59 id: val.id60 })61 });62 };63 var _getSelectedMaterials = function () {64 return this.selectedMaterials;65 };66 var _getParsedMaterialList = function (data) {67 var list = [];68 angular.forEach(data, function (val, key) {69 //limit to populate only 3 materials70 if (key > 2) {71 return;72 }73 list.push({74 id: val.id,75 label: CONVERTER.hexTostr(val.name)76 })77 });78 return list;79 };80 var _getParsedProduct = function (data) {81 return {82 productName: CONVERTER.hexTostr(data.name),83 quantity: CONVERTER.hexTostr(data.quantity ? '' : ''),84 batchNumber: CONVERTER.hexTostr(data.batchNumber ? '' : ''),85 modelNumber: CONVERTER.hexTostr(data.model),86 manufactureDate: PARSER.parseMilliSecToDate(data.manufacturingDate),87 quality: CONVERTER.hexTostr(data.quality),88 dimension: CONVERTER.hexTostr(data.colour_dimensions),89 weight: CONVERTER.hexTostr(data.weight),90 description: CONVERTER.hexTostr(data.description ? '' : ''),91 filePath: PARSER.parseHexToStrImage(data.img_vid_path)92 }93 };94 return {95 'getProduct': _getProduct,96 'setProduct': _setProduct,97 'setFilePath': _setFilePath,98 'setSelectedMaterials': _setSelectedMaterials,99 'getSelectedMaterials': _getSelectedMaterials,100 'getParsedMaterialList': _getParsedMaterialList,101 'getParsedProduct': _getParsedProduct,102 'resetProduct': _reset103 }104 }...
test.js
Source:test.js
...3const test = require('tape');4test("hexy", t => {5 6 /* hexToStr */7 t.equal(hexy.hexToStr("436176652053746f7279"), "Cave Story");8 t.equal(hexy.hexToStr("436176652053746F7279"), "Cave Story");9 t.equal(hexy.hexToStr("43 61 76 65 20 53 74 6f 72 79"), "Cave Story");10 t.equal(hexy.hexToStr("43 61 76 65 20 53 74 6F 72 79"), "Cave Story");11 t.equal(hexy.hexToStr("43 61 76 65 20 53 74 6F 72 7H"), false);12 t.equal(hexy.hexToStr("J436176652053746F727H"), false);13 t.notEqual(hexy.hexToStr("436176652053746f7279"), "cave story");14 t.notEqual(hexy.hexToStr("436176652053746F7279"), "cave story");15 t.notEqual(hexy.hexToStr("43 61 76 65 20 53 74 6f 72 79"), "cave story");16 t.notEqual(hexy.hexToStr("43 61 76 65 20 53 74 6F 72 79"), "cave story");17 t.notEqual(hexy.hexToStr("436176652053746F72793"), "cave story");18 t.notEqual(hexy.hexToStr("43 61 76 65 20 53 74 6F 72 79 3"), "cave story");19 /* strToHex */20 t.equal(hexy.strToHex("Cave Story"), "436176652053746f7279");21 t.equal(hexy.strToHex("Cave Story", { grouped: true }), "43 61 76 65 20 53 74 6f 72 79");22 t.equal(hexy.strToHex("Cave Story", { grouped: true, uppercase: true }), "43 61 76 65 20 53 74 6F 72 79");23 t.equal(hexy.strToHex("Cave Story", { uppercase: true }), "436176652053746F7279");24 25 t.notEqual(hexy.strToHex("cave story"), "436176652053746f7279");26 t.notEqual(hexy.strToHex("Cave Story"), "436176652053746F7279");27 t.notEqual(hexy.strToHex("Cave Story", { grouped: true }), "436176652053746f7279");28 t.notEqual(hexy.strToHex("Cave Story", { grouped: true, uppercase: true }), "43 61 76 65 20 53 74 6f 72 79");29 t.notEqual(hexy.strToHex("Cave Story", { uppercase: true }), "436176652053746f7279");30 /* isHex */31 t.ok(hexy.isHex("436176652053746f7279"));32 t.ok(hexy.isHex("436176652053746F7279"));...
hexToStr.spec.ts
Source:hexToStr.spec.ts
1import {hexToStr} from "../src/hexToStr";2describe('hex to string conversion', () => {3 test('should covert word', () => {4 expect(hexToStr('6a656c7465')).toMatch('jelte');5 });6 test('should convert symbols', () => {7 expect(hexToStr('3a2c2e2f3b275b5d2d3d3c3e3f3a227b7d5f2b2140402324255e262a2829607e'))8 .toMatch(':,./;\'[]-=<>?:"{}_+!@@#$%^&*()`~');9 });10 test('should convert sentences', () => {11 expect(hexToStr('4469742069732065656e207a696e206d657420776f6f7264656e2c206c65657374656b656e7320656e20646520676574616c6c656e20312c20322c203320656e20302e'))12 .toMatch('Dit is een zin met woorden, leestekens en de getallen 1, 2, 3 en 0.')13 });14 test('should convert freaky shit', () => {15 expect(hexToStr('6173646a673b6c6961736475673b73616f6569373432367030393034373536396f616975732e676b6c6a73632e616f7073386f3539323733343669387979672e6a6b6c616768642e676b6c6a643b7274706f3971333436232436502a5123242829545547414c534b4755405029232a2128252a28252840242a5e2840'))16 .toMatch('asdjg;liasdug;saoei7426p09047569oaius.gkljsc.aops8o5927346i8yyg.jklaghd.gkljd;rtpo9q346#$6P*Q#$()TUGALSKGU@P)#*!(%*(%(@$*^(@');17 });...
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!!