手机自动化测试:Appium源码分析之跟踪代码分析五

 

手机自动化测试是未来很重要的测试技术,作为一名测试人员应该熟练掌握,POPTEST举行手机自动化测试的课程,希望可以训练出优秀的手机测试开发工程师。

queue

我们先了解一下事件的集中处理方式,参考文章。从这篇文章可以知道,nodejs提供了一个Async库,该库就是用来处理事件的。里面就有这一个queue。 
在上一篇文章我们讲到了initQueue,我们这次再来看看:

Android.prototype.initQueue = function () {

this.queue = async.queue(function (task, cb) {

var action = task.action,

params = task.params;

this.cbForCurrentCmd = cb;

if (this.adb && !this.shuttingDown) {

this.uiautomator.sendAction(action, params, function (response) {

this.cbForCurrentCmd = null;

if (typeof cb === 'function') {

this.respond(response, cb);

}

}.bind(this));

} else {

this.cbForCurrentCmd = null;

var msg = "Tried to send command to non-existent Android device, " +

"maybe it shut down?";

if (this.shuttingDown) {

msg = "We're in the middle of shutting down the Android device, " +

"so your request won't be executed. Sorry!";

}

this.respond({

status: status.codes.UnknownError.code

, value: msg

}, cb);

}

}.bind(this), 1);

};

Async库中queue的定义一般如下所示:

var q = async.queue(function(task, callback) {

log(‘worker is processing task: ‘, task.name);

task.run(callback);

}, 1);

上面定义了一个工作线程为1的队列。当队列正在处理事件时,其他事件就一直等待。所以当我们使用queue的push方法时,queue会自己唤起然后执行,如果正在执行,push添加进来的事件会等到下一次执行。

uiautomator.sendAction

上面的请求,最终调用的是devices/android/uiautomator的sendAction的方法:

UiAutomator.prototype.sendAction = function (action, params, cb) {

if (typeof params === "function") {

cb = params;

params = {};

}

var extra = {action: action, params: params};

this.sendCommand('action', extra, cb);

};

然后转向sendCommand方法

uiautomator.sendCommand

UiAutomator.prototype.sendCommand = function (type, extra, cb) {

if (this.cmdCb !== null) {

logger.warn("Trying to run a command when one is already in progress. " +

"Will spin a bit and try again");

var start = Date.now();

var timeoutMs = 10000;

var intMs = 200;

var waitForCmdCbNull = function () {

if (this.cmdCb === null) {

this.sendCommand(type, extra, cb);

} else if ((Date.now() - start) < timeoutMs) {

setTimeout(waitForCmdCbNull, intMs);

} else {

cb(new Error("Never became able to push strings since a command " +

"was in process"));

}

}.bind(this);

waitForCmdCbNull();

} else if (this.socketClient) {

this.resendLastCommand = function () {

this.sendCommand(type, extra, cb);

}.bind(this);

if (typeof extra === "undefined" || extra === null) {

extra = {};

}

var cmd = {cmd: type};

cmd = _.extend(cmd, extra);

var cmdJson = JSON.stringify(cmd) + "\n";

this.cmdCb = cb;

var logCmd = cmdJson.trim();

if (logCmd.length > 1000) {

logCmd = logCmd.substr(0, 1000) + "...";

}

this.debug("Sending command to android: " + logCmd);

this.socketClient.write(cmdJson);

} else {

cb({

status: status.codes.UnknownError.code

, value: "Tried to send command to non-existent Android socket, " +

"maybe it's shutting down?"

});

}

};

最终会向设备端的socket发送一条命令,关于设备端接受命令以及如何处理,请查看我之前写的关于appium中bootstrap源码分析相关文章

