内射老阿姨1区2区3区4区_久久精品人人做人人爽电影蜜月_久久国产精品亚洲77777_99精品又大又爽又粗少妇毛片

接口測試的幾種組織形式

注冊(cè)接口測試

專注于為中小企業(yè)提供成都網(wǎng)站設(shè)計(jì)、成都網(wǎng)站制作服務(wù),電腦端+手機(jī)端+微信端的三站合一,更高效的管理,為中小企業(yè)曾都免費(fèi)做網(wǎng)站提供優(yōu)質(zhì)的服務(wù)。我們立足成都,凝聚了一批互聯(lián)網(wǎng)行業(yè)人才,有力地推動(dòng)了1000多家企業(yè)的穩(wěn)健成長,幫助中小企業(yè)通過網(wǎng)站建設(shè)實(shí)現(xiàn)規(guī)模擴(kuò)充和轉(zhuǎn)變。

1、單個(gè)接口測試
#encoding=utf-8
import requests
import json

data = {'username': 'test001', 'password': 'wulaoshi12345', 'email': 'wulaoshi@qq.com'}

data = json.dumps(data)

res =  requests.post('http://39.106.41.11:8080/register/',data)
print(res.text)
print(res.status_code)
print(res.json())

2、單個(gè)接口帶斷言
#encoding=utf-8
import requests
import json
import re

pattern = re.compile(r"{'code': '00', 'userid': \d+}")
data = {'username': 'test003', 'password': 'wulaoshi12345', 'email': 'wulaoshi@qq.com'}

data = json.dumps(data)

res =  requests.post('http://39.106.41.11:8080/register/',data)

print(res.text)
print(res.status_code)
print(res.json())
print(str(res.json()))
assert pattern.match(str(res.json()))

3、使用隨機(jī)參數(shù)
#encoding=utf-8
import requests
import json,random
import re,string

username = [string.ascii_letters[random.randint(0,25)] for i in range(8)]
username = "".join(username)

pattern = re.compile(r"{'code': '00', 'userid': \d+}")
data = {'username': username, 'password': 'wulaoshi12345', 'email': 'wulaoshi@qq.com'}

data = json.dumps(data)

res =  requests.post('http://39.106.41.11:8080/register/',data)

print(res.text)
print(res.status_code)
print(res.json())
print(str(res.json()))
assert pattern.match(str(res.json()))

4、使用文件的的唯一數(shù)字參數(shù)使用戶唯一
#encoding=utf-8
import requests
import json,random
import re,string

with open("e:\\python\\c.txt","r+") as file_obj:
    username = file_obj.read().strip()
    print(username)
    file_obj.seek(0,0)
    file_obj.write(str(int(username) + 1))

username = "hhq" + username

pattern = re.compile(r"{'code': '00', 'userid': \d+}")
data = {'username': username, 'password': 'wulaoshi12345', 'email': 'wulaoshi@qq.com'}

data = json.dumps(data)

res =  requests.post('http://39.106.41.11:8080/register/',data)

print(res.text)
print(res.status_code)
print(res.json())
print(str(res.json()))
assert pattern.match(str(res.json()))

5、封裝常用函數(shù)
#encoding=utf-8
import requests
import json,random
import re,string

def post_request(url,data):
    res =  requests.post(url,data)
    return res

def get_response(res):
    print(res.text)
    print(res.status_code)
    print(res.json())
    print(str(res.json()))

def assert_response(res):
    pattern = re.compile(r"{'code': '00', 'userid': \d+}")

    assert pattern.match(str(res.json()))

with open("e:\\python\\c.txt","r+") as file_obj:
    username = file_obj.read().strip()
    print(username)
    file_obj.seek(0,0)
    file_obj.write(str(int(username) + 1))

username = "hhq" + username

url = 'http://39.106.41.11:8080/register/'
data = {'username': username, 'password': 'wulaoshi12345', 'email': 'wulaoshi@qq.com'}
data = json.dumps(data)

