Alicloud network alb test
Skill ulpi-io/plugin-marketplace/plugins/cinience/skills/alicloud-network-alb-test
Smoke test for Alibaba Cloud ALB skill. Validates SDK auth, script compilation, list instances, and health check flows.From its SKILL.md
npx -y skills add ulpi-io/plugin-marketplace --skill alicloud-network-alb-testAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
2 things to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
- 1 stars1 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
SKILL.md
1.7 KB, 387 tokens by cl100k_base, as published. Nobody here has run it
Category: test
ALB Smoke Test
Prerequisites
- AK/SK configured via environment variables (
ALICLOUD_ACCESS_KEY_ID/ALICLOUD_ACCESS_KEY_SECRET). - SDK installed:
pip install alibabacloud_alb20200616 alibabacloud_tea_openapi alibabacloud_credentials. - Target skill:
skills/network/slb/alicloud-network-alb/.
Test Steps
1. Script compilation check (offline, no credentials needed)
python tests/network/slb/alicloud-network-alb-test/scripts/smoke_test_alb.py --compile-only
Pass criteria: exits 0, all 28 scripts compile successfully.
2. Full smoke test (requires credentials and region)
python tests/network/slb/alicloud-network-alb-test/scripts/smoke_test_alb.py \
--region cn-hangzhou
Pass criteria:
status=passin JSON output.- Output file
output/alicloud-network-alb-test/smoke-test-result.jsonexists. list_instancesreturns valid JSON (even if empty).list_server_groupsreturns valid JSON (even if empty).list_aclsreturns valid JSON (even if empty).
3. Instance-specific test (requires a running ALB)
python tests/network/slb/alicloud-network-alb-test/scripts/smoke_test_alb.py \
--region cn-hangzhou --lb-id alb-xxx
Additional pass criteria:
get_instance_statusreturns tree output.list_listenersreturns valid response.check_health_statusreturns health data.
Result Template
- Date: YYYY-MM-DD
- Skill: skills/network/slb/alicloud-network-alb
- Conclusion: pass / fail
- Notes:
What ships with it: 2 files
27.3 KB alongside SKILL.md, 2 of them executable
scripts/
- e2e_test_alb.pyruns20.0 KB
- smoke_test_alb.pyruns7.2 KB