How to use mdfind method in Cypress

Best JavaScript code snippet using cypress

osx-mdfind.spec.js

Source:osx-mdfind.spec.js Github

copy

Full Screen

1const describe = require('tape')2const mkdirp = require('mkdirp')3const os = require('os')4const path = require('path')5const proxyquire = require('proxyquire')6const MDFind = require('../../adapters/osx-mdfind')7const MacFile = require('../../adapters/osx-mdfind/macfile')8const cwd = path.join(os.tmpdir(), 'zazu-file-finder', 'osx-mdfind')9const testPath = path.join(__dirname, '..', 'resources')10const env = {11 append: false,12 directories: {13 appPath: [testPath],14 filePath: [testPath],15 },16}17// Only test mdfind in osx18if (process.platform === 'darwin') {19 mkdirp.sync(cwd, console.error)20 describe('adapters/osx-mdfind: startCache()', (assert) => {21 console.log(`adapters/osx-mdfind: cwd => ${cwd}`)22 const adapter = new MDFind({ cwd }, env)23 adapter.startCache()24 .then(results => {25 assert.true(results, 'startCache() should return result is not null')26 assert.true(results.length > 1, 'startCache() should return more than 1 result')27 assert.end()28 })29 .catch(error => {30 console.error(error)31 assert.fail(error)32 })33 })34 describe('adapters/osx-mdfind: findApps()', (assert) => {35 const adapter = new MDFind({ cwd }, env)36 adapter.findApps('.')37 .then(apps => {38 assert.true(apps, 'findApps() should return result is not null')39 assert.true(apps.length > 1, 'findApps() should return more than 1 result')40 return adapter.findApps('apple')41 })42 .then(apps => {43 assert.true(apps && apps.length >= 1, 'findApps("apple") should be able to return result')44 assert.equal(apps[0].title, 'Text Apple', 'findApps("apple") should return "Text Apple" app')45 return adapter.findApps('orange')46 })47 .then(apps => {48 assert.true(apps && apps.length >= 1, 'findApps("orange") should be able to return the result')49 assert.equal(apps[0].title, 'Binary Orange', 'findApps("orange") should return "Binary Orange" app')50 assert.end()51 })52 .catch(error => {53 console.error(error)54 assert.fail(error)55 })56 })57 describe('adapters/osx-mdfind: findFiles()', (assert) => {58 const adapter = new MDFind({ cwd }, env)59 adapter.findFiles('test')60 .then(files => {61 assert.true(files, 'findFiles("test") should return result is not null')62 assert.true(files.length > 1, 'findFiles("test") should return more than 1 result')63 assert.true(files.find(file => file.title === 'test.md'), 'findFiles("test") should find "test.md" file')64 assert.true(files.find(file => file.title === 'demo test file.txt'), 'findFiles("test") should find "demo test file.txt" file')65 assert.false(files.find(file => file.title === 'readme.txt'), 'findFiles("test") should not find "readme.txt" file')66 assert.end()67 })68 .catch(error => {69 console.error(error)70 assert.fail(error)71 })72 })73 describe('adapters/osx-mdfind: MacFile', (assert) => {74 assert.equal(new MacFile('/a/b/c.app', 'd', '/app').iconPath, '/app/data/icons/d.png', 'should generate correct iconPath using given name and given cwd')75 assert.equal(new MacFile('/a/b/c.app', 'd').iconPath, 'data/icons/d.png', 'should generate correct iconPath using given name')76 assert.equal(new MacFile('/a/b/c.app').iconPath, 'data/icons/c.png', 'should generate correct iconPath if no name was given')77 assert.end()78 })79}80describe('adapters/osx-mdfind: MacFile: generateIcon() [with icon]', (assert) => {81 const MacFileWithIcon = proxyquire('../../adapters/osx-mdfind/macfile', {82 'fs': { existsSync: () => true },83 'app2png': { convert: () => {84 assert.fail('Should not call app2png if the icons is existed')85 assert.end()86 }},87 })88 const f = new MacFileWithIcon('/a/b/c.app')89 f.generateIcon()90 .then(() => {91 assert.pass('Should return immediately without calling app2png')92 assert.end()93 })94})95describe('adapters/osx-mdfind: MacFile: generateIcon() [without icon]', (assert) => {96 const MacFileWithoutIcon = proxyquire('../../adapters/osx-mdfind/macfile', {97 'fs': { existsSync: () => false },98 'app2png': { convert: () => {99 assert.pass('Should call app2png if no icon exists')100 assert.end()101 }},102 })103 const f = new MacFileWithoutIcon('/a/b/c.app')104 f.generateIcon()...

