iOS 猴子测试

所谓“猴子测试”,就是自动化UI测试,模拟在屏幕上随便乱点,来达到自动化测试的目的,节省了人力。

测试非常简单,本文用到了Github上的 UI AutoMonkey 来集成的,地址:https://github.com/jonathanpenn/ui-auto-monkey

步骤如下:

1.选择Instrument中的Automation,清空里面的js代码。
2.把 UI AutoMonkey 中的 UIAutoMonkey.js 文件里面的400多行js代码拷贝,粘贴到Automation里面。(或者直接拷贝下面的js代码)
3.点击左上角的红色按钮运行,模拟器就开始工作了,可以看到屏幕自动出现快速乱点的效果。

测试效果展示:


Untitled7.gif

备注:
测试包括了:点击、滚动、清扫、捏合、横竖屏等。

附js测试代码:

"use strict";

function UIAutoMonkey() {
        
    this.config = {
        //run either by minutesToRun or numberOfEvents. Only one of these can set. (To use minutes you can use config.numberOfEvents = 0)
        //minutesToRun = 60 * 8; //sample to run for 8 hours.
        //checkTimeEvery = 60; //how often to check (in events) if minutesToRun has is used. 
        numberOfEvents: 1000,
        delayBetweenEvents: 0.05,    // In seconds
        
        /**
        * Sometimes the monkey can fall into UI Holes from which it it is hard to escape. The monkey may then spend an inordinate
        * amount of time in such holes, neglecting other parts of the application.
        *
        * For example, if a parent Window P has a large image
        * and clicking on the image opens a child window C from which one exits by tapping a small X on the top right, then until that small X is
        * tapped we will remain in C. conditionHandlers offer the developer the option to periodically recognize that we are in C and press the X.
        *
        * See buttonHandler.js for a specialized conditionHandler useful when a top level button can be used to escape from a UI hole.
        *
        * conditionHandlers are objects that respond to the following methods:
        *  isTrue(target, eventNumber): returns True if the condition is true given target and event number eventNumber.
        *  checkEvery(): How many events should pass before we check.
        *  handle(target, mainWindow) handle the condition.
        *  isExclusive() if true then if this condition's handler is invoked then processing subsequent conditions is skipped for this particular event. This
        *    is usually set to true as it allows the condition to exit a UI hole and at that point there may be no point executing other conditions
        *  logStats() log statics using UIALogger;
        * condition handlers must have the following property
        *  statsHandleInvokedCount - the count of the number of times we were invoked
        */

        conditionHandlers: [],
        
        /**
        * Unfortunately if the application is not responsive "ANR", the monkey may not notice and continue to fire events not realizing that
        * the application is stuck. When run via continuous integration users may not notice that "successful" monkey runs in fact were in an 
        * ANR state.
        *
        * To deal with this the monkey supports ANR detection. Using an anrFingerprint function it periodically takes a fingerprint and if these
        * are identical for a specified interval then an ANR exception is thrown.
        *
        *
        */
        anrSettings: {
            //fingerprintFunction defaults to false which will disable ANR fingerprinting. Otherwise set to a function that will return
            //a string. One useful idiom using tuneup.js is
            //#import tuneup.js
            //config.anrSettings.fingerprintFunction = function() {return logVisibleElementTreeJSON(false)};
            fingerprintFunction: false,
            eventsBeforeANRDeclared: 1500, //throw exception if the fingerprint hasn't changed within this number of events
            eventsBetweenSnapshots: 150, //how often (in events) to take a snapshot using the fingerprintFunction 
            debug: false //if true extra logging is made            
        },

        // If the following line is uncommented, then screenshots are taken
        // every "n" seconds.
        //screenshotInterval: 5,

        // Events are triggered based on the relative weights here. The event
        // with this highest number gets triggered the most.
        //
        // If you want to add your own "events", check out the event method
        // definitions below.
        eventWeights: {
            tap: 500,
            drag: 1,
            flick: 1,
            orientation: 1,
            clickVolumeUp: 1,
            clickVolumeDown: 1,
            lock: 1,
            pinchClose: 10,
            pinchOpen: 10,
            shake: 1
        },

        // Probability that touch events will have these different properties
        touchProbability: {
            multipleTaps: 0.05,
            multipleTouches: 0.05,
            longPress: 0.05
        }
        

        // Uncomment the following to restrict events to a rectangular area of
        // the screen
        /*
        frame: {
            origin: {x: 0, y: 0},
            size: {width: 100, height: 50}
        }
        */

    };

    // Dismiss alerts 
    UIATarget.onAlert = function onAlert(alert) {
        var title = alert.name();
        UIALogger.logMessage('On Alert: ' + title);
        return true;
    }
}

