mirror of
https://github.com/johannesjo/super-productivity.git
synced 2026-01-22 18:30:09 +00:00
263 lines
9.1 KiB
TypeScript
263 lines
9.1 KiB
TypeScript
import { expect, test } from '../../fixtures/test.fixture';
|
|
import { cssSelectors } from '../../constants/selectors';
|
|
|
|
const { SIDENAV } = cssSelectors;
|
|
|
|
// Plugin-related selectors
|
|
const SETTINGS_BTN = `${SIDENAV} .tour-settingsMenuBtn`;
|
|
const PLUGIN_CARD = 'plugin-management mat-card.ng-star-inserted';
|
|
const PLUGIN_ITEM = `${PLUGIN_CARD}`;
|
|
const PLUGIN_MENU_ENTRY = `${SIDENAV} plugin-menu button`;
|
|
const PLUGIN_IFRAME = 'plugin-index iframe';
|
|
|
|
test.describe.serial('Plugin Loading', () => {
|
|
test('full plugin loading lifecycle', async ({ page, workViewPage, waitForNav }) => {
|
|
await workViewPage.waitForTaskList();
|
|
|
|
// Enable Yesterday's Tasks first (implementing enableTestPlugin inline)
|
|
await page.click(SETTINGS_BTN);
|
|
await page.waitForTimeout(3000);
|
|
|
|
await page.evaluate(() => {
|
|
const configPage = document.querySelector('.page-settings');
|
|
if (!configPage) {
|
|
throw new Error('Not on config page');
|
|
}
|
|
|
|
const pluginSection = document.querySelector('.plugin-section');
|
|
if (pluginSection) {
|
|
pluginSection.scrollIntoView({ behavior: 'smooth', block: 'center' });
|
|
}
|
|
|
|
const collapsible = document.querySelector('.plugin-section collapsible');
|
|
if (collapsible) {
|
|
const isExpanded = collapsible.classList.contains('isExpanded');
|
|
if (!isExpanded) {
|
|
const header = collapsible.querySelector('.collapsible-header');
|
|
if (header) {
|
|
(header as HTMLElement).click();
|
|
}
|
|
}
|
|
}
|
|
});
|
|
|
|
await waitForNav();
|
|
await expect(page.locator('plugin-management')).toBeVisible({ timeout: 5000 });
|
|
|
|
// Enable the plugin
|
|
await page.evaluate((pluginName: string) => {
|
|
const cards = Array.from(document.querySelectorAll('plugin-management mat-card'));
|
|
const targetCard = cards.find((card) => {
|
|
const title = card.querySelector('mat-card-title')?.textContent || '';
|
|
return title.includes(pluginName);
|
|
});
|
|
|
|
if (targetCard) {
|
|
const toggleButton = targetCard.querySelector(
|
|
'mat-slide-toggle button[role="switch"]',
|
|
) as HTMLButtonElement;
|
|
if (toggleButton) {
|
|
const wasChecked = toggleButton.getAttribute('aria-checked') === 'true';
|
|
if (!wasChecked) {
|
|
toggleButton.click();
|
|
}
|
|
return {
|
|
enabled: true,
|
|
found: true,
|
|
wasChecked,
|
|
nowChecked: toggleButton.getAttribute('aria-checked') === 'true',
|
|
clicked: !wasChecked,
|
|
};
|
|
}
|
|
return { enabled: false, found: true, error: 'No toggle found' };
|
|
}
|
|
|
|
return { enabled: false, found: false };
|
|
}, "Yesterday's Tasks");
|
|
|
|
await waitForNav(); // Wait for plugin to initialize
|
|
|
|
// Navigate to plugin management
|
|
await expect(page.locator(PLUGIN_CARD).first()).toBeVisible();
|
|
await page.waitForLoadState('domcontentloaded');
|
|
|
|
// Check example plugin is loaded and enabled
|
|
const pluginCardsResult = await page.evaluate(() => {
|
|
const cards = Array.from(document.querySelectorAll('plugin-management mat-card'));
|
|
const pluginCards = cards.filter((card) => card.querySelector('mat-slide-toggle'));
|
|
return {
|
|
totalCards: cards.length,
|
|
pluginCardsCount: pluginCards.length,
|
|
pluginTitles: pluginCards.map(
|
|
(card) => card.querySelector('mat-card-title')?.textContent?.trim() || '',
|
|
),
|
|
};
|
|
});
|
|
|
|
expect(pluginCardsResult.pluginCardsCount).toBeGreaterThanOrEqual(1);
|
|
expect(pluginCardsResult.pluginTitles).toContain("Yesterday's Tasks");
|
|
|
|
// Verify plugin menu entry exists
|
|
await page.click(SIDENAV); // Ensure sidenav is visible
|
|
await expect(page.locator(PLUGIN_MENU_ENTRY)).toBeVisible();
|
|
await expect(page.locator(PLUGIN_MENU_ENTRY)).toContainText("Yesterday's Tasks");
|
|
|
|
// Open plugin iframe view
|
|
await page.click(PLUGIN_MENU_ENTRY);
|
|
await expect(page.locator(PLUGIN_IFRAME)).toBeVisible();
|
|
await expect(page).toHaveURL(/\/plugins\/yesterday-tasks-plugin\/index/);
|
|
await waitForNav(); // Wait for iframe to load
|
|
|
|
// Switch to iframe context and verify content
|
|
const frame = page.frameLocator(PLUGIN_IFRAME);
|
|
await expect(frame.locator('h1')).toBeVisible();
|
|
await expect(frame.locator('h1')).toContainText("Yesterday's Tasks");
|
|
|
|
await page.waitForLoadState('domcontentloaded');
|
|
|
|
// Verify plugin functionality - show notification
|
|
await expect(page.locator(PLUGIN_MENU_ENTRY)).toBeVisible();
|
|
await expect(page.locator(PLUGIN_MENU_ENTRY)).toContainText("Yesterday's Tasks");
|
|
});
|
|
|
|
test('disable and re-enable plugin', async ({ page, workViewPage, waitForNav }) => {
|
|
test.setTimeout(30000); // Increase timeout for this test
|
|
await workViewPage.waitForTaskList();
|
|
|
|
// Enable Yesterday's Tasks first (implementing enableTestPlugin inline)
|
|
await page.click(SETTINGS_BTN);
|
|
await waitForNav();
|
|
|
|
await page.evaluate(() => {
|
|
const configPage = document.querySelector('.page-settings');
|
|
if (!configPage) {
|
|
throw new Error('Not on config page');
|
|
}
|
|
|
|
const pluginSection = document.querySelector('.plugin-section');
|
|
if (pluginSection) {
|
|
pluginSection.scrollIntoView({ behavior: 'smooth', block: 'center' });
|
|
}
|
|
|
|
const collapsible = document.querySelector('.plugin-section collapsible');
|
|
if (collapsible) {
|
|
const isExpanded = collapsible.classList.contains('isExpanded');
|
|
if (!isExpanded) {
|
|
const header = collapsible.querySelector('.collapsible-header');
|
|
if (header) {
|
|
(header as HTMLElement).click();
|
|
}
|
|
}
|
|
}
|
|
});
|
|
|
|
await waitForNav();
|
|
await expect(page.locator('plugin-management')).toBeVisible({ timeout: 5000 });
|
|
|
|
// Enable the plugin first
|
|
await page.evaluate((pluginName: string) => {
|
|
const cards = Array.from(document.querySelectorAll('plugin-management mat-card'));
|
|
const targetCard = cards.find((card) => {
|
|
const title = card.querySelector('mat-card-title')?.textContent || '';
|
|
return title.includes(pluginName);
|
|
});
|
|
|
|
if (targetCard) {
|
|
const toggleButton = targetCard.querySelector(
|
|
'mat-slide-toggle button[role="switch"]',
|
|
) as HTMLButtonElement;
|
|
if (toggleButton) {
|
|
const wasChecked = toggleButton.getAttribute('aria-checked') === 'true';
|
|
if (!wasChecked) {
|
|
toggleButton.click();
|
|
}
|
|
}
|
|
}
|
|
}, "Yesterday's Tasks");
|
|
|
|
await waitForNav(); // Wait for plugin to initialize
|
|
|
|
// Navigate to plugin management
|
|
await expect(page.locator(PLUGIN_ITEM).first()).toBeVisible();
|
|
|
|
// Find the toggle for Yesterday's Tasks and disable it
|
|
await page.evaluate(() => {
|
|
const cards = Array.from(document.querySelectorAll('plugin-management mat-card'));
|
|
const apiTestCard = cards.find((card) => {
|
|
const title = card.querySelector('mat-card-title')?.textContent || '';
|
|
return title.includes("Yesterday's Tasks");
|
|
});
|
|
const toggle = apiTestCard?.querySelector(
|
|
'mat-slide-toggle button[role="switch"]',
|
|
) as HTMLButtonElement;
|
|
|
|
const result = {
|
|
found: !!apiTestCard,
|
|
hasToggle: !!toggle,
|
|
wasChecked: toggle?.getAttribute('aria-checked') === 'true',
|
|
clicked: false,
|
|
};
|
|
|
|
if (toggle && toggle.getAttribute('aria-checked') === 'true') {
|
|
toggle.click();
|
|
result.clicked = true;
|
|
}
|
|
|
|
return result;
|
|
});
|
|
|
|
await waitForNav(); // Give more time for plugin to unload
|
|
|
|
// Stay on the settings page, just wait for state to update
|
|
await waitForNav();
|
|
|
|
// Re-enable the plugin
|
|
await page.click(SETTINGS_BTN);
|
|
await waitForNav();
|
|
|
|
await page.evaluate(() => {
|
|
const pluginSection = document.querySelector('.plugin-section');
|
|
if (pluginSection) {
|
|
pluginSection.scrollIntoView({ behavior: 'smooth', block: 'center' });
|
|
}
|
|
});
|
|
|
|
await waitForNav();
|
|
|
|
await page.evaluate(() => {
|
|
const cards = Array.from(document.querySelectorAll('plugin-management mat-card'));
|
|
const apiTestCard = cards.find((card) => {
|
|
const title = card.querySelector('mat-card-title')?.textContent || '';
|
|
return title.includes("Yesterday's Tasks");
|
|
});
|
|
const toggle = apiTestCard?.querySelector(
|
|
'mat-slide-toggle button[role="switch"]',
|
|
) as HTMLButtonElement;
|
|
|
|
const result = {
|
|
found: !!apiTestCard,
|
|
hasToggle: !!toggle,
|
|
wasChecked: toggle?.getAttribute('aria-checked') === 'true',
|
|
clicked: false,
|
|
};
|
|
|
|
if (toggle && toggle.getAttribute('aria-checked') !== 'true') {
|
|
toggle.click();
|
|
result.clicked = true;
|
|
}
|
|
|
|
return result;
|
|
});
|
|
|
|
await waitForNav(); // Give time for plugin to reload
|
|
|
|
// Navigate back to main view
|
|
await page.click('.tour-projects'); // Click on projects/home navigation
|
|
await waitForNav();
|
|
await waitForNav();
|
|
|
|
// Verify menu entry is back
|
|
await expect(page.locator(PLUGIN_MENU_ENTRY)).toBeVisible();
|
|
await expect(page.locator(PLUGIN_MENU_ENTRY)).toContainText("Yesterday's Tasks");
|
|
});
|
|
});
|