res = post_request(url,data)

get_response(res)

assert_response(res)

6、配置數(shù)據(jù)和程序的分離
Conf.py

url = 'http://39.106.41.11'
port = 8080
path = "register"

request_url = url + ":" + str(port) + "/" + path + "/"

#encoding=utf-8
import requests
import json,random
import re,string
from conf import *

def post_request(url,data):
    res =  requests.post(url,data)
    return res

def get_response(res):
    print(res.text)
    print(res.status_code)
    print(res.json())
    print(str(res.json()))

def assert_response(res):
    pattern = re.compile(r"{'code': '00', 'userid': \d+}")

    assert pattern.match(str(res.json()))

with open("e:\\python\\c.txt","r+") as file_obj:
    username = file_obj.read().strip()
    print(username)
    file_obj.seek(0,0)
    file_obj.write(str(int(username) + 1))

username = "hhq" + username

data = {'username': username, 'password': 'wulaoshi12345', 'email': 'wulaoshi@qq.com'}
data = json.dumps(data)

res = post_request(request_url,data)

get_response(res)

assert_response(res)

7、配置數(shù)據(jù)、測試數(shù)據(jù)和程序的分離
Conf.py

url = 'http://39.106.41.11'
port = 8080
path = "register"

request_url = url + ":" + str(port) + "/" + path + "/"

Data.txt

{'username': username, 'password': 'wulaoshi12345', 'email': 'wulaoshi@qq.com'}|r"{'code': '00', 'userid': \d+}"

#encoding=utf-8
import requests
import json,random
import re,string
from conf import *

def post_request(url,data):
    res =  requests.post(url,data)
    return res

def get_response(res):
    print(res.text)
    print(res.status_code)
    print(res.json())
    print(str(res.json()))

def assert_response(res,reg_pattern):
    pattern = re.compile(reg_pattern)
    assert pattern.match(str(res.json()))

with open("e:\\python\\c.txt","r+") as file_obj:
    uniquenumber= file_obj.read().strip()
    print(username)
    file_obj.seek(0,0)
    file_obj.write(str(int(username) + 1))

username = "hhq" + uniquenumber

with open("e:\\python\\data.txt","r") as fp:
     line = fp.readline().strip()
     #數(shù)據(jù)從文件讀出全部是字符串,需要獲取原類型
     data = eval(line.split("|")[0])
     #這里是把{'username': username, 'password': 'wulaoshi12345', 、
     #'email': 'wulaoshi@qq.com'}賦值給data,以上的username會(huì)自動(dòng)傳入
     reg_pattern = eval(line.split("|")[1])

data = json.dumps(data)
print(data)

res = post_request(request_url,data)

get_response(res)

assert_response(res,reg_pattern)

網(wǎng)站欄目:接口測試的幾種組織形式
文章鏈接:http://m.rwnh.cn/article28/ipjccp.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供ChatGPT、網(wǎng)站建設(shè)、虛擬主機(jī)、移動(dòng)網(wǎng)站建設(shè)、品牌網(wǎng)站設(shè)計(jì)、響應(yīng)式網(wǎng)站

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)

手機(jī)網(wǎng)站建設(shè)
三河市| 盐山县| 九龙县| 齐齐哈尔市| 吕梁市| 玛多县| 太仆寺旗| 南召县| 谢通门县| 上蔡县| 日土县| 平湖市| 抚顺市| 台北县| 新干县| 信宜市| 醴陵市| 凯里市| 龙岩市| 左云县| 密山市| 普兰店市| 凌源市| 曲阜市| 黄梅县| 静安区| 凉城县| 陈巴尔虎旗| 阿巴嘎旗| 财经| 江永县| 长阳| 社会| 虞城县| 志丹县| 得荣县| 佛学| 师宗县| 长治县| 邢台县| 贡山|