aliyun-bdrc-backup-test
This skill runs a minimal smoke test against Aliyun BDRC backup, checking credential configuration, API reachability, and a safe read-only operation. It compiles skill scripts offline, executes a bounded API call, and logs results with timestamps to confirm basic functionality.
aliyun-bdrc-backup-test validates Aliyun BDRC backup authentication and API connectivity through a minimal smoke test.
AI-generated summary based on this skill's SKILL.md
Install
cinience/alicloud-skills/aliyun-bdrc-backup-test · repository language: Python
git clone https://github.com/cinience/alicloud-skills
cp -r alicloud-skills/tests/backup/aliyun-bdrc-backup-test ~/.claude/skills/aliyun-bdrc-backup-testnpx skillfed install cinience/alicloud-skills/aliyun-bdrc-backup-testFrequently asked questions
AI-generated answers based on this skill's SKILL.md and metadata
What does aliyun-bdrc-backup-test do?
aliyun-bdrc-backup-test runs a minimal smoke test against Aliyun BDRC backup, checking credential configuration, API reachability, and a safe read-only operation. It compiles skill scripts offline, executes a bounded API call, and logs results with timestamps to confirm basic functionality.
How do I run a smoke test for aliyun bdrc?
aliyun-bdrc-backup-test performs the smoke test by first validating your Aliyun BDRC backup credentials and authentication setup, then verifying script compilation and API reachability with a minimal read-only API call. Results are logged with timestamps for confirmation.
Can aliyun-bdrc-backup-test validate my backup credentials?
Yes. aliyun-bdrc-backup-test validates Aliyun BDRC backup credentials and error handling as part of its smoke test, confirming that your authentication configuration is correct before attempting any API operations.
What API operations does aliyun-bdrc-backup-test perform?
aliyun-bdrc-backup-test executes only safe read-only API calls with minimal scope against Aliyun BDRC backup, testing API reachability and basic functionality without making changes to your backup data.
Does aliyun-bdrc-backup-test work offline?
aliyun-bdrc-backup-test compiles skill scripts offline to verify compilation, but requires network connectivity to test Aliyun BDRC backup API reachability and perform the read-only API validation portion of the smoke test.
What license does aliyun-bdrc-backup-test use?
aliyun-bdrc-backup-test is released under the MIT license, allowing free use, modification, and distribution with minimal restrictions.
SKILL.md
rendered from the published skill — quoted content, verbatim
Category: test
BACKUP BDRC Smoke Test
Prerequisites
- Configure credentials with least privilege (
ALIBABACLOUD_ACCESS_KEY_ID/ALIBABACLOUD_ACCESS_KEY_SECRET/ optionalALIBABACLOUD_REGION_ID). - Target skill:
skills/backup/aliyun-bdrc-backup/.
Test Steps
1) Run offline script compilation check (no network needed):
python3 tests/common/compile_skill_scripts.py \
--skill-path skills/backup/aliyun-bdrc-backup \
--output output/aliyun-bdrc-backup-test/compile-check.json
2) Read the target skill SKILL.md and identify one lowest-risk read-only API (for example Describe* / List* / Get*).
3) Execute one minimal call with bounded scope (region + page size / limit).
4) Save request summary, response summary, and raw output under output/aliyun-bdrc-backup-test/.
5) If the call fails, record exact error code/message without guessing.
Pass Criteria
- Script compilation check passes (
compile-check.json.status=pass). - The selected read-only API call succeeds
(truncated - see the full file via the links below)
Read as markdown · JSON record · Browse the source repository
File tree — 1 file
tests/backup/aliyun-bdrc-backup-test/SKILL.md