Python處理Excel測試用例數據導入到數據庫中以及遇到問題總結

想要將Excel編寫好的接口測試用例都插入數據庫表中,因而使用Python來實現對應的操做,具體的思路以下圖所示:mysql

實現的方法以下:sql

    def import_excel(self): try: case_data_list = [] case_src = open_workbook(config.src_path + '/case/接口測試用例.xls', formatting_info=True) case_sheet = case_src.sheet_by_index(1) for rows in range(7, case_sheet.nrows): case_data = case_sheet.row_values(rows) # case_data_list = case_data_list + ',' + str(case_data)
                # print("輸出每一條測試用例的數據:%s" % case_data)
                name_interface = case_data[3]   # 用例名稱
                exe_level = int(case_data[0])   # 用例執行等級
                exe_mode = case_data[5]   # 請求方式
                header_interface = ''    # 請求頭文件

                if exe_mode == 'POST' or exe_mode == 'post':     # 若是是post時設置請求頭類型
                    header_interface = '{\'content-type\':\'application/x-www-form-urlencoded\'}' url_interface = case_data[6]   # 接口地址
                params_interface = case_data[7]   # 接口請求參數
                data_list = case_data[9]    # 返回結果集,接口預期code返回值
                # print(data_list)
                list_response = [] data_key = self.__recur_params(data_list, list_response)   # 完整性參數,待比較參數集
                code_to_compare = data_key[0]   # 待比較的code參數
                data_code = ast.literal_eval(data_list)    # 將字符類型轉爲字典類型
                code_expect = data_code[code_to_compare]     # 接口預期code返回值
                # print("輸出返回結果中的參數%s" % data_key)

                ''' print(type(name_interface), type(exe_level), type(exe_mode), type(url_interface), type(header_interface), type(params_interface), type(code_to_compare), type(code_expect), type(data_key)) '''

                # 插入測試用例數據到數據庫中
                test_db = opmysql.OperationDbInterface() insert_list = (name_interface, exe_level, exe_mode, url_interface, header_interface, params_interface, code_to_compare, code_expect, data_key) case_data_list.append(tuple(insert_list)) # print(insert_sql, insert_list)
                # print(insert_list)
            print(case_data_list) insert_sql = "INSERT INTO case_interface(`name_interface`,`exe_level`,`exe_mode`,`url_interface`," \ "`header_interface`,`params_interface`,`result_interface`,`code_to_compare`," \ "`code_actual`,`code_expect`,`result_code_compare`,`params_to_compare`,`params_actual`," \ "`result_params_compare`,`case_status`,`create_time`,`update_time`) VALUES " \ "(%s,%s,%s,%s,%s,%s,'',%s,'',%s,NULL,\"%s\",'[]',NULL,1,NOW(),NOW());" insert_case = test_db.insert_data(insert_sql, case_data_list) print(insert_case['data'], insert_case['message'])

在編寫的過程當中遇到的問題記錄:數據庫

問題1:TypeError: string indices must be integersjson

錯誤緣由分析:string indices must be integers 字符串索引必須是整數,再定位到對應的代碼語句code_expect = data_code[code_to_compare]中,原本獲取時須要的是字典類型,看錯誤提示說的字符串類型,查看參數對應的類型時,確實是字符類型
解決方法:須要將字符串類型轉爲字典類型,使用ast庫中的literal_eval方法將字符串類型轉爲字典類型(字符類型轉爲字典類型還能夠使用eval()或json.loads()方法)app

data_code = ast.literal_eval(data_list)    # 將字符類型轉爲字典類型
code_expect = data_code[code_to_compare]     # 接口預期code返回值

問題2:TypeError: expected string or bytes-like object函數

錯誤緣由分析:expected string or bytes-like object 須要字符串或相似字節的對象,查看對應的語句排查了很久看不出問題,而排查時數據類型又都正常,list集合中的每一個參數的類型也排查過都沒問題,最後定位到調用的方法時,剛開始也沒發現問題,最後調試時發現傳入的參數寫反了,第一個參數是插入語句,第二個參數纔是插入數據,寫反了,致使一直報錯post

解決辦法:將參數調整正確就能夠解決問題測試

問題3:TypeError: not all arguments converted during string formattingurl

錯誤緣由分析: not all arguments converted during string formatting不是全部參數都在字符串格式化期間轉換,緣由是插入語句中每一個要插入的數據佔位符,與後面插入的數據不對應。根據緣由一個個參數進行排查,發現調用對應的函數後將一個元組的數據當成了一個字符串進行傳入,致使不對應。spa

解決辦法:將元組加入到列表中,再經過列表的形式傳參,調用函數時,對應的佔位符與數據能匹配好,能正常操做了,問題解決

問題4:TypeError: not enough arguments for format string

錯誤緣由分析:not enough arguments for format string 格式字符串的參數不足,查看對應的語句print輸出時報錯,緣由是佔位符與後面的參數不對應,後面的參數少了

解決辦法:加上對應的參數值就能夠解決問題

相關文章
相關標籤/搜索