25 lines
847 B
Plaintext
25 lines
847 B
Plaintext
# -*- coding: utf-8 -*-
|
||
# 样例:复制为 test_real_api_contract.py;需 OPENCLAW_TEST_TARGET=real_api 且 ALLOW_REAL_API=1。
|
||
"""真实 HTTP API(只读优先;默认跳过)。"""
|
||
from __future__ import annotations
|
||
|
||
import unittest
|
||
|
||
from adapter_test_utils import should_skip_profile
|
||
|
||
|
||
class TestRealApiContractSample(unittest.TestCase):
|
||
def test_skip_by_default(self) -> None:
|
||
skip, reason = should_skip_profile("real_api", write=False)
|
||
if skip:
|
||
raise unittest.SkipTest(reason)
|
||
# 写操作示例(复制后使用):
|
||
# skip_w, _ = should_skip_profile("real_api", write=True)
|
||
# 需要 ALLOW_WRITE_ACTIONS=1
|
||
# 禁止在此文件写入真实 token;从 vault / 环境注入读取 endpoint。
|
||
self.assertFalse(skip)
|
||
|
||
|
||
if __name__ == "__main__":
|
||
unittest.main()
|