feat: Add response validation functions and examples for API tests
This commit is contained in:
@@ -56,6 +56,86 @@ write_test_log() {
|
||||
fi
|
||||
}
|
||||
|
||||
# ==============================================================================
|
||||
# Response Validation Functions
|
||||
# ==============================================================================
|
||||
|
||||
# Validate that a JSON field exists and optionally matches a value
|
||||
# Usage: assert_json_field "response_json" "field_path" "expected_value" (optional)
|
||||
# Example: assert_json_field "$response" ".data.id"
|
||||
# Example: assert_json_field "$response" ".data.name" "Test User"
|
||||
assert_json_field() {
|
||||
local json_response=$1
|
||||
local field_path=$2
|
||||
local expected_value=$3
|
||||
|
||||
if ! echo "$json_response" | jq -e . >/dev/null 2>&1; then
|
||||
echo "ERROR: Response is not valid JSON"
|
||||
return 1
|
||||
fi
|
||||
|
||||
local actual_value
|
||||
actual_value=$(echo "$json_response" | jq -r "$field_path // \"__FIELD_NOT_FOUND__\"")
|
||||
|
||||
if [[ "$actual_value" == "__FIELD_NOT_FOUND__" || "$actual_value" == "null" ]]; then
|
||||
echo "ERROR: Field '$field_path' not found in response"
|
||||
return 1
|
||||
fi
|
||||
|
||||
if [[ -n "$expected_value" ]]; then
|
||||
if [[ "$actual_value" != "$expected_value" ]]; then
|
||||
echo "ERROR: Field '$field_path' expected '$expected_value' but got '$actual_value'"
|
||||
return 1
|
||||
fi
|
||||
fi
|
||||
|
||||
return 0
|
||||
}
|
||||
|
||||
# Validate that a JSON response contains specific key-value pairs
|
||||
# Usage: assert_json_contains "response_json" "jq_filter" "description"
|
||||
# Example: assert_json_contains "$response" '.data | length > 0' "data array is not empty"
|
||||
assert_json_contains() {
|
||||
local json_response=$1
|
||||
local jq_filter=$2
|
||||
local description=$3
|
||||
|
||||
if ! echo "$json_response" | jq -e . >/dev/null 2>&1; then
|
||||
echo "ERROR: Response is not valid JSON"
|
||||
return 1
|
||||
fi
|
||||
|
||||
if ! echo "$json_response" | jq -e "$jq_filter" >/dev/null 2>&1; then
|
||||
echo "ERROR: Validation failed - $description (filter: $jq_filter)"
|
||||
return 1
|
||||
fi
|
||||
|
||||
return 0
|
||||
}
|
||||
|
||||
# Validate that response has expected structure
|
||||
# Usage: assert_response_structure "response_json" "required_fields..."
|
||||
# Example: assert_response_structure "$response" "data" "version"
|
||||
assert_response_structure() {
|
||||
local json_response=$1
|
||||
shift
|
||||
local required_fields=("$@")
|
||||
|
||||
if ! echo "$json_response" | jq -e . >/dev/null 2>&1; then
|
||||
echo "ERROR: Response is not valid JSON"
|
||||
return 1
|
||||
fi
|
||||
|
||||
for field in "${required_fields[@]}"; do
|
||||
if ! echo "$json_response" | jq -e "has(\"$field\")" >/dev/null 2>&1; then
|
||||
echo "ERROR: Required field '$field' not found in response"
|
||||
return 1
|
||||
fi
|
||||
done
|
||||
|
||||
return 0
|
||||
}
|
||||
|
||||
test_api_endpoint() {
|
||||
local test_name=$1
|
||||
local method=$2
|
||||
@@ -63,6 +143,7 @@ test_api_endpoint() {
|
||||
local expected_status=$4
|
||||
local body=$5
|
||||
local require_auth=$6
|
||||
local validation_func=$7 # Optional: function to validate response content
|
||||
|
||||
local headers=(-H "Content-Type: application/json")
|
||||
if [[ "$require_auth" = true && -n "$AUTH_TOKEN" ]]; then
|
||||
@@ -91,10 +172,32 @@ test_api_endpoint() {
|
||||
local status="FAIL"
|
||||
local error_msg=""
|
||||
|
||||
# First check HTTP status code
|
||||
if [[ "$http_status" =~ ^[0-9]+$ ]] && [ "$http_status" -eq "$expected_status" ]; then
|
||||
# If validation function is provided, run it
|
||||
if [[ -n "$validation_func" && "$(type -t "$validation_func")" == "function" ]]; then
|
||||
local validation_result
|
||||
validation_result=$($validation_func "$response_body" 2>&1)
|
||||
local validation_exit=$?
|
||||
|
||||
if [ $validation_exit -eq 0 ]; then
|
||||
status="PASS"
|
||||
((PASS_COUNT++))
|
||||
write_test_log "SUCCESS" "✓ $test_name - Sukses (Status: $http_status, Waktu: ${duration}ms)"
|
||||
else
|
||||
status="FAIL"
|
||||
((FAIL_COUNT++))
|
||||
error_msg="Response validation failed: $validation_result"
|
||||
write_test_log "ERROR" "✗ $test_name - Gagal: $error_msg"
|
||||
write_test_log "ERROR" " Response Body: $response_body"
|
||||
FAILED_TESTS_SUMMARY+=("✗ $test_name - $error_msg")
|
||||
fi
|
||||
else
|
||||
# No validation function, just check status code
|
||||
status="PASS"
|
||||
((PASS_COUNT++))
|
||||
write_test_log "SUCCESS" "✓ $test_name - Sukses (Status: $http_status, Waktu: ${duration}ms)"
|
||||
fi
|
||||
else
|
||||
status="FAIL"
|
||||
((FAIL_COUNT++))
|
||||
|
||||
@@ -0,0 +1,266 @@
|
||||
#!/bin/bash
|
||||
|
||||
# ==============================================================================
|
||||
# Example: API Tests with Response Content Validation
|
||||
# ==============================================================================
|
||||
|
||||
source "$(dirname "$0")/../common/test-common.sh"
|
||||
|
||||
# ==============================================================================
|
||||
# Validation Functions Examples
|
||||
# ==============================================================================
|
||||
|
||||
# Example 1: Validate login response structure
|
||||
validate_login_response() {
|
||||
local response=$1
|
||||
|
||||
# Check required structure
|
||||
assert_response_structure "$response" "data" "version" || return 1
|
||||
|
||||
# Check token exists
|
||||
assert_json_field "$response" ".data.token.access_token" || return 1
|
||||
|
||||
# Check user data exists
|
||||
assert_json_field "$response" ".data.user.id" || return 1
|
||||
assert_json_field "$response" ".data.user.email" || return 1
|
||||
|
||||
# Check version format
|
||||
assert_json_contains "$response" '.version | test("^[0-9]+\\.[0-9]+\\.[0-9]+$")' "version has semver format" || return 1
|
||||
|
||||
return 0
|
||||
}
|
||||
|
||||
# Example 2: Validate user list response
|
||||
validate_user_list_response() {
|
||||
local response=$1
|
||||
|
||||
# Check response structure
|
||||
assert_response_structure "$response" "data" "meta" "version" || return 1
|
||||
|
||||
# Check data is array
|
||||
assert_json_contains "$response" '.data | type == "array"' "data is array" || return 1
|
||||
|
||||
# Check meta has pagination
|
||||
assert_json_field "$response" ".meta.page" || return 1
|
||||
assert_json_field "$response" ".meta.per_page" || return 1
|
||||
|
||||
return 0
|
||||
}
|
||||
|
||||
# Example 3: Validate user creation response
|
||||
validate_user_created() {
|
||||
local response=$1
|
||||
|
||||
# Check success message
|
||||
assert_json_field "$response" ".message" || return 1
|
||||
|
||||
# Optionally check specific message text
|
||||
local message
|
||||
message=$(echo "$response" | jq -r '.message')
|
||||
if [[ ! "$message" =~ "Success" ]]; then
|
||||
echo "ERROR: Message should contain 'Success', got: $message"
|
||||
return 1
|
||||
fi
|
||||
|
||||
return 0
|
||||
}
|
||||
|
||||
# Example 4: Validate specific field values
|
||||
validate_mentor_login() {
|
||||
local response=$1
|
||||
|
||||
# Check user role is Mentor
|
||||
assert_json_field "$response" ".data.user.role.name" "Mentor" || return 1
|
||||
|
||||
# Check user has permissions
|
||||
assert_json_contains "$response" '.data.user.role.permissions | length > 0' "mentor has permissions" || return 1
|
||||
|
||||
return 0
|
||||
}
|
||||
|
||||
# Example 5: Validate error response
|
||||
validate_error_response() {
|
||||
local response=$1
|
||||
|
||||
# Check error field exists
|
||||
assert_json_field "$response" ".error" || return 1
|
||||
|
||||
# Check version exists even in error
|
||||
assert_json_field "$response" ".version" || return 1
|
||||
|
||||
return 0
|
||||
}
|
||||
|
||||
# Example 6: Validate pagination metadata
|
||||
validate_pagination() {
|
||||
local response=$1
|
||||
local expected_page=$2
|
||||
local expected_per_page=$3
|
||||
|
||||
# Check pagination values
|
||||
assert_json_field "$response" ".meta.page" "$expected_page" || return 1
|
||||
assert_json_field "$response" ".meta.per_page" "$expected_per_page" || return 1
|
||||
|
||||
return 0
|
||||
}
|
||||
|
||||
# ==============================================================================
|
||||
# Test Cases with Validation
|
||||
# ==============================================================================
|
||||
|
||||
test_auth_with_validation() {
|
||||
printf "\n${CYAN}=== Testing Authentication with Response Validation ===${NC}\n"
|
||||
|
||||
# Test 1: Valid login with full response validation
|
||||
local login_data
|
||||
login_data=$(jq -n '{email: "admin@example.com", password: "password"}')
|
||||
test_api_endpoint \
|
||||
"Login with Response Validation" \
|
||||
"POST" \
|
||||
"/v1/auth/login" \
|
||||
200 \
|
||||
"$login_data" \
|
||||
false \
|
||||
validate_login_response
|
||||
|
||||
# Test 2: Invalid login with error validation
|
||||
local invalid_login
|
||||
invalid_login=$(jq -n '{email: "invalid@example.com", password: "wrong"}')
|
||||
test_api_endpoint \
|
||||
"Invalid Login with Error Validation" \
|
||||
"POST" \
|
||||
"/v1/auth/login" \
|
||||
401 \
|
||||
"$invalid_login" \
|
||||
false \
|
||||
validate_error_response
|
||||
|
||||
# Test 3: Mentor login with role validation
|
||||
local mentor_login
|
||||
mentor_login=$(jq -n '{email: "mentor@example.com", password: "password"}')
|
||||
test_api_endpoint \
|
||||
"Mentor Login with Role Validation" \
|
||||
"POST" \
|
||||
"/v1/auth/login-mentor" \
|
||||
200 \
|
||||
"$mentor_login" \
|
||||
false \
|
||||
validate_mentor_login
|
||||
}
|
||||
|
||||
test_users_with_validation() {
|
||||
printf "\n${CYAN}=== Testing Users with Response Validation ===${NC}\n"
|
||||
|
||||
get_auth_token
|
||||
|
||||
# Test 1: Get users list with structure validation
|
||||
test_api_endpoint \
|
||||
"GET Users with List Validation" \
|
||||
"GET" \
|
||||
"/v1/users" \
|
||||
200 \
|
||||
"" \
|
||||
true \
|
||||
validate_user_list_response
|
||||
|
||||
# Test 2: Get users with pagination validation
|
||||
validate_users_page1() {
|
||||
validate_pagination "$1" "1" "10"
|
||||
}
|
||||
test_api_endpoint \
|
||||
"GET Users Page 1 with Pagination Validation" \
|
||||
"GET" \
|
||||
"/v1/users?page=1&limit=10" \
|
||||
200 \
|
||||
"" \
|
||||
true \
|
||||
validate_users_page1
|
||||
|
||||
# Test 3: Create user with success message validation
|
||||
local new_user
|
||||
new_user=$(jq -n '{
|
||||
fullname: "Test User with Validation",
|
||||
email: "testvalidation@example.com",
|
||||
password: "Password@123",
|
||||
role_id: "5713cb37-dc02-4e87-8048-d7a41d352059"
|
||||
}')
|
||||
test_api_endpoint \
|
||||
"Create User with Success Validation" \
|
||||
"POST" \
|
||||
"/v1/users/create" \
|
||||
201 \
|
||||
"$new_user" \
|
||||
true \
|
||||
validate_user_created
|
||||
}
|
||||
|
||||
# ==============================================================================
|
||||
# Inline Validation Examples
|
||||
# ==============================================================================
|
||||
|
||||
test_inline_validation() {
|
||||
printf "\n${CYAN}=== Testing with Inline Validation Functions ===${NC}\n"
|
||||
|
||||
get_auth_token
|
||||
|
||||
# Inline validation function for role detail
|
||||
validate_role_detail() {
|
||||
local response=$1
|
||||
assert_response_structure "$response" "data" "version" || return 1
|
||||
assert_json_field "$response" ".data.id" || return 1
|
||||
assert_json_field "$response" ".data.name" || return 1
|
||||
assert_json_contains "$response" '.data.permissions | type == "array"' "has permissions array" || return 1
|
||||
return 0
|
||||
}
|
||||
|
||||
test_api_endpoint \
|
||||
"GET Role Detail with Inline Validation" \
|
||||
"GET" \
|
||||
"/v1/roles/detail/5713cb37-dc02-4e87-8048-d7a41d352059" \
|
||||
200 \
|
||||
"" \
|
||||
true \
|
||||
validate_role_detail
|
||||
|
||||
# Another inline example
|
||||
validate_gacha_items() {
|
||||
local response=$1
|
||||
assert_json_contains "$response" '.data | type == "array"' "data is array" || return 1
|
||||
assert_json_contains "$response" '.data | length > 0' "data has items" || return 1
|
||||
return 0
|
||||
}
|
||||
|
||||
test_api_endpoint \
|
||||
"GET Gacha Items with Data Validation" \
|
||||
"GET" \
|
||||
"/v1/gacha/items?page=1&per_page=10" \
|
||||
200 \
|
||||
"" \
|
||||
true \
|
||||
validate_gacha_items
|
||||
}
|
||||
|
||||
# ==============================================================================
|
||||
# Run Tests
|
||||
# ==============================================================================
|
||||
|
||||
main() {
|
||||
printf "${CYAN}"
|
||||
printf "╔═══════════════════════════════════════════════════════════════════════╗\n"
|
||||
printf "║ API Tests with Response Content Validation Examples ║\n"
|
||||
printf "╚═══════════════════════════════════════════════════════════════════════╝\n"
|
||||
printf "${NC}\n"
|
||||
|
||||
test_auth_with_validation
|
||||
test_users_with_validation
|
||||
test_inline_validation
|
||||
|
||||
print_test_summary
|
||||
|
||||
[ "$FAIL_COUNT" -eq 0 ] && exit 0 || exit 1
|
||||
}
|
||||
|
||||
# Run if executed directly
|
||||
if [[ "${BASH_SOURCE[0]}" == "${0}" ]]; then
|
||||
main
|
||||
fi
|
||||
Reference in New Issue
Block a user