全國(guó)咨詢(xún)/投訴熱線(xiàn):400-618-4000

首頁(yè)技術(shù)文章正文

什么是接口Mock測(cè)試?如何實(shí)現(xiàn)接口Mock測(cè)試?

更新時(shí)間:2020-07-14 來(lái)源:黑馬程序員 瀏覽量:

1、什么是接口Mock測(cè)試?

應(yīng)用場(chǎng)景思考?
1.在前后端分離的項(xiàng)目中,假如后端代碼還未開(kāi)發(fā)完,前端代碼需要調(diào)用后端接口進(jìn)行調(diào)試,該怎么辦?
2.本公司的電商平臺(tái)需要對(duì)接第三方支付接口,如何測(cè)試支付失敗的場(chǎng)景?

1.1 概念

Mock:模擬的、仿制的、虛假的

Mock測(cè)試:在測(cè)試過(guò)程中,對(duì)于某些不容易構(gòu)造或者不容易獲取的對(duì)象,可以用一個(gè)虛擬的對(duì)象來(lái)代替的測(cè)試方法。

接口Mock測(cè)試:在接口測(cè)試過(guò)程中,對(duì)于某些不容易構(gòu)造或者不容易獲取的接口,可以用一個(gè)模擬接口來(lái)代替。

1.2 作用

可以用來(lái)解除測(cè)試對(duì)象對(duì)外部服務(wù)的依賴(lài),使得測(cè)試用例可以獨(dú)立運(yùn)行

替換外部服務(wù)調(diào)用或一些速度較慢的操作,提升測(cè)試用例的運(yùn)行速度

模擬異常邏輯,異常邏輯往往很難觸發(fā),通過(guò)Mock可以人為的控制觸發(fā)異常邏輯

團(tuán)隊(duì)可以并行工作

1.3 實(shí)現(xiàn)方式

接口mock實(shí)現(xiàn)的核心思想是搭建一個(gè)Mock Server,通過(guò)該服務(wù)提供mock接口。常見(jiàn)的實(shí)現(xiàn)方式有:

使用第三方mock平臺(tái)

自己開(kāi)發(fā)mock服務(wù)

使用mock框架搭建mock服務(wù)

2. Moco框架

2.1 Moco簡(jiǎn)介

Moco是一個(gè)簡(jiǎn)單搭建模擬服務(wù)器的框架(工具),可以模擬http、https、socket等協(xié)議

基于Java開(kāi)發(fā)的開(kāi)源項(xiàng)目,Github地址:https://github.com/dreamhead/moco

原理:Moco會(huì)根據(jù)一些配置,啟動(dòng)一個(gè)真正的HTTP服務(wù)(會(huì)監(jiān)聽(tīng)本地的某個(gè)端口)。當(dāng)發(fā)起的請(qǐng)求滿(mǎn)足某個(gè)條件時(shí),就會(huì)返回指定的響應(yīng)數(shù)據(jù)。

2.2 環(huán)境搭建

Moco運(yùn)行時(shí)所需環(huán)境包括:

Java運(yùn)行環(huán)境

安裝JDK,并配置環(huán)境變量

moco-runner-1.1.0-standalone.jar

下載地址:https://repo1.maven.org/maven2/com/github/dreamhead/moco-runner/1.1.0/moco-runner-1.1.0-standalone.jar


2.3 如何運(yùn)行Moco

1>創(chuàng)建配置文件

創(chuàng)建配置文件test.json,并輸入如下內(nèi)容:

[

    {

        "description": "首頁(yè)",

        "request": {

            "uri": "/index"

        },

        "response": {

            "text": "hello world"

        }

    }

]

2>啟動(dòng)http服務(wù)

啟動(dòng)命令:

java -jar <path-to-moco-runner> http -p <monitor-port> -c <configuration-file>

示例:

java -jar moco-runner-1.1.0-standalone.jar http -p 9090 -c test.json

3>接口訪問(wèn)

打開(kāi)瀏覽器,在瀏覽器地址欄中輸入:http://localhost:9090/index

1594714262878_接口Mock測(cè)試01.jpg


2.4 Moco常用配置參數(shù)

1.定義請(qǐng)求方式,通過(guò)method參數(shù)定義

[

    {

        "description": "首頁(yè)",

        "request": {

            "uri": "/index",

            "method": "post"

    },

        "response": {

            "text": "hello world"

        }

    }

]


2.定義請(qǐng)求參數(shù),通過(guò)queries參數(shù)定義

[

    {

        "description": "首頁(yè)",

        "request": {

            "uri": "/index",

            "method": "get",

            "queries": {

                "area": "010",

                "kw": "hello"

            }

    },

    "response": {

        "text": "hello world"

    }

    }

]



3.定義請(qǐng)求頭,通過(guò)headers參數(shù)定義

[

    {

        "description": "登錄",

        "request": {

            "uri": "/login",

            "method": "post",

            "headers": {

                "area": "010"

            }

        },

        "response": {

            "text": "hello world"

        }

    }

]


4、定義表單請(qǐng)求體,通過(guò)`forms`參數(shù)定義

[

    {

        "description": "登錄",

        "request": {

            "uri": "/login",

            "method": "post",

            "forms": {

                "username": "tom",

                "password": "123456"

        }

    },

    "response": {

        "text": "login success"

        }

    }

]


5、定義JSON請(qǐng)求體,通過(guò)`json`參數(shù)定義

[

    {

        "description": "登錄",

        "request": {

            "uri": "/login",

            "method": "post",

            "headers": {

                "Content-Type": "application/json"

            },

            "json": {

                "username": "tom",

                "password": "123456"

            }

        },

        "response": {

            "text": "hello world66666"

        }

    }

]



6、定義HTTP響應(yīng)狀態(tài)碼,通過(guò)`status`參數(shù)定義

[

    {

        "description": "首頁(yè)",

        "request": {

            "uri": "/index2"

        },

        "response": {

            "status": 500,

            "text": "error"

        }

    }

]


7、定義JSON響應(yīng)數(shù)據(jù),通過(guò)json參數(shù)定義

[

    {

        "description": "登錄",

        "request": {

            "uri": "/login"

        },

        "response": {

            "headers": {

                "Content-Type": "application/json;charset=UTF-8"

            },

        "json": {

            "code": "10000",

            "msg": "操作成功",

            "data": {

                "uid": 2,

                "token": "xxx"

            }

        }

    }

    }

]


2.5 Moco引入配置文件

moco支持在配置文件中引入其他配置文件,這樣可以分服務(wù)/模塊定義配置文件,便于對(duì)配置文件的管理。

實(shí)現(xiàn)步驟:

1.分服務(wù)/模塊定義配置文件,如分別定義index.json和login.json文件

[

    {

        "description": "首頁(yè)",

        "request": {

            "uri": "/index"

        },

        "response": {

            "text": "hello world"

        }

    }

]


[

    {

        "description": "登錄",

        "request": {

            "uri": "/login"

        },

        "response": {

            "text": "success"

        }

    }

]


2.定義啟動(dòng)配置文件,如config.json并引入其他配置文件

[

    {"include": "index.json"},

    {"include": "login.json"}

]


3.啟動(dòng)服務(wù)

java -jar moco-runner-1.1.0-standalone.jar http -p 9090 -g config.json

注意:通過(guò)"-g config.json"指定配置文件


猜你喜歡:
軟件測(cè)試培訓(xùn)課程


分享到:
在線(xiàn)咨詢(xún) 我要報(bào)名
和我們?cè)诰€(xiàn)交談!