// --- --- --- ---
// Event Methods
//
// Any event probability in the hash above corresponds to a related event
// method below. So, a "tap" probability will trigger a "tap" method.
//
// If you want to add your own events, just add a probability to the hash
// above and then add a corresponding method below. Boom!
//
// Each event method can call any other method on this UIAutoMonkey object.
// All the methods at the end are helpers at your disposal and feel free to
// add your own.

UIAutoMonkey.prototype.allEvents = {
    tap: function() {
        this.target().tapWithOptions(
            { x: this.randomX(), y: this.randomY() },
            {
                tapCount: this.randomTapCount(),
                touchCount: this.randomTouchCount(),
                duration: this.randomTapDuration()
            }
        );
    },

    drag: function() {
        this.target().dragFromToForDuration(
            { x: this.randomX(), y: this.randomY() },
            { x: this.randomX(), y: this.randomY() },
            0.5
        );
    },

    flick: function() {
        this.target().flickFromTo(
            { x: this.randomX(), y: this.randomY() },
            { x: this.randomX(), y: this.randomY() }
        );
    },

    orientation: function() {
        var orientations = [
            UIA_DEVICE_ORIENTATION_PORTRAIT,
            UIA_DEVICE_ORIENTATION_PORTRAIT_UPSIDEDOWN,
            UIA_DEVICE_ORIENTATION_LANDSCAPELEFT,
            UIA_DEVICE_ORIENTATION_LANDSCAPERIGHT
        ];

        var i = Math.floor(Math.random() * 10) % orientations.length;
        var newOrientation = orientations[i];
        this.target().setDeviceOrientation(newOrientation);
        this.delay(0.9);
    },

    clickVolumeUp: function() {
        this.target().clickVolumeUp();
    },

    clickVolumeDown: function() {
        this.target().clickVolumeDown();
    },

    lock: function() {
        this.target().lockForDuration(Math.random() * 3);
    },

    pinchClose: function () {
        this.target().pinchCloseFromToForDuration(
            { x: this.randomX(), y: this.randomY() },
            { x: this.randomX(), y: this.randomY() },
            0.5
        );
    },

    pinchOpen: function () {
        this.target().pinchOpenFromToForDuration(
            { x: this.randomX(), y: this.randomY() },
            { x: this.randomX(), y: this.randomY() },
            0.5
        );
    },

    shake: function() {
        this.target().shake();
    }
};

// --- --- --- ---
// Helper methods
//
UIAutoMonkey.prototype.RELEASE_THE_MONKEY = function() {
    // Called at the bottom of this script to, you know...
    //
    // RELEASE THE MONKEY!
    if (this.config.minutesToRun && this.config.numberOfEvents) {
        throw "invalid configuration. You cannot define both minutesToRun and numberOfEvents"
    }
    var conditionHandlers = this.config.conditionHandlers || []; //For legacy configs, if not present default to empty.
    var useConditionHandlers = conditionHandlers.length > 0;
    var checkTime = false;
    var localNumberOfEvents = this.config.numberOfEvents; //we may modify so we want to leave config untouched
    if (this.config.minutesToRun) {
        checkTime = true;
        localNumberOfEvents = 2000000000;
        var startTime = new Date().getTime();
        var checkTimeEvery = this.config.checkTimeEvery || 60; //number of events to pass before we check the time
    }
    //setup anr parameters as needed
    var anrFingerprintFunction = this.config.anrSettings ? this.config.anrSettings.fingerprintFunction : false; //handle legacy settings missing this
    if (anrFingerprintFunction) {
        this.anrSnapshot = "Initial snapshot-nothing should match this!!";
        this.anrSnapshotTakenAtIndex = -1;      
        var anrEventsBetweenSnapshots = this.config.anrSettings.eventsBetweenSnapshots || 300;
        var anrDebug = this.config.anrSettings.debug;
        this.anrMaxElapsedCount = -1;
    } 
    
    var targetBundleId = this.target().frontMostApp().bundleID();
    for (var i = 0; i < localNumberOfEvents; i++) {
        if (checkTime && (i % checkTimeEvery == 0)) { //check the time if needed
            var currTime = new Date().getTime();
            var elapsedMinutes = (currTime-startTime) / 60000;
            if (elapsedMinutes >= this.config.minutesToRun) {
                UIALogger.logDebug("Ending monkey after " + elapsedMinutes + " minutes run time.");
                break;
            } else {
                UIALogger.logDebug(this.config.minutesToRun - elapsedMinutes + " minutes left to run.")
            }
        }

        var currentBundleId = this.target().frontMostApp().bundleID();
        if (currentBundleId !== targetBundleId) {
            UIALogger.logDebug("Ending monkey because it went outside of the tested app ('" + currentBundleId + "')");
            break;
        }

        this.triggerRandomEvent();
        if (anrFingerprintFunction && (i % anrEventsBetweenSnapshots == 0)) this.anrCheck(i, anrFingerprintFunction, anrDebug);
        if (this.config.screenshotInterval) this.takeScreenShotIfItIsTime();
        if (useConditionHandlers) this.processConditionHandlers(conditionHandlers, i+1, this.target());
        this.delay();
    }
    // publish stats if warranted
    if (anrFingerprintFunction) {
        UIALogger.logDebug("ANR Statistics");
        UIALogger.logDebug("ANR max event count for identical fingerprint snapshots :: events before ANR declared: " + this.anrMaxElapsedCount + " :: " + this.config.anrSettings.eventsBeforeANRDeclared);
    }
    if (useConditionHandlers) {
        UIALogger.logDebug("ConditionHandler Statistics")
        conditionHandlers.forEach(function(aHandler) {aHandler.logStats()});
        conditionHandlers.sort(function(aHandler, bHandler) {return aHandler.statsHandleInvokedCount - bHandler.statsHandleInvokedCount});
        UIALogger.logDebug("sorted by HandleInvokedCount");
        conditionHandlers.forEach(function(aHandler) {UIALogger.logDebug(aHandler + ": " + aHandler.statsHandleInvokedCount)});
    }
};


