ホームページ > 記事 > ウェブフロントエンド > Python APIの自動テストを実装する方法
今回は、PythonのAPI自動テストを実装する方法と、PythonのAPI自動テストを実装する際の注意点について説明します。以下は実践的なケースですので、見てみましょう。
誰もがプロジェクトのプロジェクトテストの重要性を知っているはずです。Python を書く友人は自動テストスクリプトを書いているはずです。
最近、私は会社のプロジェクトで API テストを担当しています。 API テストを整理するための簡単な例を次に示します。
まず、get、post、put メソッドを含む RESTful API インターフェイス ファイル testpost.py を作成します
#!/usr/bin/env python # -*- coding: utf-8 -*- from flask import request from flask_restful import Resource from flask_restful import reqparse test_praser = reqparse.RequestParser() test_praser.add_argument('ddos') class TestPost(Resource): def post(self, PostData): data = request.get_json() user = User('wangjing') if data['ddos']: return {'hello': 'uese', "PostData": PostData, 'ddos': 'data[\'ddos\']'} return {'hello': 'uese', "PostData": PostData} def get(self, PostData): data = request.args if data and data['ddos']: return "hello" + PostData + data['ddos'], 200 return {'hello': 'uese', "PostData": PostData} def put(self, PostData): data = test_praser.parse_args() if data and data['ddos']: return "hello" + PostData + data['ddos'], 200 return {'hello': 'uese', "PostData": PostData}
ps: request の値として、ここで一般的に使用される 3 つのメソッドを定義しました:
次に、ブループリント (blueprint) ファイルを定義します init.pypost メソッド: request get_json()、API を呼び出すときに、値が json モードで渡されます
get メソッドと put メソッド: request.args または reqparse.RequestParser()、API を呼び出すときに、値が渡されますstring
#!/usr/bin/env python # -*- coding: utf-8 -*- from flask import Blueprint from flask_restful import Api from testpost import TestPost testPostb = Blueprint('testPostb', name) api = Api(testPostb) api.add_resource(TestPost, '/<string:PostData>/postMeth')次に、テスト スクリプト testPostM.py
#!/usr/bin/env python # -*- coding: utf-8 -*- import unittest import json from secautoApp.api.testPostMeth import api from flask import url_for from run import app from secautoApp.api.testPostMeth import TestPost headers = {'Accept': 'application/json', 'Content-Type': 'application/json' } class APITestCase(unittest.TestCase): def setUp(self): # self.app = create_app(os.getenv("SECAUTOCFG") or 'default') self.app = app # self.app_context = self.app.app_context() # self.app_context.push() self.client = self.app.test_client() # # def tearDown(self): # self.app_context.pop() def test_post(self): # with app.test_request_context(): response = self.client.get(api.url_for(TestPost, PostData='adb', ddos='123')) self.assertTrue(response.status_code == 200) response = self.client.get(url_for('testPostb.testpost', PostData='adb', ddos='123')) self.assertTrue(response.status_code == 200) self.assertTrue(json.loads(response.data)['PostData'] =='adb') response = self.client.post(url_for('testPostb.testpost', PostData='adb'), headers=headers, data=json.dumps({"ddos": '123'})) print json.loads(response.data) self.assertTrue(response.status_code == 200) response = self.client.put(url_for('testPostb.testpost', PostData='adb', ddos='123')) self.assertTrue(json.loads(response.data) == 'helloadb123') response = self.client.put(url_for('testPostb.testpost', PostData='adb')) print json.loads(response.data)['PostData'] self.assertTrue(response.status_code == 200)を記述します。 ps: 呼び出される API の URL は主に flask_restful の api.url_for または flask の url_for を使用します。
flask_restful api.url_for の説明
api.url_for (TestPost, PostData='adb') の具体的な使用法、ここでの TestPost は、API ブループリント内にあるため、Restful API インターフェイス ファイルで定義されたクラスを指します。 api.add_resource(TestPost, '//postMeth') を通じてクラスを追加することで定義されています
flask の url_for の使用手順
url_for('testPostb.testpost', PostData='adb', ddos =' 123')、文字列テスト スクリプトを開始します:testPostb 内の 'testPostb.testpost' はブループリントの名前を参照します。つまり、Blueprint('testPostb', name) の testPostb = Blueprint('testPostb', name) です。
testpost は、ブループリント内のエンドポイントのエンドポイント名を指します。flask_restful では、api.add_resource(TestPost, '//postMeth') のクラス名 TestPost の小文字を指します。
C:\secauto3>python run.py test test_post (testPostM.APITestCase) ... ok ---------------------------------------------------------------------- Ran 1 test in 0.056s OK
簡単な要約: url_for によって渡される値とリクエストの値の間には対応する関係があります。最後のものは flask_restful のエンドポイント メソッドであり、api.add_resource のクラス名の小文字である必要があります。
この記事の事例を読んだ後は、この方法を習得したと思います。さらに興味深い情報については、php 中国語 Web サイトの他の関連記事に注目してください。 推奨読書:Pythonでunittestテストインターフェイスを使用する手順の詳細な説明
以上がPython APIの自動テストを実装する方法の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。