Complete cleanup and modernization of JavaScript testing infrastructure with comprehensive automated test coverage and improved output formatting. JavaScript Development Files Cleanup: - Moved 53 manual development/debugging test files to history/javascript-dev-tests/ - Added comprehensive README documenting archived files and their purposes - Cleaned main project directory of development artifacts New Automated Test Suite (68 tests): - keyboard-shortcuts.test.js: Tests Ctrl+Enter, Escape, accessibility features (8 tests) - section-splitting.test.js: Tests heading detection, content parsing, ID generation (14 tests) - image-editing.test.js: Tests dialog positioning, alt text, reset functionality (19 tests) - button-events.test.js: Tests click handling, state management, event delegation (21 tests) Integration Test Fixes: - Fixed 13 failing integration tests by properly mocking component dependencies - Updated tests to match actual component APIs instead of assumed interfaces - Improved error handling and test reliability Enhanced Test Output Formatting: - Updated testdrive-jsui-test-all target to show clear test count summaries - Separated JavaScript (68 tests) and Python (11 tests) results distinctly - Added combined summary showing total coverage (79 tests) - Improved error handling and visual formatting Main Makefile Improvements: - Fixed default target issue by adding .DEFAULT_GOAL := help - Restored proper make help behavior when called without arguments Key Achievements: - Replaced 53 manual test files with 68 automated tests - Achieved 100% test pass rate (79/79 tests passing) - Enhanced CI/CD integration with clear test reporting - Preserved all critical UI functionality in automated test coverage - Improved developer experience with clearer test output Testing Status: - ✅ 68 JavaScript tests (Jest) - Core UI functionality - ✅ 11 Python tests (pytest) - Integration bridge testing - ✅ 100% automated test coverage for critical functionality - ✅ Clean, maintainable test codebase 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
177 lines
7.0 KiB
JavaScript
177 lines
7.0 KiB
JavaScript
#!/usr/bin/env node
|
|
|
|
/**
|
|
* Debug Cancel Button Issues
|
|
*
|
|
* Detailed testing of cancel button functionality to identify issues
|
|
*/
|
|
|
|
const { TestRunner } = require('./test_runner.js');
|
|
const runner = new TestRunner();
|
|
|
|
runner.describe('Cancel Button Debug Tests', () => {
|
|
|
|
runner.it('should properly restore original content on cancel', async () => {
|
|
// Load editor
|
|
delete require.cache[require.resolve('/home/worsch/markitect_project/markitect/static/editor.js')];
|
|
require('/home/worsch/markitect_project/markitect/static/editor.js');
|
|
|
|
if (global.DOMRenderer && global.SectionManager) {
|
|
const container = document.createElement('div');
|
|
container.innerHTML = '<div id="markdown-content"></div>';
|
|
document.body.appendChild(container);
|
|
|
|
const manager = new global.SectionManager();
|
|
const renderer = new global.DOMRenderer(manager, container);
|
|
|
|
const originalMarkdown = '# Original Content\n\nThis is the original text.';
|
|
const sections = manager.createSectionsFromMarkdown(originalMarkdown);
|
|
const textSection = sections[0];
|
|
|
|
const mockElement = document.createElement('div');
|
|
mockElement.setAttribute('data-section-id', textSection.id);
|
|
mockElement.innerHTML = '<h1>Original Content</h1><p>This is the original text.</p>';
|
|
const originalHTML = mockElement.innerHTML;
|
|
|
|
renderer.findSectionElement = () => mockElement;
|
|
|
|
// Start editing and modify content
|
|
manager.startEditing(textSection.id);
|
|
manager.updateContent(textSection.id, '# Modified Content\n\nThis text was changed.');
|
|
|
|
console.log('Before editing - section content:', textSection.currentMarkdown);
|
|
console.log('Before editing - element HTML:', mockElement.innerHTML);
|
|
|
|
// Show editor
|
|
renderer.showEditor(textSection.id, textSection.currentMarkdown);
|
|
|
|
// Verify overlay is created
|
|
const overlayContainer = mockElement.querySelector('.ui-edit-overlay-container');
|
|
runner.expect(overlayContainer).toBeTruthy();
|
|
|
|
// Verify original content is stored
|
|
console.log('Original content stored:', overlayContainer.dataset.originalContent);
|
|
|
|
// Click cancel button
|
|
const cancelBtn = mockElement.querySelector('.ui-edit-button-cancel');
|
|
runner.expect(cancelBtn).toBeTruthy();
|
|
|
|
console.log('About to click cancel button...');
|
|
cancelBtn.click();
|
|
|
|
console.log('After cancel - section content:', textSection.currentMarkdown);
|
|
console.log('After cancel - element HTML:', mockElement.innerHTML);
|
|
|
|
// Verify changes were cancelled
|
|
runner.expect(textSection.currentMarkdown).toBe(originalMarkdown);
|
|
|
|
// Verify overlay is removed
|
|
const overlayAfterCancel = mockElement.querySelector('.ui-edit-overlay-container');
|
|
runner.expect(overlayAfterCancel).toBeFalsy();
|
|
|
|
// Verify original HTML is restored
|
|
runner.expect(mockElement.innerHTML).toBe(originalHTML);
|
|
|
|
// Cleanup
|
|
document.body.removeChild(container);
|
|
}
|
|
});
|
|
|
|
runner.it('should handle cancel with no updateSectionContent method', async () => {
|
|
if (global.DOMRenderer && global.SectionManager) {
|
|
const container = document.createElement('div');
|
|
container.innerHTML = '<div id="markdown-content"></div>';
|
|
document.body.appendChild(container);
|
|
|
|
const manager = new global.SectionManager();
|
|
const renderer = new global.DOMRenderer(manager, container);
|
|
|
|
const originalMarkdown = '# Test Content';
|
|
const sections = manager.createSectionsFromMarkdown(originalMarkdown);
|
|
const textSection = sections[0];
|
|
|
|
const mockElement = document.createElement('div');
|
|
mockElement.setAttribute('data-section-id', textSection.id);
|
|
mockElement.innerHTML = '<h1>Test Content</h1>';
|
|
|
|
renderer.findSectionElement = () => mockElement;
|
|
|
|
// Don't mock updateSectionContent - test without it
|
|
|
|
manager.startEditing(textSection.id);
|
|
manager.updateContent(textSection.id, '# Modified');
|
|
|
|
renderer.showEditor(textSection.id, textSection.currentMarkdown);
|
|
|
|
const cancelBtn = mockElement.querySelector('.ui-edit-button-cancel');
|
|
|
|
// This should not throw an error
|
|
try {
|
|
cancelBtn.click();
|
|
runner.expect(true).toBeTruthy(); // Test passes if no error
|
|
} catch (error) {
|
|
console.error('Cancel button error:', error);
|
|
runner.expect(false).toBeTruthy(); // Fail test if error thrown
|
|
}
|
|
|
|
// Cleanup
|
|
document.body.removeChild(container);
|
|
}
|
|
});
|
|
|
|
runner.it('should call getCurrentEditingSectionId correctly', async () => {
|
|
if (global.DOMRenderer && global.SectionManager) {
|
|
const container = document.createElement('div');
|
|
container.innerHTML = '<div id="markdown-content"></div>';
|
|
document.body.appendChild(container);
|
|
|
|
const manager = new global.SectionManager();
|
|
const renderer = new global.DOMRenderer(manager, container);
|
|
|
|
const textMarkdown = '# Test';
|
|
const sections = manager.createSectionsFromMarkdown(textMarkdown);
|
|
const textSection = sections[0];
|
|
|
|
const mockElement = document.createElement('div');
|
|
mockElement.setAttribute('data-section-id', textSection.id);
|
|
renderer.findSectionElement = () => mockElement;
|
|
|
|
renderer.showEditor(textSection.id, textSection.currentMarkdown);
|
|
|
|
const cancelBtn = mockElement.querySelector('.ui-edit-button-cancel');
|
|
|
|
// Test the method directly
|
|
const sectionId = renderer.getCurrentEditingSectionId(cancelBtn);
|
|
console.log('getCurrentEditingSectionId result:', sectionId);
|
|
console.log('Expected section ID:', textSection.id);
|
|
|
|
runner.expect(sectionId).toBe(textSection.id);
|
|
|
|
// Cleanup
|
|
document.body.removeChild(container);
|
|
}
|
|
});
|
|
});
|
|
|
|
// Run the tests
|
|
if (require.main === module) {
|
|
console.log('🐛 Running Cancel Button Debug Tests');
|
|
runner.run().then(() => {
|
|
const results = runner.results;
|
|
const failed = results.filter(r => r.status === 'FAIL').length;
|
|
|
|
if (failed > 0) {
|
|
console.log(`❌ ${failed} test(s) failed - cancel button has issues`);
|
|
results.forEach(result => {
|
|
if (result.status === 'FAIL') {
|
|
console.log(`Failed test: ${result.name}`);
|
|
console.log(`Error: ${result.error}`);
|
|
}
|
|
});
|
|
} else {
|
|
console.log('✅ All cancel button debug tests passed!');
|
|
}
|
|
});
|
|
}
|
|
|
|
module.exports = runner; |