美文网首页
mock介绍

mock介绍

作者: 望月成三人 | 来源:发表于2019-01-16 19:03 被阅读13次

mock

(Python 标准库) 一个用于伪造测试的库

使用

  • 被测试的类
class Count():
   def add(self):
       pass
  • 用mock测试
from unittest import mock
import unittest
from modular import Count
class TestCount(unittest.TestCase):

   def test_add(self):
       count = Count()
       count.add = mock.Mock(return_value=13)
       result = count.add(8,5)
       self.assertEqual(result,13)


   if __name__ == '__main__':
       unittest.main() 

HTTPretty

Python 的 HTTP 请求 mock 工具,不支持py3

  • 安装
pip install HTTPretty
  • 使用
import requests
import httpretty

def test_one():
    httpretty.enable()  # enable HTTPretty so that it will monkey patch the socket module
    httpretty.register_uri(httpretty.GET, "http://yipit.com/",
                           body="Find the best daily deals")

    response = requests.get('http://yipit.com')

    assert response.text == "Find the best daily deals"

    httpretty.disable()  # disable afterwards, so that you will have no problems in code that uses that socket module
    httpretty.reset()    # reset H
  • post
import requests
from sure import expect
import httpretty


@httpretty.activate
def test_yipit_api_integration():
    httpretty.register_uri(httpretty.POST, "http://api.yipit.com/foo/",
                           body='{"repositories": ["HTTPretty", "lettuce"]}')

    response = requests.post('http://api.yipit.com/foo',
                            '{"username": "gabrielfalcao"}',
                            headers={
                                'content-type': 'text/json',
                            })

    expect(response.text).to.equal('{"repositories": ["HTTPretty", "lettuce"]}')
    expect(httpretty.last_request().method).to.equal("POST")
    expect(httpretty.last_request().headers['content-type']).to.equal('text/json')
  • 也可以使用正则
@httpretty.activate
def test_httpretty_should_allow_registering_regexes():
    u"HTTPretty should allow registering regexes"

    httpretty.register_uri(
        httpretty.GET,
        re.compile("api.yipit.com/v2/deal;brand=(\w+)"),
        body="Found brand",
    )

    response = requests.get('https://api.yipit.com/v2/deal;brand=GAP')
    expect(response.text).to.equal('Found brand')
    expect(httpretty.last_request().method).to.equal('GET')
    expect(httpretty.last_request().path).to.equal('/v1/deal;brand=GAP')

查看HTTPretty源码

httmock

针对 Python 2.6+ 和 3.2+ 生成 伪造请求的库。

  • 安装
pip install httmock
  • 使用
from httmock import urlmatch, HTTMock
import requests

@urlmatch(netloc=r'(.*\.)?google\.com$')
def google_mock(url, request):
    return 'Feeling lucky, punk?'

with HTTMock(google_mock):
    r = requests.get('http://google.com/')
print r.content  # 'Feeling lucky, punk?'
from httmock import all_requests, HTTMock
import requests

@all_requests
def response_content(url, request):
    return {'status_code': 200,
            'content': 'Oh hai'}

with HTTMock(response_content):
    r = requests.get('https://foo_bar')

print r.status_code
print r.content
  • cookie
from httmock import all_requests, response, HTTMock
import requests

@all_requests
def response_content(url, request):
    headers = {'content-type': 'application/json',
               'Set-Cookie': 'foo=bar;'}
    content = {'message': 'API rate limit exceeded'}
    return response(403, content, headers, None, 5, request)

with HTTMock(response_content):
    r = requests.get('https://api.github.com/users/whatever')

print r.json().get('message')
print r.cookies['foo']

查看httmock源码

相关文章

  • Mock Server 入门

    Mock Server介绍 什么是mock ? 我在去年的时候介绍一篇幅 python mock的基本使用,htt...

  • 接口测试Mock与HttpClient

    1.Mock框架 1.1mock介绍: mock可以模拟接口测试,通过运行mock框架的jar,快速搭建接口测试。...

  • 【JAVA UT】16、使用mock的3步骤

    前两节介绍了什么是mock。 这节介绍如何使用mock。 对于从没用过mock的读者,请先安装Mockito。它是...

  • mock介绍

    mock (Python 标准库) 一个用于伪造测试的库 使用 被测试的类 用mock测试 HTTPretty P...

  • ming_mock

    ming_mock 介绍 ming_mock是什么 mockjs对比 因为解决查询类的mock方案很多,增删改却很...

  • vue-使用mock来模拟数据

    1. Mock介绍 Mock官网地址Mock的github地址 2. 下载安装mockjs (1)打开项目目录(2...

  • iOS单元测试之OCMock的简介和使用

    一、OCMock简介 1.1、Mock介绍 作为一个动词,mock是模拟、模仿的意思;作为一个名词,mock是能够...

  • Mockito的使用

    Mockito的使用 1,Mockito的介绍 1.1 什么是mock测试? Mock测试就在测试过程中,对于某些...

  • python Mock的使用(1)

    什么是mock? mock在翻译过来有模拟的意思。这里要介绍的mock是辅助单元测试的一个模块。它允许您用模拟对象...

  • 优雅的模拟测试框架mock,用于Java的单元测试

    什么是mock ? mock在翻译过来是模拟的意思。这里要介绍的mock是辅助单元测试的一个模块。它允许你用模拟对...

网友评论

      本文标题:mock介绍

      本文链接:https://www.haomeiwen.com/subject/vgiddqtx.html