码迷,mamicode.com
首页 > 其他好文 > 详细

埋点的验证方法

时间:2017-11-02 20:05:02      阅读:257      评论:0      收藏:0      [点我收藏+]

标签:截取   ima   static   body   语句   encoding   app   com   contain   

写的埋点脚本,实用性很差,跟同事讨论了以下怎么测试埋点。

最终解决方案是,用fiddler的js语句,识别出url为trace.do的request,然后截取actiontype字段,从数据库中导出埋点的数据,把截取的字段遍历一遍,输出在log里面。

 

实现方案如下

1.写方法,用来截取actionType的id

public static function selectActionType(str){
var i = str.indexOf("actionType");
var str1=str.substr(i+11);
var j = str1.indexOf("&");
if(j!=-1){
str1=str1.substr(0,j);
}
return(str1);
}

2.写方法,用来把id,和数据库中导出的数据做一个匹配对比

public static function choose(str){
var myList={"0202":"test","0203":"test1","0204":"test2"};
for(var id in myList){
if(id==str){
str=str+","+myList[id];
break;
}else{
str=str+",没找到这个埋点";
break;
}
}
return(str);
}

3.写onbeforerequest方法,在请求时,做一个判断,如果url符合要求,就获取body,然后输出对比结果;

static function OnBeforeRequest(oSession: Session) {

if (oSession.uriContains("/pabys/common/trace.do")) {
//oSession["ui-color"] = "blue";
var request=oSession.GetRequestBodyAsString();
//var request1=oSession.GetRequestBodyEncoding();
var aType=selectActionType(request);
//FiddlerApplication.Log.LogFormat(request1);
FiddlerApplication.Log.LogFormat(choose(aType));
}

……

 }

4.实现结果如下

技术分享

 

埋点的验证方法

标签:截取   ima   static   body   语句   encoding   app   com   contain   

原文地址:http://www.cnblogs.com/zhizhiyin/p/7773838.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!