UIAutoMonkey.prototype.anrCheck = function(i, fingerprintFunction, debugFlag){

    var newSnapshot = fingerprintFunction();
    if (newSnapshot != this.anrSnapshot) {
        //all is good, we're moving along
        if (debugFlag) UIALogger.logDebug("UIAutoMonkey:anrCheck(): snapshot != for event " + i);
        this.anrSnapshot = newSnapshot;
        this.anrSnapshotTakenAtIndex = i;
    } 
    else {
        //have a match
        //for how many counts?
        var elapsedCount = i - this.anrSnapshotTakenAtIndex;
        this.anrMaxElapsedCount = Math.max(this.anrMaxElapsedCount, elapsedCount);
        UIALogger.logDebug("UIAutoMonkey:anrCheck(): snapshot == with elapsed count=" + elapsedCount);
        if (elapsedCount > this.config.anrSettings.eventsBeforeANRDeclared) {
            UIALogger.logDebug("duplicate snapshot detected" + this.anrSnapshot);
            throw "anr exception-identical after " + elapsedCount + " events";
        };
    };
};


UIAutoMonkey.prototype.processConditionHandlers = function(conditionHandlers, eventNumberPlus1, target) {
    var mainWindow = target.frontMostApp().mainWindow(); //optimization to let handlers do less work. Assumes isTrue() doesn't alter the mainWindow.
    for (var i = 0; i < conditionHandlers.length; i++) {
        var aCondition = conditionHandlers[i];
        if ((eventNumberPlus1 % aCondition.checkEvery()) != 0) {
            continue; //not yet time to process aCondition.
        }
        try {
            UIATarget.localTarget().pushTimeout(0);
            var isConditionTrue = aCondition.isTrue(target, eventNumberPlus1, mainWindow);
        }
        finally {
            UIATarget.localTarget().popTimeout();
        }
        if (isConditionTrue) {
                aCondition.handle(target, mainWindow);
                if (aCondition.isExclusive()) {
                    break;
                } else {
                    mainWindow = target.frontMostApp().mainWindow(); //could be stale
                }
        };
    };

};

UIAutoMonkey.prototype.triggerRandomEvent = function() {
    var name = this.chooseEventName();
    // Find the event method based on the name of the event
    var event = this.allEvents[name];
    event.apply(this);
};

UIAutoMonkey.prototype.target = function() {
    // Return the local target.
    return UIATarget.localTarget();
};

UIAutoMonkey.prototype.delay = function(seconds) {
    // Delay the target by `seconds` (can be a fraction)
    // Defaults to setting in configuration
    seconds = seconds || this.config.delayBetweenEvents;
    this.target().delay(seconds);
};

UIAutoMonkey.prototype.chooseEventName = function() {
    // Randomly chooses an event name from the `eventsWeight` dictionary
    // based on the given weights.
    var calculatedEventWeights = [];
    var totalWeight = 0;
    var events = this.config.eventWeights;
    for (var event in events) {
        if (events.hasOwnProperty(event)) {
            calculatedEventWeights.push({
                weight: events[event]+totalWeight,
                event: event
            });
            totalWeight += events[event];
        }
    }

    var chosenWeight = Math.random() * 1000 % totalWeight;

    for (var i = 0; i < calculatedEventWeights.length; i++) {
        if (chosenWeight < calculatedEventWeights[i].weight) {
            return calculatedEventWeights[i].event;
        }
    }

    throw "No even was chosen!";
};

