PayPal 구독 권한 시스템 테스트

현재 시간: 2025-08-23 12:42:06

1. 기본 함수 테스트

✅ check_premium_subscription 함수 로드됨
✅ has_download_permission 함수 로드됨

2. 테이블 존재 확인

테이블명: g5_subscription
✅ 구독 테이블 존재함

테이블 구조:

필드명타입NullKeyDefault
idbigint(20)NOPRI
mb_idvarchar(50)NOMUL
planenum('premium')NOpremium
termenum('monthly','yearly')NO
statusenum('active','cancelled','expired','incomplete','replaced')NOMULincomplete
paypal_sub_idvarchar(128)YESMUL
paypal_plan_idvarchar(128)YES
amountdecimal(10,2)NO
currencyvarchar(3)NOUSD
start_datedatetimeYES
next_billing_datedatetimeYES
created_atdatetimeYEScurrent_timestamp()
updated_atdatetimeYEScurrent_timestamp()

3. 권한 체크 테스트

3-1. 관리자 계정 'admin' 권한 테스트:

관리자 레벨: 10
구독 상태: ❌ 비활성
프리미엄 게시판 권한: ❌ 차단
일반 게시판 권한: ✅ 허용

3-2. 일반 회원 'google_9c66093e' 권한 테스트:

회원 레벨: 5
Array
(
    [active] => 1
    [status] => active
    [current_period_end] => 2025-09-12 19:20:00
    [cancel_at_period_end] => 0
    [grace_hours] => 72
    [subscription_data] => Array
        (
            [id] => 2
            [mb_id] => google_9c66093e
            [plan] => premium
            [term] => monthly
            [status] => active
            [paypal_sub_id] => I-REAL-TEST-123
            [paypal_plan_id] => P-REAL-PLAN-123
            [amount] => 10.00
            [currency] => USD
            [start_date] => 2025-08-13 19:21:14
            [next_billing_date] => 2025-09-12 19:20:00
            [created_at] => 2025-08-13 19:21:14
            [updated_at] => 2025-08-13 19:21:14
        )

)
프리미엄 게시판 권한: ✅ 허용
일반 게시판 권한: ✅ 허용
디버그 정보:
Array
(
    [mb_id] => google_9c66093e
    [subscription_data] => Array
        (
            [id] => 2
            [mb_id] => google_9c66093e
            [plan] => premium
            [term] => monthly
            [status] => active
            [paypal_sub_id] => I-REAL-TEST-123
            [paypal_plan_id] => P-REAL-PLAN-123
            [amount] => 10.00
            [currency] => USD
            [start_date] => 2025-08-13 19:21:14
            [next_billing_date] => 2025-09-12 19:20:00
            [created_at] => 2025-08-13 19:21:14
            [updated_at] => 2025-08-13 19:21:14
        )

    [is_active] => 1
    [current_time] => 2025-08-23 12:42:06
    [period_end] => 2025-09-12 19:20:00
    [grace_until] => 2025-09-15 19:20:00
    [time_remaining] => 2011074
    [status] => active
)

4. 설정 상수 확인

PS_PREMIUM_LEVEL: 5
PS_DEFAULT_LEVEL: 2
PS_GRACE_HOURS: 72

5. 프리미엄 게시판 목록

프리미엄 게시판: wallpaper_premium, wallpaper_video

테스트 완료! 위 결과를 확인하여 시스템이 정상 작동하는지 점검하세요.