Python自动化测试(2) :thrift到json转换

Python自动化模拟构造数据的过程中,经常会遇到复杂的json转换为thrift结构的情况,下面统一转化的脚本就能帮助解决问题:

def json_thrift_convertor2(src_json, dest_struct, ignore_unknow_key=False):
    """
        @src_json:    dict loads from user pass json body
        @dest_struct: final thrift type after parse
        @ignore_unknow_key: default False, if one key in src_json but not
            in thrift proto define, throw an exception(False) or just
            ignore(True)
    """
    try:
        for

你可能感兴趣的:(测试相关)