Full Screen

Full Screen

macos.js

Source:macos.js Github

copy

Full Screen

1var path = require('path');2module.exports = {3 chrome: {4 pathQuery: 'mdfind \'kMDItemDisplayName == "Google Chrome" && kMDItemKind == Application\'',5 plistPath: 'Contents/Info.plist',6 command: 'open',7 process: 'Google Chrome',8 versionKey: 'KSVersion',9 versionKey2: 'CFBundleShortVersionString',10 defaultLocation: '/Applications/Google Chrome.app',11 args: ['--args'],12 opensTab: true13 },14 canary: {15 pathQuery: 'mdfind \'kMDItemDisplayName == "Google Chrome Canary" && kMDItemKind == Application\'',16 plistPath: 'Contents/Info.plist',17 command: 'open',18 process: 'Google Chrome Canary',19 versionKey: 'KSVersion',20 versionKey2: 'CFBundleShortVersionString',21 defaultLocation: '/Applications/Google Chrome Canary.app',22 args: ['--args'],23 opensTab: true24 },25 chromium: {26 pathQuery: 'mdfind \'kMDItemDisplayName == "Chromium" && kMDItemKind == Application\'',27 plistPath: 'Contents/Info.plist',28 command: 'open',29 process: 'Chromium',30 versionKey: 'KSVersion',31 versionKey2: 'CFBundleShortVersionString',32 defaultLocation: '/Applications/Chromium.app',33 args: ['--args'],34 opensTab: true35 },36 firefox: {37 pathQuery: 'mdfind \'kMDItemDisplayName == "Firefox" && kMDItemKind == Application\'',38 plistPath: 'Contents/Info.plist',39 command: 'open',40 process: 'firefox',41 versionKey: 'CFBundleGetInfoString',42 defaultLocation: '/Applications/Firefox.app',43 args: ['--args'],44 opensTab: true45 },46 aurora: {47 pathQuery: 'mdfind \'kMDItemDisplayName == "FirefoxAurora" && kMDItemKind == Application\'',48 plistPath: 'Contents/Info.plist',49 command: 'open',50 process: 'firefox',51 versionKey: 'CFBundleGetInfoString',52 defaultLocation: '/Applications/FirefoxAurora.app',53 args: ['--args'],54 opensTab: true55 },56 opera: {57 pathQuery: 'mdfind \'kMDItemDisplayName == "Opera" && kMDItemKind == Application\'',58 plistPath: 'Contents/Info.plist',59 command: 'open',60 process: 'Opera',61 versionKey: 'CFBundleShortVersionString',62 defaultLocation: '/Applications/Opera.app',63 args: ['--args']64 },65 safari: {66 pathQuery: 'mdfind \'kMDItemDisplayName == "Safari" && kMDItemKind == Application\'',67 plistPath: 'Contents/version.plist',68 command: 'open',69 process: 'Safari',70 versionKey: 'CFBundleShortVersionString',71 defaultLocation: '/Applications/Safari.app',72 opensTab: true73 },74 electron: {75 pathQuery: 'which electron',76 process: 'electron',77 args: [path.join(__dirname, '..', '..', '..', 'resources', 'electron.js')],78 defaultLocation: [79 path.join(process.cwd(), 'node_modules', '.bin', 'electron'),80 '/usr/local/bin/electron'81 ],82 multi: true83 },84 phantom: {85 pathQuery: 'which phantomjs',86 process: 'phantomjs',87 args: [path.join(__dirname, '..', '..', '..', 'resources', 'phantom.js')],88 defaultLocation: [89 path.join(process.cwd(), 'node_modules', '.bin', 'phantomjs'),90 '/usr/local/bin/phantomjs'91 ],92 multi: true93 },94 nodeWebkit: {95 pathQuery: 'mdfind \'kMDItemDisplayName == "node-webkit" && kMDItemKind == Application\'',96 command: 'open',97 process: 'node-webkit',98 versionKey: 'CFBundleShortVersionString',99 defaultLocation: '/Applications/node-webkit.app',100 args: ['--args' ],101 getCommand: function(browser, url, args) {102 args.push(process.cwd());103 return browser.command + ' ' + args.join(' ') + ' --url="' + url + '"';104 },105 multi: true106 }...

Full Screen

Full Screen

util.js

Source:util.js Github

copy

Full Screen

...34 .catch(failed); // to make TS compiler happy35}36exports.parse = parse;37/** uses mdfind to find app using Ma app id like 'com.google.Chrome.canary' */38function mdfind(id) {39 var cmd = "mdfind 'kMDItemCFBundleIdentifier==\"" + id + "\"' | head -1";40 log_1.log('looking for bundle id %s using command: %s', id, cmd);41 var logFound = function (str) {42 log_1.log('found %s at %s', id, str);43 return str;44 };45 var failedToFind = function () {46 log_1.log('could not find %s', id);47 throw errors_1.notInstalledErr(id);48 };49 return execa_1.default50 .shell(cmd)51 .then(function (result) { return result.stdout; })52 .then(ramda_1.tap(logFound))53 .catch(failedToFind);54}55exports.mdfind = mdfind;56function formApplicationPath(executable) {57 var parts = executable.split('/');58 var name = parts[parts.length - 1];59 var appName = name + ".app";60 return path.join('/Applications', appName);61}62/** finds an application and its version */63function findApp(executable, appId, versionProperty) {64 log_1.log('looking for app %s id %s', executable, appId);65 var findVersion = function (foundPath) {66 return parse(foundPath, versionProperty).then(function (version) {67 return {68 path: path.join(foundPath, executable),69 version: version,70 };71 });72 };73 var tryMdFind = function () {74 return mdfind(appId).then(findVersion);75 };76 var tryFullApplicationFind = function () {77 var applicationPath = formApplicationPath(executable);78 log_1.log('looking for application %s', applicationPath);79 return findVersion(applicationPath);80 };81 return tryMdFind().catch(tryFullApplicationFind);82}...

Full Screen

Full Screen

controller.js

Source:controller.js Github

copy

Full Screen

1const Model = require("./model");2const Helpers = require("../../Helpers/utils");3const MDSubCategory = require("../SubCategories/model");4// Validate Data5const ValidateData = (strData) => {6 if (Helpers.ValidateData(strData.strName)) {7 return Helpers.objResponse(false, "Empty Field strName is required");8 }9 return Helpers.objResponse(true, "Fields Success");10};11module.exports = {12 // Create category13 async CreateCategories(req, res) {14 try {15 // Data web16 const { strName } = req.body;17 let objRes = {};18 // Validate data19 const objValidate = ValidateData(req.body);20 if (!objValidate.Success) {21 res.json(objValidate);22 return;23 }24 // Validate duplicate25 const objRespuesta = await Model.MDFindOne({ strName });26 if (objRespuesta == null) {27 // Create category28 Model.MDSave({ strName });29 objRes = Helpers.objResponse(true, "Categoria creada con éxito");30 } else {31 objRes = Helpers.objResponse(false, "Categoria duplicada");32 }33 res.json(objRes);34 } catch (Error) {35 console.log(Error);36 }37 },38 // Get Categories39 async GetCategories(req, res) {40 try {41 const objRes = await Model.MDFind();42 res.json(Helpers.objResponse(true, { Categories: objRes }));43 } catch (Error) {44 console.log(Error);45 }46 },47 // Get Categories Pagination48 async GetCategoriesPagination(req, res) {49 try {50 const objRes = await Model.MDFindPagination(req.body);51 res.json(Helpers.objResponse(true, { Categories: objRes }));52 } catch (Error) {53 console.log(Error);54 }55 },56 // Update Categorie By Id57 async UpdateCategorie(req, res) {58 try {59 await Model.MDFindIdUpdate(req.body);60 res.json(Helpers.objResponse(true, "Categoria actualizada con éxito."));61 } catch (Error) {62 console.log(Error);63 }64 },65 // Delete Category66 async DeleteCategorie(req, res) {67 try {68 let JsonData = {};69 const SubCategories = await MDSubCategory.MDFindByCategory({70 strIdCategory: req.body._id,71 });72 if (SubCategories.length == 0) {73 await Model.MDDeleteCategory(req.body);74 JsonData = Helpers.objResponse(true, "Category delete with Success");75 } else {76 JsonData = Helpers.objResponse(77 false,78 "Not delete category.Because the category has SubCategories"79 );80 }81 res.json(JsonData);82 } catch (Error) {83 console.log(Error);84 }85 },...

Full Screen

Full Screen

index.js

Source:index.js Github

copy

Full Screen

...10 cwd: this.cwd,11 include: filePath,12 exclude: excludeName.concat(excludePath),13 }14 return mdfind(query, options).then(files => {15 return (this.env.matchBy === 'stringincludes'16 ? files.filter(obj => (obj.name + obj.path).toLowerCase().includes(query.toLowerCase()))17 : fuzzyfind(query, files, {18 accessor: function (obj) {19 return obj.name + obj.path20 },21 })22 )23 .slice(0, 20)24 .map(file => file.toJson())25 })26 }27 findApps (query) {28 const { appPath, excludeName, excludePath } = this.env.directories29 const options = {30 cwd: this.cwd,31 include: appPath,32 exclude: excludeName.concat(excludePath),33 }34 return mdfind(appQuery, options).then(files => {35 return (this.env.matchBy === 'stringincludes'36 ? files.filter(obj => (obj.name + obj.path).toLowerCase().includes(query.toLowerCase()))37 : fuzzyfind(query, files, {38 accessor: function (obj) {39 return obj.name + obj.path40 },41 })42 )43 .slice(0, 20)44 .map(file => file.toJson())45 })46 }47 cacheIcons (apps) {48 return Promise.all(49 apps50 .filter(file => !file.hasIcon())51 .slice(0, 20)52 .map(file => file.generateIcon())53 ).then(() => apps)54 }55 startCache () {56 const { appPath, excludeName, excludePath } = this.env.directories57 const options = {58 cwd: this.cwd,59 include: appPath,60 exclude: excludeName.concat(excludePath),61 }62 return mdfind(appQuery, options)63 .then(apps => this.cacheIcons(apps))64 .then(apps => apps.map(app => app.toJson()))65 }66 static isInstalled () {67 return process.platform === 'darwin'68 }69}...

