This MVP release provides a complete full-stack solution for managing action mappings in Geutebruck's GeViScope and GeViSoft video surveillance systems. ## Features ### Flutter Web Application (Port 8081) - Modern, responsive UI for managing action mappings - Action picker dialog with full parameter configuration - Support for both GSC (GeViScope) and G-Core server actions - Consistent UI for input and output actions with edit/delete capabilities - Real-time action mapping creation, editing, and deletion - Server categorization (GSC: prefix for GeViScope, G-Core: prefix for G-Core servers) ### FastAPI REST Backend (Port 8000) - RESTful API for action mapping CRUD operations - Action template service with comprehensive action catalog (247 actions) - Server management (G-Core and GeViScope servers) - Configuration tree reading and writing - JWT authentication with role-based access control - PostgreSQL database integration ### C# SDK Bridge (gRPC, Port 50051) - Native integration with GeViSoft SDK (GeViProcAPINET_4_0.dll) - Action mapping creation with correct binary format - Support for GSC and G-Core action types - Proper Camera parameter inclusion in action strings (fixes CrossSwitch bug) - Action ID lookup table with server-specific action IDs - Configuration reading/writing via SetupClient ## Bug Fixes - **CrossSwitch Bug**: GSC and G-Core actions now correctly display camera/PTZ head parameters in GeViSet - Action strings now include Camera parameter: `@ PanLeft (Comment: "", Camera: 101028)` - Proper filter flags and VideoInput=0 for action mappings - Correct action ID assignment (4198 for GSC, 9294 for G-Core PanLeft) ## Technical Stack - **Frontend**: Flutter Web, Dart, Dio HTTP client - **Backend**: Python FastAPI, PostgreSQL, Redis - **SDK Bridge**: C# .NET 8.0, gRPC, GeViSoft SDK - **Authentication**: JWT tokens - **Configuration**: GeViSoft .set files (binary format) ## Credentials - GeViSoft/GeViScope: username=sysadmin, password=masterkey - Default admin: username=admin, password=admin123 ## Deployment All services run on localhost: - Flutter Web: http://localhost:8081 - FastAPI: http://localhost:8000 - SDK Bridge gRPC: localhost:50051 - GeViServer: localhost (default port) Generated with Claude Code (https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
113 lines
3.8 KiB
JavaScript
113 lines
3.8 KiB
JavaScript
import { chromium } from 'playwright';
|
||
|
||
(async () => {
|
||
console.log('=== Testing Parameter Viewing (Phase 1: Read-Only) ===\n');
|
||
|
||
const browser = await chromium.launch({ headless: false, slowMo: 400 });
|
||
const context = await browser.newContext();
|
||
const page = await context.newPage();
|
||
|
||
let parametersFound = false;
|
||
let parameterDetails = [];
|
||
|
||
page.on('console', msg => {
|
||
const text = msg.text();
|
||
if (text.includes('param') || text.includes('Parameter')) {
|
||
console.log(`[APP] ${text}`);
|
||
}
|
||
});
|
||
|
||
try {
|
||
// Login
|
||
console.log('1️⃣ Login...');
|
||
await page.goto('http://100.81.138.77:8081/', { waitUntil: 'networkidle', timeout: 60000 });
|
||
await page.waitForTimeout(3000);
|
||
|
||
await page.click('body');
|
||
await page.waitForTimeout(500);
|
||
await page.keyboard.press('Tab');
|
||
await page.waitForTimeout(300);
|
||
await page.keyboard.type('admin', { delay: 50 });
|
||
await page.waitForTimeout(300);
|
||
await page.keyboard.press('Tab');
|
||
await page.waitForTimeout(300);
|
||
await page.keyboard.type('admin123', { delay: 50 });
|
||
await page.waitForTimeout(300);
|
||
await page.keyboard.press('Enter');
|
||
await page.waitForTimeout(4000);
|
||
|
||
console.log('\n2️⃣ Navigate to Action Mappings...');
|
||
await page.goto('http://100.81.138.77:8081/#/action-mappings', { waitUntil: 'networkidle', timeout: 60000 });
|
||
await page.waitForTimeout(2000);
|
||
|
||
console.log('\n3️⃣ Download mappings...');
|
||
for (let i = 0; i < 3; i++) {
|
||
await page.keyboard.press('Tab');
|
||
await page.waitForTimeout(300);
|
||
}
|
||
await page.keyboard.press('Enter');
|
||
await page.waitForTimeout(6000);
|
||
|
||
console.log('\n4️⃣ Check for parameter badges...');
|
||
await page.screenshot({ path: 'params-1-list-view.png', fullPage: true });
|
||
|
||
// Check for parameter count badges in the UI
|
||
const paramBadges = await page.locator('text=/\\d+ params?/').count();
|
||
console.log(` Found ${paramBadges} parameter badges`);
|
||
|
||
if (paramBadges > 0) {
|
||
parametersFound = true;
|
||
|
||
// Get details of first few parameter badges
|
||
const badges = await page.locator('text=/\\d+ params?/').all();
|
||
for (let i = 0; i < Math.min(5, badges.length); i++) {
|
||
const text = await badges[i].textContent();
|
||
parameterDetails.push(text);
|
||
}
|
||
}
|
||
|
||
console.log('\n5️⃣ Click on first mapping with parameters...');
|
||
// Find and click the first mapping card
|
||
const firstCard = await page.locator('div[role="button"]').first();
|
||
if (await firstCard.count() > 0) {
|
||
await firstCard.click();
|
||
await page.waitForTimeout(2000);
|
||
await page.screenshot({ path: 'params-2-mapping-details.png', fullPage: true });
|
||
}
|
||
|
||
} catch (error) {
|
||
console.error('\n💥 TEST ERROR:', error.message);
|
||
await page.screenshot({ path: 'params-error.png', fullPage: true });
|
||
}
|
||
|
||
console.log('\n' + '='.repeat(70));
|
||
console.log('PARAMETER VIEWING TEST RESULTS');
|
||
console.log('='.repeat(70));
|
||
|
||
if (parametersFound) {
|
||
console.log('\n✅ SUCCESS: Parameters are visible in the UI');
|
||
console.log(` Parameter badges found: ${parameterDetails.length}`);
|
||
if (parameterDetails.length > 0) {
|
||
console.log('\n Examples:');
|
||
parameterDetails.forEach((detail, i) => {
|
||
console.log(` ${i + 1}. ${detail}`);
|
||
});
|
||
}
|
||
} else {
|
||
console.log('\n⚠️ No parameter badges visible');
|
||
console.log(' This could mean:');
|
||
console.log(' - Mappings have no parameters (all empty)');
|
||
console.log(' - UI update not loaded yet (refresh browser)');
|
||
console.log(' - Check screenshots for visual confirmation');
|
||
}
|
||
|
||
console.log('\n📸 Screenshots saved:');
|
||
console.log(' - params-1-list-view.png');
|
||
console.log(' - params-2-mapping-details.png (if clicked)');
|
||
|
||
await page.waitForTimeout(3000);
|
||
await browser.close();
|
||
|
||
console.log('\n' + '='.repeat(70));
|
||
})();
|