UIAutoMonkey.prototype.screenWidth = function() {
    // Need to adjust by one to stay within rectangle
    return this.target().rect().size.width - 1;
};

UIAutoMonkey.prototype.screenHeight = function() {
    // Need to adjust by one to stay within rectangle
    return this.target().rect().size.height - 1;
};

UIAutoMonkey.prototype.randomX = function() {
    var min, max;   

    if (this.config.frame){
        // Limits coordinates to given frame if set in config
        min = this.config.frame.origin.x;
        max = this.config.frame.size.width + min;
    } else {
        // Returns a random X coordinate within the screen rectangle
        min = 0;
        max = this.screenWidth();
    }

    return Math.floor(Math.random() * (max - min) + min) + 1;
};

UIAutoMonkey.prototype.randomY = function() {
    var min, max;

    if (this.config.frame){
        // Limits coordinates to given frame if set in config
        min = this.config.frame.origin.y;
        max = this.config.frame.size.height + min;
    } else {
        // Returns a random Y coordinate within the screen rectangle
        min = 0;
        max = this.screenHeight();
    }

    return Math.floor(Math.random() * (max - min) + min) + 1;
};

UIAutoMonkey.prototype.randomTapCount = function() {
    // Calculates a tap count for tap events based on touch probabilities
    if (this.config.touchProbability.multipleTaps > Math.random()) {
        return Math.floor(Math.random() * 10) % 3 + 1;
    }
    else return 1;
};

UIAutoMonkey.prototype.randomTouchCount = function() {
    // Calculates a touch count for tap events based on touch probabilities
    if (this.config.touchProbability.multipleTouches > Math.random()) {
        return Math.floor(Math.random() * 10) % 3 + 1;
    }
    else return 1;
};

UIAutoMonkey.prototype.randomTapDuration = function() {
    // Calculates whether or not a tap should be a long press based on
    // touch probabilities
    if (this.config.touchProbability.longPress > Math.random()) {
        return 0.5;
    }
    else return 0;
};

UIAutoMonkey.prototype.randomRadians = function() {
    // Returns a random radian value
    return Math.random() * 10 % (3.14159 * 2);
};

UIAutoMonkey.prototype.takeScreenShotIfItIsTime = function() {
    var now = (new Date()).valueOf();
    if (!this._lastScreenshotTime) this._lastScreenshotTime = 0;

    if (now - this._lastScreenshotTime > this.config.screenshotInterval * 1000) {
        var filename = "monkey-" + (new Date()).toISOString().replace(/[:\.]+/g, "-");
        this.target().captureScreenWithName(filename);
        this._lastScreenshotTime = now;
    }
};

// If you want to control when the monkey is released please follow the pattern in the SampleCustomization folder. In brief you want to set a global
// as set in SetGlobals.js, but due to Apple's javascript implementation you cannot simply set it before you import UIAutoMonkey.js.
//
if (typeof UIAutoMonkeyClientWillReleaseTheMonkey == 'undefined' || !UIAutoMonkeyClientWillReleaseTheMonkey) {
    // the variable is not defined or it's defined and false
    UIALogger.logDebug("Releasing the monkey directly from UIAutoMonkey"); //explain why it was released to aid in problem resolution.
    (new UIAutoMonkey()).RELEASE_THE_MONKEY();
}
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,547评论 6 477
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,399评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,428评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,599评论 1 274
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,612评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,577评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,941评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,603评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,852评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,605评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,693评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,375评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,955评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,936评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,172评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 43,970评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,414评论 2 342

推荐阅读更多精彩内容

  • Android 自定义View的各种姿势1 Activity的显示之ViewRootImpl详解 Activity...
    passiontim阅读 171,398评论 25 707
  • 从前有种测试叫瞎点测试,随机测试(淘气的猴子)。Android 上有 Monkey。我们以前用 Monkey 来跑...
    iOS开发周立贺阅读 7,084评论 29 37
  • 【今日话题】在人数众多的社群里,你更倾向于帮助什么样的人?(大家其实可以这么剖析这个问题:除了这个人的某些能力、特...
    vickyzhou_jsjs阅读 148评论 0 0
  • 上月入手穷查理宝典。翻阅几页后,惊为天人。背后冒汗,那些一个个真实的规律呈现在眼前。呈实在眼前是那些多方验证,时间...
    羽辰在精进阅读 648评论 0 0
  • 还是那么容易掉眼泪 看着小说电影哭的无法自已 尽管不再是学生了 还总爱穿衬衫搭毛衣 下班后就不接非亲人朋友的电话 ...
    读云轩札记阅读 208评论 0 0