- Implemented tests for Events and Testimonials endpoints in `test-cms.sh` - Added common functions and variables for API testing in `test-common.sh` - Created tests for Mentor endpoints in `test-mentors.sh` - Developed tests for Gacha endpoints in `test-gacha.sh` - Established tests for Hackathon endpoints in `test-hackathon.sh` - Implemented tests for Authentication endpoints in `test-auth.sh` - Added tests for Roles and Permissions endpoints in `test-roles-permissions.sh` - Created tests for Teams endpoints in `test-teams.sh` - Developed tests for User Management endpoints in `test-users.sh`
78 lines
3.2 KiB
Bash
78 lines
3.2 KiB
Bash
#!/bin/bash
|
|
|
|
# ==============================================================================
|
|
# IAM Tests - Roles and Permissions Endpoints
|
|
# ==============================================================================
|
|
|
|
source "$(dirname "$0")/../common/test-common.sh"
|
|
|
|
test_roles_and_permissions() {
|
|
printf "\n${CYAN}=== Testing Roles and Permissions Endpoints ===${NC}\n"
|
|
|
|
# Roles
|
|
test_api_endpoint "GET Roles List" "GET" "/v1/roles" 200 "" true
|
|
test_api_endpoint "GET Roles (Paginated)" "GET" "/v1/roles?page=1&limit=10" 200 "" true
|
|
|
|
# Get role by ID - use correct endpoint /detail/{id}
|
|
local test_role_id="5713cb37-dc02-4e87-8048-d7a41d352059"
|
|
test_api_endpoint "GET Role By ID" "GET" "/v1/roles/detail/$test_role_id" 200 "" true
|
|
|
|
# Create role - use correct endpoint /create
|
|
local create_role_data=$(jq -n '{
|
|
name: "Test Role '$(date +%s)'",
|
|
description: "Auto-generated test role",
|
|
permissions: []
|
|
}')
|
|
local create_role_response=$(test_api_endpoint "POST Create Role" "POST" "/v1/roles/create" 201 "$create_role_data" true)
|
|
local created_role_id=$(echo "$create_role_response" | jq -r '.data.id // empty')
|
|
|
|
if [ -n "$created_role_id" ]; then
|
|
# Update role - use correct endpoint /update/{id}
|
|
local update_role_data=$(jq -n --arg ts "$EPOCHSECONDS" '{
|
|
name: ("Updated Test Role " + $ts),
|
|
description: "Updated description",
|
|
permissions: []
|
|
}')
|
|
test_api_endpoint "PUT Update Role" "PUT" "/v1/roles/update/$created_role_id" 200 "$update_role_data" true
|
|
|
|
# Delete role - use correct endpoint /delete/{id}
|
|
test_api_endpoint "DELETE Role" "DELETE" "/v1/roles/delete/$created_role_id" 200 "" true
|
|
fi
|
|
|
|
# Permissions
|
|
test_api_endpoint "GET Permissions List" "GET" "/v1/permissions" 200 "" true
|
|
test_api_endpoint "GET Permissions (Paginated)" "GET" "/v1/permissions?page=1&limit=10" 200 "" true
|
|
|
|
# Get permission by ID - use correct endpoint /detail/{id}
|
|
local test_perm_id="023e2dfe-93c3-4008-94a8-b5dff403f73b"
|
|
test_api_endpoint "GET Permission By ID" "GET" "/v1/permissions/detail/$test_perm_id" 200 "" true
|
|
|
|
# Create permission - use correct endpoint /create
|
|
local create_perm_data=$(jq -n '{
|
|
name: "Test Permission '$(date +%s)'",
|
|
description: "Auto-generated test permission"
|
|
}')
|
|
local create_perm_response=$(test_api_endpoint "POST Create Permission" "POST" "/v1/permissions/create" 201 "$create_perm_data" true)
|
|
local created_perm_id=$(echo "$create_perm_response" | jq -r '.data.id // empty')
|
|
|
|
if [ -n "$created_perm_id" ]; then
|
|
# Update permission - use correct endpoint /update/{id}
|
|
local update_perm_data=$(jq -n '{
|
|
name: "Updated Test Permission",
|
|
description: "Updated description"
|
|
}')
|
|
test_api_endpoint "PUT Update Permission" "PUT" "/v1/permissions/update/$created_perm_id" 200 "$update_perm_data" true
|
|
|
|
# Delete permission - use correct endpoint /delete/{id}
|
|
test_api_endpoint "DELETE Permission" "DELETE" "/v1/permissions/delete/$created_perm_id" 200 "" true
|
|
fi
|
|
}
|
|
|
|
# Run if executed directly
|
|
if [[ "${BASH_SOURCE[0]}" == "${0}" ]]; then
|
|
get_auth_token
|
|
test_roles_and_permissions
|
|
print_test_summary
|
|
[ "$FAIL_COUNT" -eq 0 ] && exit 0 || exit 1
|
|
fi
|