手机自动化测试:Appium源码分析之跟踪代码分析五的更多相关文章

  1. 手机自动化测试:Appium源码分析之跟踪代码分析九

    手机自动化测试:Appium源码分析之跟踪代码分析九   poptest是国内唯一一家培养测试开发工程师的培训机构,以学员能胜任自动化测试,性能测试,测试工具开发等工作为目标.如果对课程感兴趣,请大家 ...

  2. 手机自动化测试:Appium源码分析之跟踪代码分析八

    手机自动化测试:Appium源码分析之跟踪代码分析八   poptest是国内唯一一家培养测试开发工程师的培训机构,以学员能胜任自动化测试,性能测试,测试工具开发等工作为目标.如果对课程感兴趣,请大家 ...

  3. 手机自动化测试:Appium源码分析之跟踪代码分析七

    手机自动化测试:Appium源码分析之跟踪代码分析七   poptest是国内唯一一家培养测试开发工程师的培训机构,以学员能胜任自动化测试,性能测试,测试工具开发等工作为目标.poptest推出手机自 ...

  4. 手机自动化测试:Appium源码分析之跟踪代码分析六

    手机自动化测试:Appium源码分析之跟踪代码分析六   poptest是国内唯一一家培养测试开发工程师的培训机构,以学员能胜任自动化测试,性能测试,测试工具开发等工作为目标.poptest推出手机自 ...

  5. 手机自动化测试:appium源码分析之bootstrap三

    手机自动化测试:appium源码分析之bootstrap三   研究bootstrap源码,我们可以通过代码的结构,可以看出来appium的扩展思路和实现方式,从中可以添加我们自己要的功能,针对app ...

  6. 手机自动化测试:appium源码分析之bootstrap二

    手机自动化测试:appium源码分析之bootstrap二   在bootstrap项目中的io.appium.android.bootstrap.handler包中的类都是对应的指令类, priva ...

  7. 手机自动化测试:appium源码分析之bootstrap一

    手机自动化测试:appium源码分析之bootstrap一   前言: poptest是国内唯一一家培养测试开发工程师的培训机构,以学员能胜任自动化测试,性能测试,测试工具开发等工作为目标.popte ...

  8. 手机自动化测试:appium源码分析之bootstrap十七

    手机自动化测试:appium源码分析之bootstrap十七   poptest是国内唯一一家培养测试开发工程师的培训机构,以学员能胜任自动化测试,性能测试,测试工具开发等工作为目标.如果对课程感兴趣 ...

  9. 手机自动化测试:appium源码分析之bootstrap十六

    手机自动化测试:appium源码分析之bootstrap十六   poptest是国内唯一一家培养测试开发工程师的培训机构,以学员能胜任自动化测试,性能测试,测试工具开发等工作为目标.如果对课程感兴趣 ...

随机推荐

  1. JS 基础学习随想

    2012年就已经接触过了js,给我的印象:这是一门谈不上复杂的语言.大概这就是所谓的学的越浅,用的越少,觉得自己会的东西好像得更多吧!开始做基础练习题的时候觉得好像都十分简单.可是后来在做到对象数组的 ...

  2. Gulp实现css、js、图片的压缩以及css、js文件的MD5命名

    目前做代码压缩合并的工具有很多,诸如gulp,webpack,grunt等等,可以说这些项目构建工具的功能非常之强大:图片压缩.图片转base64.css和js的压缩以及合并,文件的md5重命名 -- ...

  3. [转]云计算之hadoop、hive、hue、oozie、sqoop、hbase、zookeeper环境搭建及配置文件

     云计算之hadoop.hive.hue.oozie.sqoop.hbase.zookeeper环境搭建及配置文件已经托管到githubhttps://github.com/sxyx2008/clou ...

  4. 信号处理——Hilbert端点效应浅析

    作者:桂. 时间:2017-03-05  19:29:12 链接:http://www.cnblogs.com/xingshansi/p/6506405.html 声明:转载请注明出处,谢谢. 前言 ...

  5. JAVA开发环境搭建 - Eclipse基本配置

    Eclipse设置的内容包括许多方面,不同的开发人员,不同的项目需要,可能对Eclipse的设置不尽相同.如下内容仅是对本人的一些基本设置做一些记录,以作备忘.后期会逐渐对相关内容进行更新,仅供参考. ...

  6. BigInteger和BigDecimal的练习

    前言: BigInteger用于处理大数据的计算,它继承自java.math.BigInteger.用法相对来说比较简单,掌握几个基本运算即可. 初始化: BigInteger sum=new Big ...

  7. [LeetCode]Rotate Image(矩阵旋转)

    48. Rotate Image     Total Accepted: 69437 Total Submissions: 198781 Difficulty: Medium You are give ...

  8. Eclipse:The selection cannot be launched,and there are no recent launches

    刚刚装上eclipse,于是就想写个Java程序来试试.结果写好之后不管是点击 run  还是  debug 结果都会弹出一个窗口,内容为: The selection cannot be launc ...

  9. 通过Servlet生成验证码图片

    原文出自:http://www.cnblogs.com/xdp-gacl/p/3798190.html 一.BufferedImage类介绍 生成验证码图片主要用到了一个BufferedImage类, ...

  10. 设置node服务器的端口及运行环境

    一般来说,node服务器中通常会看到这样的代码: ``` app.set('port', process.env.PORT || 3000); if ( process.env.NODE_ENV == ...