|
| 1 | +import { test, expect } from '@playwright/test' |
| 2 | + |
| 3 | +const BASE_URL = 'http://code-academy.lvh.me:3000' |
| 4 | +const STUDENT_EMAIL = 'alice@student.com' |
| 5 | +const STUDENT_PASSWORD = 'password123' |
| 6 | +const COURSE_ID = 9999 |
| 7 | +const EXAM_ID = 9999 |
| 8 | + |
| 9 | +test.describe('Full Student Journey', () => { |
| 10 | + test('lessons → exam → AI grading → certificate', async ({ page }) => { |
| 11 | + test.setTimeout(120000) |
| 12 | + |
| 13 | + // ── LOGIN ── |
| 14 | + await page.goto(`${BASE_URL}/en/auth/login`) |
| 15 | + await page.waitForLoadState('networkidle') |
| 16 | + await page.fill('input[type="email"]', STUDENT_EMAIL) |
| 17 | + await page.fill('input[type="password"]', STUDENT_PASSWORD) |
| 18 | + await page.click('button[type="submit"]') |
| 19 | + await page.waitForURL(/dashboard/, { timeout: 15000 }) |
| 20 | + console.log('✅ Logged in') |
| 21 | + |
| 22 | + // ── LESSON 1 ── |
| 23 | + await page.goto(`${BASE_URL}/en/dashboard/student/courses/${COURSE_ID}/lessons/10000`) |
| 24 | + await page.waitForLoadState('networkidle') |
| 25 | + const lesson1Content = await page.textContent('body') |
| 26 | + expect(lesson1Content).toContain('Introduction') |
| 27 | + console.log('📖 Lesson 1 loaded') |
| 28 | + |
| 29 | + // Mark complete |
| 30 | + await page.evaluate(() => { |
| 31 | + const btn = document.querySelector('[data-testid="lesson-complete-toggle"]') as HTMLButtonElement |
| 32 | + if (btn && !btn.textContent?.toLowerCase().includes('completed')) btn.click() |
| 33 | + }) |
| 34 | + await page.waitForTimeout(2000) |
| 35 | + console.log('✅ Lesson 1 completed') |
| 36 | + |
| 37 | + // ── LESSON 2 ── |
| 38 | + await page.goto(`${BASE_URL}/en/dashboard/student/courses/${COURSE_ID}/lessons/10001`) |
| 39 | + await page.waitForLoadState('networkidle') |
| 40 | + const lesson2Content = await page.textContent('body') |
| 41 | + expect(lesson2Content).toContain('Conclusion') |
| 42 | + console.log('📖 Lesson 2 loaded') |
| 43 | + |
| 44 | + // Mark complete — this is the last lesson, should NOT trigger certificate yet (exam not passed) |
| 45 | + await page.evaluate(() => { |
| 46 | + const btn = document.querySelector('[data-testid="lesson-complete-toggle"]') as HTMLButtonElement |
| 47 | + if (btn && !btn.textContent?.toLowerCase().includes('completed')) btn.click() |
| 48 | + }) |
| 49 | + await page.waitForTimeout(2000) |
| 50 | + console.log('✅ Lesson 2 completed') |
| 51 | + |
| 52 | + // ── TAKE EXAM ── |
| 53 | + await page.goto(`${BASE_URL}/en/dashboard/student/courses/${COURSE_ID}/exams/${EXAM_ID}`) |
| 54 | + await page.waitForLoadState('networkidle') |
| 55 | + console.log('📋 Exam page loaded:', page.url()) |
| 56 | + |
| 57 | + // If redirected to result, exam was already taken |
| 58 | + if (page.url().includes('/result')) { |
| 59 | + console.log('ℹ️ Exam already submitted, skipping to results...') |
| 60 | + } else { |
| 61 | + // Q1: Multiple choice "What is 2 + 2?" — pick "4" (first option, correct) |
| 62 | + await page.waitForSelector('h2', { timeout: 5000 }) |
| 63 | + const q1Text = await page.textContent('h2') |
| 64 | + console.log(` Q1: ${q1Text}`) |
| 65 | + const labels = page.locator('[role="radiogroup"] label') |
| 66 | + await labels.first().click() // "4" is the correct answer |
| 67 | + await page.locator('button:has-text("Next Question")').click() |
| 68 | + await page.waitForTimeout(500) |
| 69 | + |
| 70 | + // Q2: True/False "The sky is blue." — pick "True" (correct) |
| 71 | + const q2Text = await page.textContent('h2') |
| 72 | + console.log(` Q2: ${q2Text}`) |
| 73 | + const tfLabels = page.locator('[role="radiogroup"] label') |
| 74 | + // "True" should be the first option |
| 75 | + await tfLabels.first().click() |
| 76 | + await page.locator('button:has-text("Next Question")').click() |
| 77 | + await page.waitForTimeout(500) |
| 78 | + |
| 79 | + // Q3: Free text "Explain what you learned" |
| 80 | + const q3Text = await page.textContent('h2') |
| 81 | + console.log(` Q3: ${q3Text}`) |
| 82 | + await page.fill('textarea', |
| 83 | + 'In this course I learned about the introduction to the topic in lesson 1 and ' + |
| 84 | + 'wrapped up with key takeaways in lesson 2. The course provided a clear structure ' + |
| 85 | + 'and helped me reflect on the material covered. I particularly valued the hands-on ' + |
| 86 | + 'approach and practical examples.' |
| 87 | + ) |
| 88 | + |
| 89 | + // Submit |
| 90 | + console.log('🚀 Submitting exam...') |
| 91 | + await page.evaluate(() => { |
| 92 | + const btn = document.querySelector('[data-testid="exam-finish-submit"]') as HTMLButtonElement |
| 93 | + if (btn) btn.click() |
| 94 | + }) |
| 95 | + |
| 96 | + // Wait for AI grading + redirect |
| 97 | + await page.waitForURL(/result/, { timeout: 90000 }) |
| 98 | + console.log('✅ Redirected to result page') |
| 99 | + } |
| 100 | + |
| 101 | + // ── CHECK EXAM RESULTS ── |
| 102 | + await page.waitForLoadState('networkidle') |
| 103 | + await page.waitForTimeout(3000) |
| 104 | + await page.screenshot({ path: '/tmp/journey-exam-result.png' }) |
| 105 | + |
| 106 | + const resultContent = await page.textContent('body') |
| 107 | + |
| 108 | + // Check score |
| 109 | + const scoreMatch = resultContent?.match(/(\d+)%/) |
| 110 | + if (scoreMatch) { |
| 111 | + console.log(`📊 Score: ${scoreMatch[1]}%`) |
| 112 | + } |
| 113 | + |
| 114 | + // Check AI evaluation |
| 115 | + if (resultContent?.includes('AI Evaluated')) { |
| 116 | + console.log('✅ AI Evaluated status shown') |
| 117 | + } |
| 118 | + |
| 119 | + // Check for per-question feedback |
| 120 | + if (resultContent?.includes('Correct') || resultContent?.includes('feedback') || resultContent?.includes('Feedback')) { |
| 121 | + console.log('✅ Question feedback displayed') |
| 122 | + } |
| 123 | + |
| 124 | + // ── CHECK CERTIFICATE ── |
| 125 | + // The exam scoring trigger should have issued the certificate |
| 126 | + // (all lessons complete + exam passed >= 60%) |
| 127 | + if (resultContent?.includes('Certificate Earned')) { |
| 128 | + console.log('🎉 Certificate Earned banner on exam result page!') |
| 129 | + } else { |
| 130 | + console.log('⚠️ No certificate banner on result page (checking certificates page...)') |
| 131 | + } |
| 132 | + |
| 133 | + // Visit certificates page |
| 134 | + await page.goto(`${BASE_URL}/en/dashboard/student/certificates`) |
| 135 | + await page.waitForLoadState('networkidle') |
| 136 | + await page.screenshot({ path: '/tmp/journey-certificates.png' }) |
| 137 | + |
| 138 | + const certsContent = await page.textContent('body') |
| 139 | + if (certsContent?.includes('Quick Test') || certsContent?.includes('Certificate')) { |
| 140 | + console.log('✅ Certificate visible on certificates page') |
| 141 | + } else { |
| 142 | + console.log('⚠️ No certificate on certificates page') |
| 143 | + } |
| 144 | + |
| 145 | + // ── VERIFY CERTIFICATE ── |
| 146 | + const verifyLink = page.locator('a[href*="/verify/"]') |
| 147 | + const verifyCount = await verifyLink.count() |
| 148 | + if (verifyCount > 0) { |
| 149 | + const href = await verifyLink.first().getAttribute('href') |
| 150 | + console.log(`🔗 Verification link: ${href}`) |
| 151 | + await verifyLink.first().click() |
| 152 | + await page.waitForLoadState('networkidle') |
| 153 | + await page.screenshot({ path: '/tmp/journey-verify.png' }) |
| 154 | + |
| 155 | + const verifyContent = await page.textContent('body') |
| 156 | + if (verifyContent?.includes('Quick Test') || verifyContent?.includes('Code Academy')) { |
| 157 | + console.log('✅ Verification page shows certificate details') |
| 158 | + } |
| 159 | + } else { |
| 160 | + console.log('⚠️ No verification link found') |
| 161 | + } |
| 162 | + |
| 163 | + console.log('\n🏁 Full journey complete!') |
| 164 | + }) |
| 165 | +}) |
0 commit comments