ry.yamafuji 47d1f0b982
Some checks failed
Python Test / python-test (push) Failing after 9s
テストとロガーを追加します
2025-12-06 03:38:24 +09:00

19 lines
503 B
Python

import pytest
import requests
BASEURL = "http://localhost:8080/"
class TestIntegrationRequest:
"""統合テスト: 実際のCloud Functionエンドポイントにリクエストを送信"""
def test_get_request_default(self):
"""GETリクエスト: デフォルトパラメータ"""
response = requests.get(BASEURL)
assert response.status_code == 200
data = response.json()
assert "message" in data
assert data["message"] == "Hello, World!"