7a0da7932b
Backwards Compatibility / Verify Encryption Constants (push) Waiting to run
Backwards Compatibility / PyPI Version Compatibility (push) Waiting to run
Backwards Compatibility / Database Migration Tests (push) Waiting to run
CodeQL Advanced / Analyze (javascript-typescript) (push) Waiting to run
CodeQL Advanced / Analyze (python) (push) Waiting to run
Docker Tests (Consolidated) / UI Tests (Puppeteer) [research-form] (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) [research-metrics] (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) [research-workflow] (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) [settings-core] (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) [settings-pages] (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) [history-news] (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) [library] (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) [link-analytics] (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) [mobile] (push) Blocked by required conditions
Docker Tests (Consolidated) / detect-changes (push) Waiting to run
Docker Tests (Consolidated) / Build Test Image (push) Waiting to run
Docker Tests (Consolidated) / All Pytest Tests + Coverage (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) [accessibility] (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) [api-crud] (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) [auth-login] (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) [auth-pages] (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) [auth-register] (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) [chat-core] (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) [chat-lifecycle] (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) [error-benchmark] (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) (push) Blocked by required conditions
Docker Tests (Consolidated) / Accessibility Tests (push) Blocked by required conditions
Docker Tests (Consolidated) / LLM Unit Tests (push) Blocked by required conditions
Docker Tests (Consolidated) / LLM Example Tests (push) Blocked by required conditions
Docker Tests (Consolidated) / Production Image Smoke Test (push) Blocked by required conditions
Docker Tests (Consolidated) / Infrastructure Tests (push) Blocked by required conditions
OSSF Scorecard / OSSF Security Scorecard Analysis (push) Waiting to run
OSV-Scanner (Scheduled) / scan-scheduled (push) Failing after 0s
Create Release / test-gate (push) Has been cancelled
Create Release / release-gate (push) Has been cancelled
Create Release / ci-gate (push) Has been cancelled
Create Release / version-check (push) Has been cancelled
Create Release / e2e-test-gate (push) Has been cancelled
Create Release / responsive-test-gate (push) Has been cancelled
Create Release / compat-test-gate (push) Has been cancelled
Create Release / compose-integration-gate (push) Has been cancelled
Create Release / vulture-gate (push) Has been cancelled
Create Release / build (push) Has been cancelled
Create Release / provenance (push) Has been cancelled
Create Release / prerelease-docker (push) Has been cancelled
Create Release / publish-docker (push) Has been cancelled
Create Release / create-release (push) Has been cancelled
Create Release / cleanup-changelog (push) Has been cancelled
Create Release / trigger-pypi (push) Has been cancelled
Create Release / monitor-pypi (push) Has been cancelled
Create Release / Clean up orphan prerelease tags and signatures (push) Has been cancelled
104 lines
3.6 KiB
JavaScript
104 lines
3.6 KiB
JavaScript
/**
|
|
* Simple Authentication Test
|
|
* Basic test to verify registration and login work
|
|
*/
|
|
|
|
const puppeteer = require('puppeteer');
|
|
const AuthHelper = require('./auth_helper');
|
|
const { getPuppeteerLaunchOptions } = require('./puppeteer_config');
|
|
|
|
async function testSimpleAuth() {
|
|
const browser = await puppeteer.launch(getPuppeteerLaunchOptions());
|
|
|
|
const page = await browser.newPage();
|
|
const baseUrl = 'http://127.0.0.1:5000';
|
|
const authHelper = new AuthHelper(page, baseUrl);
|
|
|
|
// Unique test user
|
|
const testUser = {
|
|
username: `test_${Date.now()}`,
|
|
password: 'testpass123'
|
|
};
|
|
|
|
console.log('🧪 Simple Authentication Test\n');
|
|
|
|
try {
|
|
// Test 1: Can we reach the login page?
|
|
console.log('📄 Test 1: Accessing login page');
|
|
await page.goto(`${baseUrl}/auth/login`, {
|
|
waitUntil: 'domcontentloaded',
|
|
timeout: 30000
|
|
});
|
|
|
|
const loginPageTitle = await page.title();
|
|
console.log(`✅ Login page accessible - Title: ${loginPageTitle}`);
|
|
|
|
// Test 2: Try registration
|
|
console.log('\n📝 Test 2: Registration');
|
|
await page.goto(`${baseUrl}/auth/register`, {
|
|
waitUntil: 'domcontentloaded',
|
|
timeout: 30000
|
|
});
|
|
|
|
// Fill form manually to debug
|
|
await page.type('input[name="username"]', testUser.username);
|
|
await page.type('input[name="password"]', testUser.password);
|
|
await page.type('input[name="confirm_password"]', testUser.password);
|
|
|
|
// Check the acknowledge checkbox
|
|
await page.click('input[name="acknowledge"]');
|
|
|
|
// Submit
|
|
console.log('Submitting registration form...');
|
|
await Promise.all([
|
|
page.waitForNavigation({ waitUntil: 'domcontentloaded' }),
|
|
page.click('button[type="submit"]')
|
|
]);
|
|
|
|
const afterRegUrl = page.url();
|
|
console.log(`After registration URL: ${afterRegUrl}`);
|
|
|
|
// Check for success
|
|
if (afterRegUrl.includes('/auth/register')) {
|
|
// Still on register page - check for errors
|
|
const errorText = await page.$eval('.alert', el => el.textContent).catch(() => 'No alerts');
|
|
console.log(`Registration might have failed. Alert text: ${errorText}`);
|
|
} else {
|
|
console.log('✅ Registration completed - redirected away from register page');
|
|
}
|
|
|
|
// Test 3: Check if we're logged in
|
|
console.log('\n🔍 Test 3: Login status check');
|
|
const isLoggedIn = await authHelper.isLoggedIn();
|
|
console.log(`Logged in status: ${isLoggedIn}`);
|
|
|
|
// Test 4: Try to access settings (protected page)
|
|
console.log('\n🔒 Test 4: Accessing protected page');
|
|
await page.goto(`${baseUrl}/settings/`, {
|
|
waitUntil: 'domcontentloaded',
|
|
timeout: 30000
|
|
});
|
|
|
|
const settingsUrl = page.url();
|
|
if (settingsUrl.includes('/settings')) {
|
|
console.log('✅ Successfully accessed settings page - user is authenticated');
|
|
} else {
|
|
console.log(`❌ Redirected to: ${settingsUrl}`);
|
|
}
|
|
|
|
// Take final screenshot
|
|
await page.screenshot({ path: './screenshots/simple_auth_final.png' });
|
|
console.log('\n📸 Screenshot saved to ./screenshots/simple_auth_final.png');
|
|
|
|
} catch (error) {
|
|
console.error('\n❌ Test error:', error.message);
|
|
await page.screenshot({ path: './screenshots/simple_auth_error.png' });
|
|
}
|
|
|
|
await browser.close();
|
|
console.log('\n✅ Test completed');
|
|
}
|
|
|
|
// Run the test
|
|
testSimpleAuth().catch(console.error);
|