Full Screen

Full Screen

Apps.js

Source:Apps.js Github

copy

Full Screen

1const Promise = require('bluebird');2const child_process = Promise.promisifyAll(require('child_process'));3const readplist = Promise.promisify(require('readplist'));4const os = require('os');5const info_from_bundle = async (bundle_path) => {6 const plist = await readplist(`${bundle_path}/Contents/Info.plist`);7 return {8 uid: bundle_path,9 title: plist.CrAppModeShortcutName || plist.CFBundleDisplayName || plist.CFBundleName || '',10 subtitle: bundle_path,11 extra_data: { plist },12 action: { type: 'open', path: bundle_path },13 icon: {14 type: 'file',15 path: bundle_path,16 },17 };18}19const get_lines = async (command) => {20 const result = await child_process.execAsync(command);21 return result.trim().split('\n');22}23const generate_app_entries = async () => {24 const mdfind_apps_command = `mdfind 'kMDItemContentTypeTree == "com.apple.application"c' -onlyin "${os.homedir()}" -onlyin /Applications`;25 const apps = await get_lines(mdfind_apps_command);26 return await Promise.all(apps.map(async app_path => {27 try {28 let bundle = await info_from_bundle(app_path);29 if (bundle.subtitle.includes('node_modules')) {30 return null;31 }32 return bundle;33 } catch (e) {34 return null;35 }36 }))37 .filter(Boolean);38}39const generate_preference_entries = async () => {40 const mdfind_apps_command = `mdfind 'kMDItemContentTypeTree == "com.apple.systempreference.prefpane"c'`;41 const apps = await get_lines(mdfind_apps_command);42 return await Promise.all(apps.map(async app_path => {43 try {44 return await info_from_bundle(app_path);45 } catch (e) {46 return null;47 }48 }))49 .filter(Boolean);50}51export default {52 retrieve_items: {53 on_start: async () => {54 const entries$ = generate_app_entries();55 const pref_entries$ = generate_preference_entries();56 return Promise.all([entries$, pref_entries$])57 .then(([apps, prefs]) => {58 return [...apps, ...prefs];59 });60 },61 on_open: async () => {62 },63 on_search: async ({ query }) => {64 },65 }...

Full Screen

Full Screen

model.js

Source:model.js Github

copy

Full Screen

1const Categories = require("./modelmongodb");2module.exports = {3 async MDSave({ strName }) {4 // Create Category5 const Category = new Categories({6 strName,7 });8 await Category.save();9 },10 async MDFindOne(strData) {11 // Find Category12 const objResponse = await Categories.findOne(strData);13 return objResponse;14 },15 async MDFind() {16 // Get Categories17 const objRes = await Categories.find({}, { strName: 1 }).sort({18 $natural: -1,19 });20 return objRes;21 },22 async MDFindPagination({ Min = 0, Max = 10 }) {23 const objRes = await Categories.find({}, { strName: 1 })24 .sort({ $natural: -1 })25 .skip(Min)26 .limit(Max);27 return objRes;28 },29 // Update30 async MDFindIdUpdate({ _id, strText }) {31 const objRes = await Categories.findByIdAndUpdate(32 { _id },33 { strName: strText }34 );35 return objRes;36 },37 async MDDeleteCategory({ _id }) {38 try {39 await Categories.findByIdAndRemove({ _id });40 } catch (Error) {41 console.log(Error);42 }43 },...

Full Screen

Full Screen

getAppsList.js

Source:getAppsList.js Github

copy

Full Screen

...27 */28export default () => {29 cancelPrevious()30 return new Promise(resolve => {31 const { output, terminate } = mdfind({32 query: buildQuery()33 })34 cancelPrevious = terminate35 const result = []36 output.on('data', (file) => result.push(file))37 output.on('end', () => resolve(result))38 })...

Full Screen

Full Screen

Using AI Code Generation

copy

Full Screen

1const fs = require('fs');2fs.readdir('/Users/username/Desktop', (err, files) => {3 files.forEach(file => {4 console.log(file);5 });6});7const fs = require('fs');8fs.readdir('/Users/username/Desktop', (err, files) => {9 files.forEach(file => {10 console.log(file);11 });12});13const fs = require('fs');14fs.readdir('/Users/username/Desktop', (err, files) => {15 files.forEach(file => {16 console.log(file);17 });18});19const fs = require('fs');20fs.readdir('/Users/username/Desktop', (err, files) => {21 files.forEach(file => {22 console.log(file);23 });24});25const fs = require('fs');26fs.readdir('/Users/username/Desktop', (err, files) => {27 files.forEach(file => {28 console.log(file);29 });30});31const fs = require('fs');32fs.readdir('/Users/username/Desktop', (err, files) => {33 files.forEach(file => {34 console.log(file);35 });36});37const fs = require('fs');38fs.readdir('/Users/username/Desktop', (err, files) => {39 files.forEach(file => {40 console.log(file);41 });42});43const fs = require('fs');44fs.readdir('/Users/username/Desktop', (err, files) => {45 files.forEach(file => {46 console.log(file);47 });48});

Full Screen

Cypress Tutorial

Cypress is a renowned Javascript-based open-source, easy-to-use end-to-end testing framework primarily used for testing web applications. Cypress is a relatively new player in the automation testing space and has been gaining much traction lately, as evidenced by the number of Forks (2.7K) and Stars (42.1K) for the project. LambdaTest’s Cypress Tutorial covers step-by-step guides that will help you learn from the basics till you run automation tests on LambdaTest.

Chapters:

  1. What is Cypress? -
  2. Why Cypress? - Learn why Cypress might be a good choice for testing your web applications.
  3. Features of Cypress Testing - Learn about features that make Cypress a powerful and flexible tool for testing web applications.
  4. Cypress Drawbacks - Although Cypress has many strengths, it has a few limitations that you should be aware of.
  5. Cypress Architecture - Learn more about Cypress architecture and how it is designed to be run directly in the browser, i.e., it does not have any additional servers.
  6. Browsers Supported by Cypress - Cypress is built on top of the Electron browser, supporting all modern web browsers. Learn browsers that support Cypress.
  7. Selenium vs Cypress: A Detailed Comparison - Compare and explore some key differences in terms of their design and features.
  8. Cypress Learning: Best Practices - Take a deep dive into some of the best practices you should use to avoid anti-patterns in your automation tests.
  9. How To Run Cypress Tests on LambdaTest? - Set up a LambdaTest account, and now you are all set to learn how to run Cypress tests.

Certification

You can elevate your expertise with end-to-end testing using the Cypress automation framework and stay one step ahead in your career by earning a Cypress certification. Check out our Cypress 101 Certification.

YouTube

Watch this 3 hours of complete tutorial to learn the basics of Cypress and various Cypress commands with the Cypress testing at LambdaTest.

Run Cypress automation tests on LambdaTest cloud grid

Perform automation testing on 3000+ real desktop and mobile devices online.

Try LambdaTest Now !!

Get 100 minutes of automation test minutes FREE!!

Next-Gen App & Browser Testing Cloud

Was this article helpful?

Helpful

NotHelpful