create-appraisejs 0.2.0 ā 0.3.0-alpha.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +31 -8
- package/dist/cli-args.d.ts +6 -0
- package/dist/cli-args.d.ts.map +1 -0
- package/dist/cli-args.js +33 -0
- package/dist/cli-args.js.map +1 -0
- package/dist/cli.d.ts +2 -1
- package/dist/cli.d.ts.map +1 -1
- package/dist/cli.js +16 -8
- package/dist/cli.js.map +1 -1
- package/dist/config.d.ts +2 -1
- package/dist/config.d.ts.map +1 -1
- package/dist/config.js +3 -3
- package/dist/config.js.map +1 -1
- package/dist/copy-template.d.ts +3 -2
- package/dist/copy-template.d.ts.map +1 -1
- package/dist/copy-template.js +6 -7
- package/dist/copy-template.js.map +1 -1
- package/dist/create-project.d.ts.map +1 -1
- package/dist/create-project.js +8 -8
- package/dist/create-project.js.map +1 -1
- package/dist/prepare-template-utils.d.ts +9 -1
- package/dist/prepare-template-utils.d.ts.map +1 -1
- package/dist/prepare-template-utils.js +49 -1
- package/dist/prepare-template-utils.js.map +1 -1
- package/dist/prompts.d.ts +6 -1
- package/dist/prompts.d.ts.map +1 -1
- package/dist/prompts.js +9 -2
- package/dist/prompts.js.map +1 -1
- package/dist/sync-templates-utils.d.ts.map +1 -1
- package/dist/sync-templates-utils.js +4 -1
- package/dist/sync-templates-utils.js.map +1 -1
- package/dist/template-catalog.d.ts +22 -0
- package/dist/template-catalog.d.ts.map +1 -0
- package/dist/template-catalog.js +50 -0
- package/dist/template-catalog.js.map +1 -0
- package/package.json +5 -3
- package/templates/blank/.env.example +2 -0
- package/templates/blank/README.md +57 -0
- package/templates/blank/components.json +24 -0
- package/templates/blank/cucumber.mjs +16 -0
- package/templates/blank/eslint.config.mjs +20 -0
- package/templates/blank/next-env.d.ts +6 -0
- package/templates/blank/next.config.ts +20 -0
- package/templates/blank/package-lock.json +15012 -0
- package/templates/blank/package.json +139 -0
- package/templates/blank/packages/cucumber-runtime/package.json +13 -0
- package/templates/blank/packages/cucumber-runtime/src/cache.util.ts +93 -0
- package/templates/blank/packages/cucumber-runtime/src/cli.ts +68 -0
- package/templates/blank/packages/cucumber-runtime/src/environment.util.ts +21 -0
- package/templates/blank/packages/cucumber-runtime/src/executor.ts +32 -0
- package/templates/blank/packages/cucumber-runtime/src/index.ts +17 -0
- package/templates/blank/packages/cucumber-runtime/src/locator.util.ts +234 -0
- package/templates/blank/packages/cucumber-runtime/src/parameter-types.ts +7 -0
- package/templates/blank/packages/cucumber-runtime/src/random-data.util.ts +35 -0
- package/templates/blank/packages/cucumber-runtime/src/types.ts +13 -0
- package/templates/blank/packages/cucumber-runtime/src/world.ts +44 -0
- package/templates/blank/packages/cucumber-runtime/tsconfig.json +11 -0
- package/templates/blank/postcss.config.mjs +8 -0
- package/templates/blank/prisma/dev.db +0 -0
- package/templates/blank/prisma/migrations/20251104113456_add_type_for_template_step_groups/migration.sql +16 -0
- package/templates/blank/prisma/migrations/20251104170946_add_tags_to_test_suite_and_test_case/migration.sql +27 -0
- package/templates/blank/prisma/migrations/20251112190024_add_cascade_delete_to_test_run_test_case/migration.sql +17 -0
- package/templates/blank/prisma/migrations/20251113181100_add_test_run_log/migration.sql +12 -0
- package/templates/blank/prisma/migrations/20251119191838_add_tag_type/migration.sql +28 -0
- package/templates/blank/prisma/migrations/20251121164059_add_conflict_resolution/migration.sql +12 -0
- package/templates/blank/prisma/migrations/20251223183400_add_report_model_to_db_schema/migration.sql +10 -0
- package/templates/blank/prisma/migrations/20251223183637_add_report_test_case_entity_for_storing_test_results_for_individual_test_cases/migration.sql +10 -0
- package/templates/blank/prisma/migrations/20251224083549_add_comprehensive_report_storage/migration.sql +108 -0
- package/templates/blank/prisma/migrations/20251229194422_migrate_duration_to_string/migration.sql +55 -0
- package/templates/blank/prisma/migrations/20251230124637_add_unique_constraint_to_test_run_name/migration.sql +27 -0
- package/templates/blank/prisma/migrations/20260115094436_add_dashboard_metrics/migration.sql +59 -0
- package/templates/blank/prisma/migrations/20260127172022_add_cascade_delete_to_step_parameters/migration.sql +34 -0
- package/templates/blank/prisma/migrations/20260313093000_add_report_step_screenshot_path/migration.sql +1 -0
- package/templates/blank/public/favicon.svg +8 -0
- package/templates/blank/public/logo.svg +13 -0
- package/templates/blank/scripts/build-step-registry.ts +33 -0
- package/templates/blank/scripts/install-playwright.ts +29 -0
- package/templates/blank/scripts/install-template-step.ts +128 -0
- package/templates/blank/scripts/lib/filename-utils.test.ts +24 -0
- package/templates/blank/scripts/lib/filename-utils.ts +24 -0
- package/templates/blank/scripts/lib/jsdoc-parser.test.ts +63 -0
- package/templates/blank/scripts/lib/jsdoc-parser.ts +88 -0
- package/templates/blank/scripts/lib/step-file-parser.test.ts +71 -0
- package/templates/blank/scripts/lib/step-file-parser.ts +315 -0
- package/templates/blank/scripts/lib/step-matcher.test.ts +86 -0
- package/templates/blank/scripts/lib/step-matcher.ts +120 -0
- package/templates/blank/scripts/lib/sync-script-runner.ts +23 -0
- package/templates/blank/scripts/lib/sync-summary.ts +29 -0
- package/templates/blank/scripts/lib/tag-parsing.test.ts +20 -0
- package/templates/blank/scripts/lib/tag-parsing.ts +10 -0
- package/templates/blank/scripts/lib/template-step-installer.test.ts +225 -0
- package/templates/blank/scripts/lib/template-step-installer.ts +404 -0
- package/templates/blank/scripts/lib/template-step-registry.test.ts +118 -0
- package/templates/blank/scripts/lib/template-step-registry.ts +137 -0
- package/templates/blank/scripts/protect-seeded-files.ts +51 -0
- package/templates/blank/scripts/regenerate-features.ts +98 -0
- package/templates/blank/scripts/run-vitest.ts +59 -0
- package/templates/blank/scripts/setup-env.ts +26 -0
- package/templates/blank/scripts/sync-all.ts +287 -0
- package/templates/blank/scripts/sync-appraise-base-template.ts +244 -0
- package/templates/blank/scripts/sync-environments.ts +305 -0
- package/templates/blank/scripts/sync-locator-groups.ts +358 -0
- package/templates/blank/scripts/sync-locators.ts +348 -0
- package/templates/blank/scripts/sync-modules.ts +302 -0
- package/templates/blank/scripts/sync-tags.ts +255 -0
- package/templates/blank/scripts/sync-template-step-groups.ts +247 -0
- package/templates/blank/scripts/sync-template-steps.ts +386 -0
- package/templates/blank/scripts/sync-test-cases.ts +717 -0
- package/templates/blank/scripts/sync-test-suites.ts +369 -0
- package/templates/blank/src/actions/dashboard/dashboard-actions.ts +70 -0
- package/templates/blank/src/actions/environments/environment-actions.ts +102 -0
- package/templates/blank/src/actions/locator/locator-actions.ts +77 -0
- package/templates/blank/src/actions/locator-groups/locator-group-actions.ts +115 -0
- package/templates/blank/src/actions/locator-picker/locator-picker-actions.test.ts +81 -0
- package/templates/blank/src/actions/locator-picker/locator-picker-actions.ts +102 -0
- package/templates/blank/src/actions/modules/module-actions.ts +99 -0
- package/templates/blank/src/actions/reports/report-actions.ts +79 -0
- package/templates/blank/src/actions/settings/sync-actions.test.ts +58 -0
- package/templates/blank/src/actions/tags/tag-actions.ts +99 -0
- package/templates/blank/src/actions/template-step/template-step-actions.ts +114 -0
- package/templates/blank/src/actions/template-step-group/template-step-group-actions.ts +129 -0
- package/templates/blank/src/actions/template-test-case/template-test-case-actions.ts +98 -0
- package/templates/blank/src/actions/test-case/test-case-actions.ts +108 -0
- package/templates/blank/src/actions/test-run/test-run-actions.ts +269 -0
- package/templates/blank/src/actions/test-suite/test-suite-actions.ts +111 -0
- package/templates/blank/src/app/(base)/environments/create/page.tsx +28 -0
- package/templates/blank/src/app/(base)/environments/environment-form.test.tsx +92 -0
- package/templates/blank/src/app/(base)/environments/environment-form.tsx +228 -0
- package/templates/blank/src/app/(base)/environments/environment-helpers.ts +58 -0
- package/templates/blank/src/app/(base)/environments/environment-table-columns.tsx +96 -0
- package/templates/blank/src/app/(base)/environments/environment-table.tsx +25 -0
- package/templates/blank/src/app/(base)/environments/modify/[id]/page.tsx +49 -0
- package/templates/blank/src/app/(base)/environments/page.tsx +59 -0
- package/templates/blank/src/app/(base)/layout.tsx +10 -0
- package/templates/blank/src/app/(base)/locator-groups/create/page.tsx +44 -0
- package/templates/blank/src/app/(base)/locator-groups/locator-group-form.tsx +215 -0
- package/templates/blank/src/app/(base)/locator-groups/locator-group-table-columns.tsx +77 -0
- package/templates/blank/src/app/(base)/locator-groups/locator-group-table.tsx +28 -0
- package/templates/blank/src/app/(base)/locator-groups/modify/[id]/page.tsx +46 -0
- package/templates/blank/src/app/(base)/locators/create/create-locator-workspace-helpers.test.ts +71 -0
- package/templates/blank/src/app/(base)/locators/create/create-locator-workspace-helpers.ts +333 -0
- package/templates/blank/src/app/(base)/locators/create/create-locator-workspace.test.tsx +125 -0
- package/templates/blank/src/app/(base)/locators/create/create-locator-workspace.tsx +324 -0
- package/templates/blank/src/app/(base)/locators/create/page.tsx +55 -0
- package/templates/blank/src/app/(base)/locators/create/use-locator-workspace.ts +183 -0
- package/templates/blank/src/app/(base)/locators/locator-helpers.test.ts +28 -0
- package/templates/blank/src/app/(base)/locators/locator-helpers.ts +59 -0
- package/templates/blank/src/app/(base)/locators/locator-table-columns.tsx +74 -0
- package/templates/blank/src/app/(base)/locators/locator-table.tsx +30 -0
- package/templates/blank/src/app/(base)/locators/modify/[id]/page.tsx +86 -0
- package/templates/blank/src/app/(base)/locators/page.tsx +62 -0
- package/templates/blank/src/app/(base)/locators/sync-locators-button.tsx +67 -0
- package/templates/blank/src/app/(base)/modules/create/page.tsx +33 -0
- package/templates/blank/src/app/(base)/modules/modify/[id]/page.tsx +43 -0
- package/templates/blank/src/app/(base)/modules/module-form.test.tsx +84 -0
- package/templates/blank/src/app/(base)/modules/module-form.tsx +159 -0
- package/templates/blank/src/app/(base)/modules/module-helpers.ts +64 -0
- package/templates/blank/src/app/(base)/modules/module-table-columns.tsx +81 -0
- package/templates/blank/src/app/(base)/modules/module-table.tsx +25 -0
- package/templates/blank/src/app/(base)/modules/page.tsx +59 -0
- package/templates/blank/src/app/(base)/reports/[id]/page.tsx +284 -0
- package/templates/blank/src/app/(base)/reports/duration-chart.tsx +33 -0
- package/templates/blank/src/app/(base)/reports/feature-chart.tsx +79 -0
- package/templates/blank/src/app/(base)/reports/overview-chart.tsx +49 -0
- package/templates/blank/src/app/(base)/reports/page.tsx +98 -0
- package/templates/blank/src/app/(base)/reports/report-detail-helpers.test.ts +109 -0
- package/templates/blank/src/app/(base)/reports/report-detail-helpers.ts +247 -0
- package/templates/blank/src/app/(base)/reports/report-metric-card.tsx +78 -0
- package/templates/blank/src/app/(base)/reports/report-table-columns.tsx +189 -0
- package/templates/blank/src/app/(base)/reports/report-table.tsx +72 -0
- package/templates/blank/src/app/(base)/reports/test-cases/page.tsx +40 -0
- package/templates/blank/src/app/(base)/reports/test-cases/test-cases-metric-table-columns.tsx +115 -0
- package/templates/blank/src/app/(base)/reports/test-cases/test-cases-metric-table.tsx +27 -0
- package/templates/blank/src/app/(base)/reports/test-suites/page.tsx +42 -0
- package/templates/blank/src/app/(base)/reports/test-suites/test-suites-metric-table-columns.tsx +79 -0
- package/templates/blank/src/app/(base)/reports/test-suites/test-suites-metric-table.tsx +27 -0
- package/templates/blank/src/app/(base)/reports/view-logs-button.tsx +58 -0
- package/templates/blank/src/app/(base)/settings/settings-sync-panel-helpers.test.tsx +40 -0
- package/templates/blank/src/app/(base)/settings/settings-sync-panel-helpers.tsx +110 -0
- package/templates/blank/src/app/(base)/settings/settings-sync-panel.test.tsx +127 -0
- package/templates/blank/src/app/(base)/settings/settings-sync-panel.tsx +146 -0
- package/templates/blank/src/app/(base)/settings/use-settings-sync.ts +66 -0
- package/templates/blank/src/app/(base)/tags/create/page.tsx +39 -0
- package/templates/blank/src/app/(base)/tags/modify/[id]/page.tsx +50 -0
- package/templates/blank/src/app/(base)/tags/page.tsx +58 -0
- package/templates/blank/src/app/(base)/tags/tag-form-helpers.ts +13 -0
- package/templates/blank/src/app/(base)/tags/tag-form.test.tsx +83 -0
- package/templates/blank/src/app/(base)/tags/tag-form.tsx +143 -0
- package/templates/blank/src/app/(base)/tags/tag-table-columns.tsx +63 -0
- package/templates/blank/src/app/(base)/tags/tag-table.tsx +29 -0
- package/templates/blank/src/app/(base)/template-step-groups/create/page.tsx +28 -0
- package/templates/blank/src/app/(base)/template-step-groups/modify/[id]/page.tsx +43 -0
- package/templates/blank/src/app/(base)/template-step-groups/page.tsx +60 -0
- package/templates/blank/src/app/(base)/template-step-groups/template-step-group-form.test.tsx +82 -0
- package/templates/blank/src/app/(base)/template-step-groups/template-step-group-form.tsx +181 -0
- package/templates/blank/src/app/(base)/template-step-groups/template-step-group-helpers.ts +54 -0
- package/templates/blank/src/app/(base)/template-step-groups/template-step-group-table-columns.tsx +89 -0
- package/templates/blank/src/app/(base)/template-step-groups/template-step-group-table.tsx +34 -0
- package/templates/blank/src/app/(base)/template-steps/create/page.tsx +40 -0
- package/templates/blank/src/app/(base)/template-steps/modify/[id]/page.tsx +54 -0
- package/templates/blank/src/app/(base)/template-steps/page.tsx +59 -0
- package/templates/blank/src/app/(base)/template-steps/paramChip.tsx +233 -0
- package/templates/blank/src/app/(base)/template-steps/template-step-form.test.tsx +132 -0
- package/templates/blank/src/app/(base)/template-steps/template-step-form.tsx +342 -0
- package/templates/blank/src/app/(base)/template-steps/template-step-helpers.test.ts +99 -0
- package/templates/blank/src/app/(base)/template-steps/template-step-helpers.ts +176 -0
- package/templates/blank/src/app/(base)/template-steps/template-step-table-columns.tsx +153 -0
- package/templates/blank/src/app/(base)/template-steps/template-step-table.tsx +26 -0
- package/templates/blank/src/app/(base)/template-test-cases/create/page.tsx +56 -0
- package/templates/blank/src/app/(base)/template-test-cases/modify/[id]/page.tsx +89 -0
- package/templates/blank/src/app/(base)/template-test-cases/page.tsx +58 -0
- package/templates/blank/src/app/(base)/template-test-cases/template-test-case-flow.test.tsx +109 -0
- package/templates/blank/src/app/(base)/template-test-cases/template-test-case-flow.tsx +45 -0
- package/templates/blank/src/app/(base)/template-test-cases/template-test-case-form.test.tsx +140 -0
- package/templates/blank/src/app/(base)/template-test-cases/template-test-case-form.tsx +154 -0
- package/templates/blank/src/app/(base)/template-test-cases/template-test-case-table-columns.tsx +76 -0
- package/templates/blank/src/app/(base)/template-test-cases/template-test-case-table.tsx +32 -0
- package/templates/blank/src/app/(base)/test-cases/create/page.tsx +90 -0
- package/templates/blank/src/app/(base)/test-cases/create-from-template/create-from-template-helpers.test.ts +94 -0
- package/templates/blank/src/app/(base)/test-cases/create-from-template/create-from-template-helpers.ts +171 -0
- package/templates/blank/src/app/(base)/test-cases/create-from-template/generate/[id]/page.tsx +105 -0
- package/templates/blank/src/app/(base)/test-cases/create-from-template/page.tsx +40 -0
- package/templates/blank/src/app/(base)/test-cases/create-from-template/template-selection-form.test.tsx +87 -0
- package/templates/blank/src/app/(base)/test-cases/create-from-template/template-selection-form.tsx +83 -0
- package/templates/blank/src/app/(base)/test-cases/modify/[id]/page.tsx +106 -0
- package/templates/blank/src/app/(base)/test-cases/page.tsx +61 -0
- package/templates/blank/src/app/(base)/test-cases/test-case-flow.test.tsx +108 -0
- package/templates/blank/src/app/(base)/test-cases/test-case-flow.tsx +43 -0
- package/templates/blank/src/app/(base)/test-cases/test-case-form.test.tsx +202 -0
- package/templates/blank/src/app/(base)/test-cases/test-case-form.tsx +263 -0
- package/templates/blank/src/app/(base)/test-cases/test-case-route-helpers.test.ts +95 -0
- package/templates/blank/src/app/(base)/test-cases/test-case-route-helpers.ts +147 -0
- package/templates/blank/src/app/(base)/test-cases/test-case-table.tsx +37 -0
- package/templates/blank/src/app/(base)/test-runs/[id]/page.tsx +60 -0
- package/templates/blank/src/app/(base)/test-runs/create/page.tsx +48 -0
- package/templates/blank/src/app/(base)/test-runs/page.tsx +60 -0
- package/templates/blank/src/app/(base)/test-runs/test-run-form-helpers.test.ts +50 -0
- package/templates/blank/src/app/(base)/test-runs/test-run-form-helpers.ts +168 -0
- package/templates/blank/src/app/(base)/test-runs/test-run-form.test.tsx +138 -0
- package/templates/blank/src/app/(base)/test-runs/test-run-form.tsx +356 -0
- package/templates/blank/src/app/(base)/test-runs/test-run-table-columns.tsx +229 -0
- package/templates/blank/src/app/(base)/test-runs/test-run-table.tsx +127 -0
- package/templates/blank/src/app/(base)/test-runs/use-test-run-name-validation.ts +74 -0
- package/templates/blank/src/app/(base)/test-suites/create/page.tsx +51 -0
- package/templates/blank/src/app/(base)/test-suites/modify/[id]/page.tsx +59 -0
- package/templates/blank/src/app/(base)/test-suites/page.tsx +76 -0
- package/templates/blank/src/app/(base)/test-suites/test-suite-form.test.tsx +127 -0
- package/templates/blank/src/app/(base)/test-suites/test-suite-form.tsx +249 -0
- package/templates/blank/src/app/(base)/test-suites/test-suite-helpers.test.ts +67 -0
- package/templates/blank/src/app/(base)/test-suites/test-suite-helpers.ts +215 -0
- package/templates/blank/src/app/(base)/test-suites/test-suite-table.tsx +32 -0
- package/templates/blank/src/app/(dashboard-components)/app-drawer.tsx +187 -0
- package/templates/blank/src/app/(dashboard-components)/data-card-grid.tsx +13 -0
- package/templates/blank/src/app/(dashboard-components)/data-card.tsx +27 -0
- package/templates/blank/src/app/(dashboard-components)/execution-health-panel.tsx +57 -0
- package/templates/blank/src/app/(dashboard-components)/ongoing-test-runs-card.tsx +87 -0
- package/templates/blank/src/app/(dashboard-components)/quick-actions-drawer.tsx +45 -0
- package/templates/blank/src/app/api/reports/steps/[stepId]/screenshot/route.test.ts +83 -0
- package/templates/blank/src/app/api/reports/steps/[stepId]/screenshot/route.ts +52 -0
- package/templates/blank/src/app/api/test-runs/[runId]/download/route.test.ts +169 -0
- package/templates/blank/src/app/api/test-runs/[runId]/download/route.ts +196 -0
- package/templates/blank/src/app/api/test-runs/[runId]/trace/[testCaseId]/route.test.ts +135 -0
- package/templates/blank/src/app/api/test-runs/[runId]/trace/[testCaseId]/route.ts +146 -0
- package/templates/blank/src/app/globals.css +90 -0
- package/templates/blank/src/app/layout.tsx +207 -0
- package/templates/blank/src/app/page.tsx +65 -0
- package/templates/blank/src/assets/icons/empty-tube.tsx +23 -0
- package/templates/blank/src/assets/icons/tube-plus.tsx +29 -0
- package/templates/blank/src/components/base-node.tsx +21 -0
- package/templates/blank/src/components/chart/pie-chart.tsx +73 -0
- package/templates/blank/src/components/data-extraction/locator-inspector-helpers.test.ts +32 -0
- package/templates/blank/src/components/data-extraction/locator-inspector-helpers.ts +183 -0
- package/templates/blank/src/components/data-extraction/locator-inspector.tsx +349 -0
- package/templates/blank/src/components/data-state/empty-state.tsx +40 -0
- package/templates/blank/src/components/data-visualization/info-card.tsx +70 -0
- package/templates/blank/src/components/data-visualization/info-grid.tsx +22 -0
- package/templates/blank/src/components/diagram/button-edge.tsx +54 -0
- package/templates/blank/src/components/diagram/dynamic-parameters-helpers.test.ts +83 -0
- package/templates/blank/src/components/diagram/dynamic-parameters-helpers.ts +158 -0
- package/templates/blank/src/components/diagram/dynamic-parameters.tsx +350 -0
- package/templates/blank/src/components/diagram/edit-header-option.tsx +36 -0
- package/templates/blank/src/components/diagram/flow-diagram-helpers.test.ts +117 -0
- package/templates/blank/src/components/diagram/flow-diagram-helpers.ts +251 -0
- package/templates/blank/src/components/diagram/flow-diagram.tsx +247 -0
- package/templates/blank/src/components/diagram/flow-host-helpers.test.ts +74 -0
- package/templates/blank/src/components/diagram/flow-host-helpers.ts +51 -0
- package/templates/blank/src/components/diagram/node-form-helpers.test.ts +92 -0
- package/templates/blank/src/components/diagram/node-form-helpers.ts +100 -0
- package/templates/blank/src/components/diagram/node-form.test.tsx +168 -0
- package/templates/blank/src/components/diagram/node-form.tsx +199 -0
- package/templates/blank/src/components/diagram/options-header-node.tsx +57 -0
- package/templates/blank/src/components/diagram/template-step-combobox.tsx +155 -0
- package/templates/blank/src/components/diagram/use-flow-node-order.ts +49 -0
- package/templates/blank/src/components/form/error-message.tsx +7 -0
- package/templates/blank/src/components/kokonutui/smooth-tab.tsx +453 -0
- package/templates/blank/src/components/loading-skeleton/data-table/data-table-skeleton.tsx +30 -0
- package/templates/blank/src/components/loading-skeleton/form/button-skeleton.tsx +8 -0
- package/templates/blank/src/components/loading-skeleton/form/icon-button-skeleton.tsx +8 -0
- package/templates/blank/src/components/loading-skeleton/form/text-input-skeleton.tsx +8 -0
- package/templates/blank/src/components/loading-skeleton/visualization/table-skeleton.tsx +14 -0
- package/templates/blank/src/components/navigation/command-badge.tsx +34 -0
- package/templates/blank/src/components/navigation/command-chain-input.tsx +51 -0
- package/templates/blank/src/components/navigation/entity-search-command.tsx +118 -0
- package/templates/blank/src/components/navigation/nav-card.tsx +31 -0
- package/templates/blank/src/components/navigation/nav-command-helpers.ts +122 -0
- package/templates/blank/src/components/navigation/nav-command-search.tsx +125 -0
- package/templates/blank/src/components/navigation/nav-command.test.tsx +106 -0
- package/templates/blank/src/components/navigation/nav-command.tsx +98 -0
- package/templates/blank/src/components/navigation/nav-link.tsx +60 -0
- package/templates/blank/src/components/navigation/nav-menu-card-deck.tsx +112 -0
- package/templates/blank/src/components/navigation/use-nav-command.ts +58 -0
- package/templates/blank/src/components/node-header.tsx +159 -0
- package/templates/blank/src/components/reports/test-case-logs-modal.tsx +310 -0
- package/templates/blank/src/components/table/table-actions.tsx +174 -0
- package/templates/blank/src/components/test-case/test-case-form-helpers.test.ts +100 -0
- package/templates/blank/src/components/test-case/test-case-form-helpers.ts +140 -0
- package/templates/blank/src/components/test-case/test-case-picker-helpers.test.ts +40 -0
- package/templates/blank/src/components/test-case/test-case-picker-helpers.ts +41 -0
- package/templates/blank/src/components/test-case/test-case-picker.test.tsx +44 -0
- package/templates/blank/src/components/test-case/test-case-picker.tsx +225 -0
- package/templates/blank/src/components/test-case/test-scenario-preview.tsx +34 -0
- package/templates/blank/src/components/test-run/download-logs-button.tsx +92 -0
- package/templates/blank/src/components/test-run/log-viewer-helpers.test.ts +37 -0
- package/templates/blank/src/components/test-run/log-viewer-helpers.ts +80 -0
- package/templates/blank/src/components/test-run/log-viewer.test.tsx +118 -0
- package/templates/blank/src/components/test-run/log-viewer.tsx +133 -0
- package/templates/blank/src/components/test-run/test-run-details-helpers.test.ts +31 -0
- package/templates/blank/src/components/test-run/test-run-details-helpers.ts +208 -0
- package/templates/blank/src/components/test-run/test-run-details.test.tsx +174 -0
- package/templates/blank/src/components/test-run/test-run-details.tsx +322 -0
- package/templates/blank/src/components/test-run/test-run-header-helpers.test.ts +31 -0
- package/templates/blank/src/components/test-run/test-run-header-helpers.ts +23 -0
- package/templates/blank/src/components/test-run/test-run-header.test.tsx +103 -0
- package/templates/blank/src/components/test-run/test-run-header.tsx +27 -0
- package/templates/blank/src/components/test-run/use-log-viewer.ts +213 -0
- package/templates/blank/src/components/test-run/use-test-run-details.ts +184 -0
- package/templates/blank/src/components/test-run/use-test-run-header.ts +89 -0
- package/templates/blank/src/components/test-run/view-report-button.tsx +102 -0
- package/templates/blank/src/components/test-suite/test-suite-picker-helpers.test.ts +68 -0
- package/templates/blank/src/components/test-suite/test-suite-picker-helpers.ts +76 -0
- package/templates/blank/src/components/test-suite/test-suite-picker.test.tsx +65 -0
- package/templates/blank/src/components/test-suite/test-suite-picker.tsx +376 -0
- package/templates/blank/src/components/theme/theme-provider.tsx +16 -0
- package/templates/blank/src/components/typography/page-header-subtitle.tsx +7 -0
- package/templates/blank/src/components/typography/page-header.tsx +7 -0
- package/templates/blank/src/components/ui/alert-dialog.tsx +106 -0
- package/templates/blank/src/components/ui/alert.tsx +43 -0
- package/templates/blank/src/components/ui/avatar.tsx +40 -0
- package/templates/blank/src/components/ui/badge.tsx +29 -0
- package/templates/blank/src/components/ui/button.tsx +47 -0
- package/templates/blank/src/components/ui/calendar.tsx +158 -0
- package/templates/blank/src/components/ui/card.tsx +43 -0
- package/templates/blank/src/components/ui/checkbox.tsx +28 -0
- package/templates/blank/src/components/ui/command.tsx +135 -0
- package/templates/blank/src/components/ui/data-table-column-header.tsx +61 -0
- package/templates/blank/src/components/ui/data-table-pagination.tsx +87 -0
- package/templates/blank/src/components/ui/data-table-view-options.tsx +50 -0
- package/templates/blank/src/components/ui/data-table.test.tsx +122 -0
- package/templates/blank/src/components/ui/data-table.tsx +298 -0
- package/templates/blank/src/components/ui/dialog.tsx +97 -0
- package/templates/blank/src/components/ui/dropdown-menu.tsx +182 -0
- package/templates/blank/src/components/ui/input.tsx +22 -0
- package/templates/blank/src/components/ui/kbd.tsx +28 -0
- package/templates/blank/src/components/ui/label.tsx +19 -0
- package/templates/blank/src/components/ui/loading.tsx +12 -0
- package/templates/blank/src/components/ui/multi-select-with-preview.tsx +116 -0
- package/templates/blank/src/components/ui/multi-select.test.tsx +45 -0
- package/templates/blank/src/components/ui/multi-select.tsx +158 -0
- package/templates/blank/src/components/ui/navigation-menu.tsx +120 -0
- package/templates/blank/src/components/ui/popover.tsx +33 -0
- package/templates/blank/src/components/ui/progress.tsx +25 -0
- package/templates/blank/src/components/ui/radio-group.tsx +44 -0
- package/templates/blank/src/components/ui/scroll-area.tsx +40 -0
- package/templates/blank/src/components/ui/select.tsx +151 -0
- package/templates/blank/src/components/ui/separator.tsx +22 -0
- package/templates/blank/src/components/ui/skeleton.tsx +7 -0
- package/templates/blank/src/components/ui/table.tsx +76 -0
- package/templates/blank/src/components/ui/tabs.tsx +55 -0
- package/templates/blank/src/components/ui/textarea.tsx +21 -0
- package/templates/blank/src/components/ui/toast.tsx +113 -0
- package/templates/blank/src/components/ui/toaster.tsx +26 -0
- package/templates/blank/src/components/user-prompt/delete-prompt.test.tsx +60 -0
- package/templates/blank/src/components/user-prompt/delete-prompt.tsx +118 -0
- package/templates/blank/src/constants/form-opts/diagram/node-form.ts +30 -0
- package/templates/blank/src/constants/form-opts/environment-form-opts.ts +24 -0
- package/templates/blank/src/constants/form-opts/locator-group-form-opts.ts +28 -0
- package/templates/blank/src/constants/form-opts/module-form-opts.ts +21 -0
- package/templates/blank/src/constants/form-opts/tag-form-opts.ts +42 -0
- package/templates/blank/src/constants/form-opts/template-selection-form-opts.ts +16 -0
- package/templates/blank/src/constants/form-opts/template-step-group-form-opts.ts +24 -0
- package/templates/blank/src/constants/form-opts/template-test-case-form-opts.ts +39 -0
- package/templates/blank/src/constants/form-opts/template-test-step-form-opts.ts +36 -0
- package/templates/blank/src/constants/form-opts/test-case-form-opts.ts +43 -0
- package/templates/blank/src/constants/form-opts/test-suite-form-opts.ts +24 -0
- package/templates/blank/src/hooks/use-toast.ts +187 -0
- package/templates/blank/src/lib/automation/automation-path-roots.ts +95 -0
- package/templates/blank/src/lib/automation/automation-workspace.ts +147 -0
- package/templates/blank/src/lib/automation/paths.ts +6 -0
- package/templates/blank/src/lib/bidirectional-sync.ts +432 -0
- package/templates/blank/src/lib/environment-file-utils.ts +181 -0
- package/templates/blank/src/lib/executor/local-executor-adapter.ts +97 -0
- package/templates/blank/src/lib/feature-file-generator.ts +261 -0
- package/templates/blank/src/lib/gherkin-parser.ts +251 -0
- package/templates/blank/src/lib/locator-group-file-utils.ts +304 -0
- package/templates/blank/src/lib/locator-picker/session-manager.ts +431 -0
- package/templates/blank/src/lib/locator-picker/suggestions.ts +126 -0
- package/templates/blank/src/lib/metrics/metric-calculator.ts +614 -0
- package/templates/blank/src/lib/module-hierarchy-builder.ts +205 -0
- package/templates/blank/src/lib/path-helpers/module-path.ts +71 -0
- package/templates/blank/src/lib/sync/sync-executor.test.ts +76 -0
- package/templates/blank/src/lib/sync/sync-pending-counts.test.ts +264 -0
- package/templates/blank/src/lib/sync/sync-pending-counts.ts +1356 -0
- package/templates/blank/src/lib/template-sync-utils.d.ts +7 -0
- package/templates/blank/src/lib/template-sync-utils.js +50 -0
- package/templates/blank/src/lib/template-sync-utils.ts +65 -0
- package/templates/blank/src/lib/test-case-utils.ts +6 -0
- package/templates/blank/src/lib/test-run/log-formatter.ts +83 -0
- package/templates/blank/src/lib/test-run/report-parser.ts +352 -0
- package/templates/blank/src/lib/test-run/test-run-executor.ts +13 -0
- package/templates/blank/src/lib/test-run/winston-logger.ts +65 -0
- package/templates/blank/src/lib/transformers/gherkin-converter.ts +42 -0
- package/templates/blank/src/lib/transformers/key-to-icon-transformer.tsx +95 -0
- package/templates/blank/src/lib/transformers/template-test-case-converter.ts +160 -0
- package/templates/blank/src/lib/utils/node-param-validation.ts +81 -0
- package/templates/blank/src/lib/utils/template-step-file-generator.ts +128 -0
- package/templates/blank/src/lib/utils/template-step-file-manager.ts +166 -0
- package/templates/blank/src/lib/utils.ts +31 -0
- package/templates/blank/src/services/dashboard/dashboard-service.test.ts +106 -0
- package/templates/blank/src/services/dashboard/dashboard-service.ts +173 -0
- package/templates/blank/src/services/environment/environment-service.test.ts +137 -0
- package/templates/blank/src/services/environment/environment-service.ts +96 -0
- package/templates/blank/src/services/locator/locator-path-utils.test.ts +14 -0
- package/templates/blank/src/services/locator/locator-path-utils.ts +14 -0
- package/templates/blank/src/services/locator/locator-service.test.ts +63 -0
- package/templates/blank/src/services/locator/locator-service.ts +479 -0
- package/templates/blank/src/services/locator/locator-sync-utils.test.ts +19 -0
- package/templates/blank/src/services/locator/locator-sync-utils.ts +21 -0
- package/templates/blank/src/services/locator-group/locator-group-service.test.ts +123 -0
- package/templates/blank/src/services/locator-group/locator-group-service.ts +180 -0
- package/templates/blank/src/services/module/module-service.test.ts +89 -0
- package/templates/blank/src/services/module/module-service.ts +66 -0
- package/templates/blank/src/services/report/report-service.test.ts +244 -0
- package/templates/blank/src/services/report/report-service.ts +438 -0
- package/templates/blank/src/services/shared/constants.ts +2 -0
- package/templates/blank/src/services/shared/errors.test.ts +38 -0
- package/templates/blank/src/services/shared/errors.ts +44 -0
- package/templates/blank/src/services/shared/index.ts +7 -0
- package/templates/blank/src/services/tag/tag-service.test.ts +22 -0
- package/templates/blank/src/services/tag/tag-service.ts +41 -0
- package/templates/blank/src/services/template-step/template-step-service.test.ts +22 -0
- package/templates/blank/src/services/template-step/template-step-service.ts +171 -0
- package/templates/blank/src/services/template-step-group/template-step-group-service.test.ts +22 -0
- package/templates/blank/src/services/template-step-group/template-step-group-service.ts +81 -0
- package/templates/blank/src/services/template-test-case/template-test-case-service.test.ts +22 -0
- package/templates/blank/src/services/template-test-case/template-test-case-service.ts +128 -0
- package/templates/blank/src/services/test-case/test-case-service.test.ts +175 -0
- package/templates/blank/src/services/test-case/test-case-service.ts +298 -0
- package/templates/blank/src/services/test-run/test-run-helpers.ts +61 -0
- package/templates/blank/src/services/test-run/test-run-service.test.ts +647 -0
- package/templates/blank/src/services/test-run/test-run-service.ts +917 -0
- package/templates/blank/src/services/test-suite/test-suite-service.test.ts +127 -0
- package/templates/blank/src/services/test-suite/test-suite-service.ts +197 -0
- package/templates/blank/src/types/diagram/diagram.ts +34 -0
- package/templates/blank/src/types/diagram/template-step.ts +11 -0
- package/templates/blank/src/types/executor/browser.type.ts +1 -0
- package/templates/blank/src/types/form/actionHandler.ts +19 -0
- package/templates/blank/src/types/locator/locator.type.ts +11 -0
- package/templates/blank/src/types/step/step.type.ts +1 -0
- package/templates/blank/src/types/table/data-table.ts +6 -0
- package/templates/blank/tailwind.config.ts +62 -0
- package/templates/blank/tsconfig.json +31 -0
- package/templates/starter/.env.example +2 -0
- package/templates/starter/.vscode/settings.json +13 -0
- package/templates/starter/README.md +57 -0
- package/templates/starter/automation/config/environments/environments.json +1 -0
- package/templates/starter/automation/mapping/locator-map.json +1 -0
- package/templates/starter/automation/steps/actions/click.step.ts +59 -0
- package/templates/starter/automation/steps/actions/hover.step.ts +28 -0
- package/templates/starter/automation/steps/actions/navigation.step.ts +71 -0
- package/templates/starter/automation/steps/actions/random_data.step.ts +144 -0
- package/templates/starter/automation/steps/actions/store.step.ts +87 -0
- package/templates/starter/automation/steps/actions/wait.step.ts +111 -0
- package/templates/starter/automation/steps/validations/active_state_assertion.step.ts +31 -0
- package/templates/starter/automation/steps/validations/navigation_assertion.step.ts +23 -0
- package/templates/starter/automation/steps/validations/text_assertion.step.ts +108 -0
- package/templates/starter/automation/steps/validations/visibility_assertion.step.ts +27 -0
- package/templates/starter/components.json +24 -0
- package/templates/starter/cucumber.mjs +16 -0
- package/templates/starter/eslint.config.mjs +20 -0
- package/templates/starter/gitignore +56 -0
- package/templates/starter/next-env.d.ts +6 -0
- package/templates/starter/next.config.ts +20 -0
- package/templates/starter/package-lock.json +15012 -0
- package/templates/starter/package.json +139 -0
- package/templates/starter/packages/cucumber-runtime/package.json +13 -0
- package/templates/starter/packages/cucumber-runtime/src/cache.util.ts +93 -0
- package/templates/starter/packages/cucumber-runtime/src/cli.ts +68 -0
- package/templates/starter/packages/cucumber-runtime/src/environment.util.ts +21 -0
- package/templates/starter/packages/cucumber-runtime/src/executor.ts +32 -0
- package/templates/starter/packages/cucumber-runtime/src/hooks.ts +106 -0
- package/templates/starter/packages/cucumber-runtime/src/index.ts +17 -0
- package/templates/starter/packages/cucumber-runtime/src/locator.util.ts +234 -0
- package/templates/starter/packages/cucumber-runtime/src/parameter-types.ts +7 -0
- package/templates/starter/packages/cucumber-runtime/src/paths.ts +98 -0
- package/templates/starter/packages/cucumber-runtime/src/random-data.util.ts +35 -0
- package/templates/starter/packages/cucumber-runtime/src/types.ts +13 -0
- package/templates/starter/packages/cucumber-runtime/src/world.ts +44 -0
- package/templates/starter/packages/cucumber-runtime/tsconfig.json +11 -0
- package/templates/starter/packages/locator-picker-companion/dist/cli.d.ts +1 -0
- package/templates/starter/packages/locator-picker-companion/dist/cli.js +302 -0
- package/templates/starter/packages/locator-picker-companion/dist/index.d.ts +3 -0
- package/templates/starter/packages/locator-picker-companion/dist/index.js +3 -0
- package/templates/starter/packages/locator-picker-companion/dist/injected-picker-script.d.ts +1 -0
- package/templates/starter/packages/locator-picker-companion/dist/injected-picker-script.js +615 -0
- package/templates/starter/packages/locator-picker-companion/dist/launcher.d.ts +11 -0
- package/templates/starter/packages/locator-picker-companion/dist/launcher.js +59 -0
- package/templates/starter/packages/locator-picker-companion/dist/selector-generator.d.ts +3 -0
- package/templates/starter/packages/locator-picker-companion/dist/selector-generator.js +257 -0
- package/templates/starter/packages/locator-picker-companion/dist/session-file.d.ts +22 -0
- package/templates/starter/packages/locator-picker-companion/dist/session-file.js +150 -0
- package/templates/starter/packages/locator-picker-companion/dist/types.d.ts +31 -0
- package/templates/starter/packages/locator-picker-companion/dist/types.js +1 -0
- package/templates/starter/packages/locator-picker-companion/package.json +17 -0
- package/templates/starter/packages/locator-picker-companion/src/cli.ts +428 -0
- package/templates/starter/packages/locator-picker-companion/src/index.ts +3 -0
- package/templates/starter/packages/locator-picker-companion/src/injected-picker-script.ts +771 -0
- package/templates/starter/packages/locator-picker-companion/src/launcher.ts +77 -0
- package/templates/starter/packages/locator-picker-companion/src/selector-generator.ts +339 -0
- package/templates/starter/packages/locator-picker-companion/src/session-file.ts +226 -0
- package/templates/starter/packages/locator-picker-companion/src/types.ts +42 -0
- package/templates/starter/packages/locator-picker-companion/tsconfig.json +14 -0
- package/templates/starter/postcss.config.mjs +8 -0
- package/templates/starter/prisma/dev.db +0 -0
- package/templates/starter/prisma/migrations/20251026202316_migrate_back_to_sqlite/migration.sql +257 -0
- package/templates/starter/prisma/migrations/20251104113456_add_type_for_template_step_groups/migration.sql +16 -0
- package/templates/starter/prisma/migrations/20251104170946_add_tags_to_test_suite_and_test_case/migration.sql +27 -0
- package/templates/starter/prisma/migrations/20251112190024_add_cascade_delete_to_test_run_test_case/migration.sql +17 -0
- package/templates/starter/prisma/migrations/20251113181100_add_test_run_log/migration.sql +12 -0
- package/templates/starter/prisma/migrations/20251119191838_add_tag_type/migration.sql +28 -0
- package/templates/starter/prisma/migrations/20251121164059_add_conflict_resolution/migration.sql +12 -0
- package/templates/starter/prisma/migrations/20251130190737_add_trace_path_to_test_run_test_case/migration.sql +2 -0
- package/templates/starter/prisma/migrations/20251213074835_add_log_path_to_test_run/migration.sql +2 -0
- package/templates/starter/prisma/migrations/20251213183952_add_name_property_for_the_test_run_entities/migration.sql +30 -0
- package/templates/starter/prisma/migrations/20251223183400_add_report_model_to_db_schema/migration.sql +10 -0
- package/templates/starter/prisma/migrations/20251223183637_add_report_test_case_entity_for_storing_test_results_for_individual_test_cases/migration.sql +10 -0
- package/templates/starter/prisma/migrations/20251224083549_add_comprehensive_report_storage/migration.sql +108 -0
- package/templates/starter/prisma/migrations/20251229194422_migrate_duration_to_string/migration.sql +55 -0
- package/templates/starter/prisma/migrations/20251230124637_add_unique_constraint_to_test_run_name/migration.sql +27 -0
- package/templates/starter/prisma/migrations/20260115094436_add_dashboard_metrics/migration.sql +59 -0
- package/templates/starter/prisma/migrations/20260127172022_add_cascade_delete_to_step_parameters/migration.sql +34 -0
- package/templates/starter/prisma/migrations/20260313093000_add_report_step_screenshot_path/migration.sql +1 -0
- package/templates/starter/prisma/migrations/20260318120000_add_test_suite_context_to_test_run_test_case/migration.sql +20 -0
- package/templates/starter/prisma/migrations/20260318173512_add_support_of_test_suite_level_runs/migration.sql +2 -0
- package/templates/starter/prisma/migrations/migration_lock.toml +3 -0
- package/templates/starter/prisma/schema.prisma +558 -0
- package/templates/starter/public/favicon.svg +8 -0
- package/templates/starter/public/file.svg +1 -0
- package/templates/starter/public/globe.svg +1 -0
- package/templates/starter/public/logo.svg +13 -0
- package/templates/starter/public/next.svg +1 -0
- package/templates/starter/public/vercel.svg +1 -0
- package/templates/starter/public/window.svg +1 -0
- package/templates/starter/scripts/build-step-registry.ts +33 -0
- package/templates/starter/scripts/install-playwright.ts +29 -0
- package/templates/starter/scripts/install-template-step.ts +128 -0
- package/templates/starter/scripts/lib/filename-utils.test.ts +24 -0
- package/templates/starter/scripts/lib/filename-utils.ts +24 -0
- package/templates/starter/scripts/lib/jsdoc-parser.test.ts +63 -0
- package/templates/starter/scripts/lib/jsdoc-parser.ts +88 -0
- package/templates/starter/scripts/lib/step-file-parser.test.ts +71 -0
- package/templates/starter/scripts/lib/step-file-parser.ts +315 -0
- package/templates/starter/scripts/lib/step-matcher.test.ts +86 -0
- package/templates/starter/scripts/lib/step-matcher.ts +120 -0
- package/templates/starter/scripts/lib/sync-script-runner.ts +23 -0
- package/templates/starter/scripts/lib/sync-summary.ts +29 -0
- package/templates/starter/scripts/lib/tag-parsing.test.ts +20 -0
- package/templates/starter/scripts/lib/tag-parsing.ts +10 -0
- package/templates/starter/scripts/lib/template-step-installer.test.ts +225 -0
- package/templates/starter/scripts/lib/template-step-installer.ts +404 -0
- package/templates/starter/scripts/lib/template-step-registry.test.ts +118 -0
- package/templates/starter/scripts/lib/template-step-registry.ts +137 -0
- package/templates/starter/scripts/protect-seeded-files.ts +51 -0
- package/templates/starter/scripts/regenerate-features.ts +98 -0
- package/templates/starter/scripts/run-vitest.ts +59 -0
- package/templates/starter/scripts/setup-env.ts +26 -0
- package/templates/starter/scripts/sync-all.ts +287 -0
- package/templates/starter/scripts/sync-appraise-base-template.ts +244 -0
- package/templates/starter/scripts/sync-environments.ts +305 -0
- package/templates/starter/scripts/sync-locator-groups.ts +358 -0
- package/templates/starter/scripts/sync-locators.ts +348 -0
- package/templates/starter/scripts/sync-modules.ts +302 -0
- package/templates/starter/scripts/sync-tags.ts +255 -0
- package/templates/starter/scripts/sync-template-step-groups.ts +247 -0
- package/templates/starter/scripts/sync-template-steps.ts +386 -0
- package/templates/starter/scripts/sync-test-cases.ts +717 -0
- package/templates/starter/scripts/sync-test-suites.ts +369 -0
- package/templates/starter/src/actions/dashboard/dashboard-actions.ts +70 -0
- package/templates/starter/src/actions/environments/environment-actions.ts +102 -0
- package/templates/starter/src/actions/locator/locator-actions.ts +77 -0
- package/templates/starter/src/actions/locator-groups/locator-group-actions.ts +115 -0
- package/templates/starter/src/actions/locator-picker/locator-picker-actions.test.ts +81 -0
- package/templates/starter/src/actions/locator-picker/locator-picker-actions.ts +102 -0
- package/templates/starter/src/actions/modules/module-actions.ts +99 -0
- package/templates/starter/src/actions/reports/report-actions.ts +79 -0
- package/templates/starter/src/actions/settings/sync-actions.test.ts +58 -0
- package/templates/starter/src/actions/settings/sync-actions.ts +46 -0
- package/templates/starter/src/actions/tags/tag-actions.ts +99 -0
- package/templates/starter/src/actions/template-step/template-step-actions.ts +114 -0
- package/templates/starter/src/actions/template-step-group/template-step-group-actions.ts +129 -0
- package/templates/starter/src/actions/template-test-case/template-test-case-actions.ts +98 -0
- package/templates/starter/src/actions/test-case/test-case-actions.ts +108 -0
- package/templates/starter/src/actions/test-run/test-run-actions.ts +269 -0
- package/templates/starter/src/actions/test-suite/test-suite-actions.ts +111 -0
- package/templates/starter/src/app/(base)/environments/create/page.tsx +28 -0
- package/templates/starter/src/app/(base)/environments/environment-form.test.tsx +92 -0
- package/templates/starter/src/app/(base)/environments/environment-form.tsx +228 -0
- package/templates/starter/src/app/(base)/environments/environment-helpers.ts +58 -0
- package/templates/starter/src/app/(base)/environments/environment-table-columns.tsx +96 -0
- package/templates/starter/src/app/(base)/environments/environment-table.tsx +25 -0
- package/templates/starter/src/app/(base)/environments/modify/[id]/page.tsx +49 -0
- package/templates/starter/src/app/(base)/environments/page.tsx +59 -0
- package/templates/starter/src/app/(base)/layout.tsx +10 -0
- package/templates/starter/src/app/(base)/locator-groups/create/page.tsx +44 -0
- package/templates/starter/src/app/(base)/locator-groups/locator-group-form.tsx +215 -0
- package/templates/starter/src/app/(base)/locator-groups/locator-group-table-columns.tsx +77 -0
- package/templates/starter/src/app/(base)/locator-groups/locator-group-table.tsx +28 -0
- package/templates/starter/src/app/(base)/locator-groups/modify/[id]/page.tsx +46 -0
- package/templates/starter/src/app/(base)/locator-groups/page.tsx +71 -0
- package/templates/starter/src/app/(base)/locators/create/create-locator-workspace-helpers.test.ts +71 -0
- package/templates/starter/src/app/(base)/locators/create/create-locator-workspace-helpers.ts +333 -0
- package/templates/starter/src/app/(base)/locators/create/create-locator-workspace.test.tsx +125 -0
- package/templates/starter/src/app/(base)/locators/create/create-locator-workspace.tsx +324 -0
- package/templates/starter/src/app/(base)/locators/create/page.tsx +55 -0
- package/templates/starter/src/app/(base)/locators/create/use-locator-workspace.ts +183 -0
- package/templates/starter/src/app/(base)/locators/locator-helpers.test.ts +28 -0
- package/templates/starter/src/app/(base)/locators/locator-helpers.ts +59 -0
- package/templates/starter/src/app/(base)/locators/locator-table-columns.tsx +74 -0
- package/templates/starter/src/app/(base)/locators/locator-table.tsx +30 -0
- package/templates/starter/src/app/(base)/locators/modify/[id]/page.tsx +86 -0
- package/templates/starter/src/app/(base)/locators/page.tsx +62 -0
- package/templates/starter/src/app/(base)/locators/picker/page.tsx +7 -0
- package/templates/starter/src/app/(base)/locators/sync-locators-button.tsx +67 -0
- package/templates/starter/src/app/(base)/modules/create/page.tsx +33 -0
- package/templates/starter/src/app/(base)/modules/modify/[id]/page.tsx +43 -0
- package/templates/starter/src/app/(base)/modules/module-form.test.tsx +84 -0
- package/templates/starter/src/app/(base)/modules/module-form.tsx +159 -0
- package/templates/starter/src/app/(base)/modules/module-helpers.ts +64 -0
- package/templates/starter/src/app/(base)/modules/module-table-columns.tsx +81 -0
- package/templates/starter/src/app/(base)/modules/module-table.tsx +25 -0
- package/templates/starter/src/app/(base)/modules/page.tsx +59 -0
- package/templates/starter/src/app/(base)/reports/[id]/page.tsx +284 -0
- package/templates/starter/src/app/(base)/reports/duration-chart.tsx +33 -0
- package/templates/starter/src/app/(base)/reports/feature-chart.tsx +79 -0
- package/templates/starter/src/app/(base)/reports/overview-chart.tsx +49 -0
- package/templates/starter/src/app/(base)/reports/page.tsx +98 -0
- package/templates/starter/src/app/(base)/reports/report-detail-helpers.test.ts +109 -0
- package/templates/starter/src/app/(base)/reports/report-detail-helpers.ts +247 -0
- package/templates/starter/src/app/(base)/reports/report-metric-card.tsx +78 -0
- package/templates/starter/src/app/(base)/reports/report-table-columns.tsx +189 -0
- package/templates/starter/src/app/(base)/reports/report-table.tsx +72 -0
- package/templates/starter/src/app/(base)/reports/report-view-table-columns.tsx +142 -0
- package/templates/starter/src/app/(base)/reports/report-view-table.tsx +83 -0
- package/templates/starter/src/app/(base)/reports/test-cases/page.tsx +40 -0
- package/templates/starter/src/app/(base)/reports/test-cases/test-cases-metric-table-columns.tsx +115 -0
- package/templates/starter/src/app/(base)/reports/test-cases/test-cases-metric-table.tsx +27 -0
- package/templates/starter/src/app/(base)/reports/test-suites/page.tsx +42 -0
- package/templates/starter/src/app/(base)/reports/test-suites/test-suites-metric-table-columns.tsx +79 -0
- package/templates/starter/src/app/(base)/reports/test-suites/test-suites-metric-table.tsx +27 -0
- package/templates/starter/src/app/(base)/reports/view-logs-button.tsx +58 -0
- package/templates/starter/src/app/(base)/settings/page.tsx +30 -0
- package/templates/starter/src/app/(base)/settings/settings-sync-panel-helpers.test.tsx +40 -0
- package/templates/starter/src/app/(base)/settings/settings-sync-panel-helpers.tsx +110 -0
- package/templates/starter/src/app/(base)/settings/settings-sync-panel.test.tsx +127 -0
- package/templates/starter/src/app/(base)/settings/settings-sync-panel.tsx +146 -0
- package/templates/starter/src/app/(base)/settings/use-settings-sync.ts +66 -0
- package/templates/starter/src/app/(base)/tags/create/page.tsx +39 -0
- package/templates/starter/src/app/(base)/tags/modify/[id]/page.tsx +50 -0
- package/templates/starter/src/app/(base)/tags/page.tsx +58 -0
- package/templates/starter/src/app/(base)/tags/tag-form-helpers.ts +13 -0
- package/templates/starter/src/app/(base)/tags/tag-form.test.tsx +83 -0
- package/templates/starter/src/app/(base)/tags/tag-form.tsx +143 -0
- package/templates/starter/src/app/(base)/tags/tag-table-columns.tsx +63 -0
- package/templates/starter/src/app/(base)/tags/tag-table.tsx +29 -0
- package/templates/starter/src/app/(base)/template-step-groups/create/page.tsx +28 -0
- package/templates/starter/src/app/(base)/template-step-groups/modify/[id]/page.tsx +43 -0
- package/templates/starter/src/app/(base)/template-step-groups/page.tsx +60 -0
- package/templates/starter/src/app/(base)/template-step-groups/template-step-group-form.test.tsx +82 -0
- package/templates/starter/src/app/(base)/template-step-groups/template-step-group-form.tsx +181 -0
- package/templates/starter/src/app/(base)/template-step-groups/template-step-group-helpers.ts +54 -0
- package/templates/starter/src/app/(base)/template-step-groups/template-step-group-table-columns.tsx +89 -0
- package/templates/starter/src/app/(base)/template-step-groups/template-step-group-table.tsx +34 -0
- package/templates/starter/src/app/(base)/template-steps/create/page.tsx +40 -0
- package/templates/starter/src/app/(base)/template-steps/modify/[id]/page.tsx +54 -0
- package/templates/starter/src/app/(base)/template-steps/page.tsx +59 -0
- package/templates/starter/src/app/(base)/template-steps/paramChip.tsx +233 -0
- package/templates/starter/src/app/(base)/template-steps/template-step-form.test.tsx +132 -0
- package/templates/starter/src/app/(base)/template-steps/template-step-form.tsx +342 -0
- package/templates/starter/src/app/(base)/template-steps/template-step-helpers.test.ts +99 -0
- package/templates/starter/src/app/(base)/template-steps/template-step-helpers.ts +176 -0
- package/templates/starter/src/app/(base)/template-steps/template-step-table-columns.tsx +153 -0
- package/templates/starter/src/app/(base)/template-steps/template-step-table.tsx +26 -0
- package/templates/starter/src/app/(base)/template-test-cases/create/page.tsx +56 -0
- package/templates/starter/src/app/(base)/template-test-cases/modify/[id]/page.tsx +89 -0
- package/templates/starter/src/app/(base)/template-test-cases/page.tsx +58 -0
- package/templates/starter/src/app/(base)/template-test-cases/template-test-case-flow.test.tsx +109 -0
- package/templates/starter/src/app/(base)/template-test-cases/template-test-case-flow.tsx +45 -0
- package/templates/starter/src/app/(base)/template-test-cases/template-test-case-form.test.tsx +140 -0
- package/templates/starter/src/app/(base)/template-test-cases/template-test-case-form.tsx +154 -0
- package/templates/starter/src/app/(base)/template-test-cases/template-test-case-table-columns.tsx +76 -0
- package/templates/starter/src/app/(base)/template-test-cases/template-test-case-table.tsx +32 -0
- package/templates/starter/src/app/(base)/test-cases/create/page.tsx +90 -0
- package/templates/starter/src/app/(base)/test-cases/create-from-template/create-from-template-helpers.test.ts +94 -0
- package/templates/starter/src/app/(base)/test-cases/create-from-template/create-from-template-helpers.ts +171 -0
- package/templates/starter/src/app/(base)/test-cases/create-from-template/generate/[id]/page.tsx +105 -0
- package/templates/starter/src/app/(base)/test-cases/create-from-template/page.tsx +40 -0
- package/templates/starter/src/app/(base)/test-cases/create-from-template/template-selection-form.test.tsx +87 -0
- package/templates/starter/src/app/(base)/test-cases/create-from-template/template-selection-form.tsx +83 -0
- package/templates/starter/src/app/(base)/test-cases/modify/[id]/page.tsx +106 -0
- package/templates/starter/src/app/(base)/test-cases/page.tsx +61 -0
- package/templates/starter/src/app/(base)/test-cases/test-case-flow.test.tsx +108 -0
- package/templates/starter/src/app/(base)/test-cases/test-case-flow.tsx +43 -0
- package/templates/starter/src/app/(base)/test-cases/test-case-form.test.tsx +202 -0
- package/templates/starter/src/app/(base)/test-cases/test-case-form.tsx +263 -0
- package/templates/starter/src/app/(base)/test-cases/test-case-route-helpers.test.ts +95 -0
- package/templates/starter/src/app/(base)/test-cases/test-case-route-helpers.ts +147 -0
- package/templates/starter/src/app/(base)/test-cases/test-case-table-columns.tsx +25 -0
- package/templates/starter/src/app/(base)/test-cases/test-case-table.tsx +37 -0
- package/templates/starter/src/app/(base)/test-runs/[id]/page.tsx +60 -0
- package/templates/starter/src/app/(base)/test-runs/create/page.tsx +48 -0
- package/templates/starter/src/app/(base)/test-runs/page.tsx +60 -0
- package/templates/starter/src/app/(base)/test-runs/test-run-form-helpers.test.ts +50 -0
- package/templates/starter/src/app/(base)/test-runs/test-run-form-helpers.ts +168 -0
- package/templates/starter/src/app/(base)/test-runs/test-run-form.test.tsx +138 -0
- package/templates/starter/src/app/(base)/test-runs/test-run-form.tsx +356 -0
- package/templates/starter/src/app/(base)/test-runs/test-run-table-columns.tsx +229 -0
- package/templates/starter/src/app/(base)/test-runs/test-run-table.tsx +127 -0
- package/templates/starter/src/app/(base)/test-runs/use-test-run-name-validation.ts +74 -0
- package/templates/starter/src/app/(base)/test-suites/create/page.tsx +51 -0
- package/templates/starter/src/app/(base)/test-suites/modify/[id]/page.tsx +59 -0
- package/templates/starter/src/app/(base)/test-suites/page.tsx +76 -0
- package/templates/starter/src/app/(base)/test-suites/test-suite-form.test.tsx +127 -0
- package/templates/starter/src/app/(base)/test-suites/test-suite-form.tsx +249 -0
- package/templates/starter/src/app/(base)/test-suites/test-suite-helpers.test.ts +67 -0
- package/templates/starter/src/app/(base)/test-suites/test-suite-helpers.ts +215 -0
- package/templates/starter/src/app/(base)/test-suites/test-suite-table-columns.tsx +98 -0
- package/templates/starter/src/app/(base)/test-suites/test-suite-table.tsx +32 -0
- package/templates/starter/src/app/(dashboard-components)/app-drawer.tsx +187 -0
- package/templates/starter/src/app/(dashboard-components)/data-card-grid.tsx +13 -0
- package/templates/starter/src/app/(dashboard-components)/data-card.tsx +27 -0
- package/templates/starter/src/app/(dashboard-components)/execution-health-panel.tsx +57 -0
- package/templates/starter/src/app/(dashboard-components)/ongoing-test-runs-card.tsx +87 -0
- package/templates/starter/src/app/(dashboard-components)/quick-actions-drawer.tsx +45 -0
- package/templates/starter/src/app/api/reports/steps/[stepId]/screenshot/route.test.ts +83 -0
- package/templates/starter/src/app/api/reports/steps/[stepId]/screenshot/route.ts +52 -0
- package/templates/starter/src/app/api/test-runs/[runId]/download/route.test.ts +169 -0
- package/templates/starter/src/app/api/test-runs/[runId]/download/route.ts +196 -0
- package/templates/starter/src/app/api/test-runs/[runId]/logs/route.ts +424 -0
- package/templates/starter/src/app/api/test-runs/[runId]/trace/[testCaseId]/route.test.ts +135 -0
- package/templates/starter/src/app/api/test-runs/[runId]/trace/[testCaseId]/route.ts +146 -0
- package/templates/starter/src/app/favicon.ico +0 -0
- package/templates/starter/src/app/globals.css +90 -0
- package/templates/starter/src/app/layout.tsx +207 -0
- package/templates/starter/src/app/page.tsx +65 -0
- package/templates/starter/src/assets/icons/empty-tube.tsx +23 -0
- package/templates/starter/src/assets/icons/tube-plus.tsx +29 -0
- package/templates/starter/src/components/base-node.tsx +21 -0
- package/templates/starter/src/components/chart/pie-chart.tsx +73 -0
- package/templates/starter/src/components/data-extraction/locator-inspector-helpers.test.ts +32 -0
- package/templates/starter/src/components/data-extraction/locator-inspector-helpers.ts +183 -0
- package/templates/starter/src/components/data-extraction/locator-inspector.tsx +349 -0
- package/templates/starter/src/components/data-state/empty-state.tsx +40 -0
- package/templates/starter/src/components/data-visualization/info-card.tsx +70 -0
- package/templates/starter/src/components/data-visualization/info-grid.tsx +22 -0
- package/templates/starter/src/components/diagram/button-edge.tsx +54 -0
- package/templates/starter/src/components/diagram/dynamic-parameters-helpers.test.ts +83 -0
- package/templates/starter/src/components/diagram/dynamic-parameters-helpers.ts +158 -0
- package/templates/starter/src/components/diagram/dynamic-parameters.tsx +350 -0
- package/templates/starter/src/components/diagram/edit-header-option.tsx +36 -0
- package/templates/starter/src/components/diagram/flow-diagram-helpers.test.ts +117 -0
- package/templates/starter/src/components/diagram/flow-diagram-helpers.ts +251 -0
- package/templates/starter/src/components/diagram/flow-diagram.tsx +247 -0
- package/templates/starter/src/components/diagram/flow-host-helpers.test.ts +74 -0
- package/templates/starter/src/components/diagram/flow-host-helpers.ts +51 -0
- package/templates/starter/src/components/diagram/node-form-helpers.test.ts +92 -0
- package/templates/starter/src/components/diagram/node-form-helpers.ts +100 -0
- package/templates/starter/src/components/diagram/node-form.test.tsx +168 -0
- package/templates/starter/src/components/diagram/node-form.tsx +199 -0
- package/templates/starter/src/components/diagram/options-header-node.tsx +57 -0
- package/templates/starter/src/components/diagram/template-step-combobox.tsx +155 -0
- package/templates/starter/src/components/diagram/use-flow-node-order.ts +49 -0
- package/templates/starter/src/components/form/error-message.tsx +7 -0
- package/templates/starter/src/components/kokonutui/smooth-tab.tsx +453 -0
- package/templates/starter/src/components/loading-skeleton/data-table/data-table-skeleton.tsx +30 -0
- package/templates/starter/src/components/loading-skeleton/form/button-skeleton.tsx +8 -0
- package/templates/starter/src/components/loading-skeleton/form/icon-button-skeleton.tsx +8 -0
- package/templates/starter/src/components/loading-skeleton/form/text-input-skeleton.tsx +8 -0
- package/templates/starter/src/components/loading-skeleton/visualization/table-skeleton.tsx +14 -0
- package/templates/starter/src/components/logo.tsx +15 -0
- package/templates/starter/src/components/navigation/command-badge.tsx +34 -0
- package/templates/starter/src/components/navigation/command-chain-input.tsx +51 -0
- package/templates/starter/src/components/navigation/entity-search-command.tsx +118 -0
- package/templates/starter/src/components/navigation/nav-card.tsx +31 -0
- package/templates/starter/src/components/navigation/nav-command-helpers.ts +122 -0
- package/templates/starter/src/components/navigation/nav-command-search.tsx +125 -0
- package/templates/starter/src/components/navigation/nav-command.test.tsx +106 -0
- package/templates/starter/src/components/navigation/nav-command.tsx +98 -0
- package/templates/starter/src/components/navigation/nav-link.tsx +60 -0
- package/templates/starter/src/components/navigation/nav-menu-card-deck.tsx +112 -0
- package/templates/starter/src/components/navigation/use-nav-command.ts +58 -0
- package/templates/starter/src/components/node-header.tsx +159 -0
- package/templates/starter/src/components/reports/test-case-logs-modal.tsx +310 -0
- package/templates/starter/src/components/table/table-actions.tsx +174 -0
- package/templates/starter/src/components/test-case/test-case-columns.tsx +76 -0
- package/templates/starter/src/components/test-case/test-case-form-helpers.test.ts +100 -0
- package/templates/starter/src/components/test-case/test-case-form-helpers.ts +140 -0
- package/templates/starter/src/components/test-case/test-case-picker-helpers.test.ts +40 -0
- package/templates/starter/src/components/test-case/test-case-picker-helpers.ts +41 -0
- package/templates/starter/src/components/test-case/test-case-picker.test.tsx +44 -0
- package/templates/starter/src/components/test-case/test-case-picker.tsx +225 -0
- package/templates/starter/src/components/test-case/test-scenario-preview.tsx +34 -0
- package/templates/starter/src/components/test-run/download-logs-button.tsx +92 -0
- package/templates/starter/src/components/test-run/log-viewer-helpers.test.ts +37 -0
- package/templates/starter/src/components/test-run/log-viewer-helpers.ts +80 -0
- package/templates/starter/src/components/test-run/log-viewer.test.tsx +118 -0
- package/templates/starter/src/components/test-run/log-viewer.tsx +133 -0
- package/templates/starter/src/components/test-run/test-run-details-helpers.test.ts +31 -0
- package/templates/starter/src/components/test-run/test-run-details-helpers.ts +208 -0
- package/templates/starter/src/components/test-run/test-run-details.test.tsx +174 -0
- package/templates/starter/src/components/test-run/test-run-details.tsx +322 -0
- package/templates/starter/src/components/test-run/test-run-header-helpers.test.ts +31 -0
- package/templates/starter/src/components/test-run/test-run-header-helpers.ts +23 -0
- package/templates/starter/src/components/test-run/test-run-header.test.tsx +103 -0
- package/templates/starter/src/components/test-run/test-run-header.tsx +27 -0
- package/templates/starter/src/components/test-run/use-log-viewer.ts +213 -0
- package/templates/starter/src/components/test-run/use-test-run-details.ts +184 -0
- package/templates/starter/src/components/test-run/use-test-run-header.ts +89 -0
- package/templates/starter/src/components/test-run/view-report-button.tsx +102 -0
- package/templates/starter/src/components/test-suite/test-suite-picker-helpers.test.ts +68 -0
- package/templates/starter/src/components/test-suite/test-suite-picker-helpers.ts +76 -0
- package/templates/starter/src/components/test-suite/test-suite-picker.test.tsx +65 -0
- package/templates/starter/src/components/test-suite/test-suite-picker.tsx +376 -0
- package/templates/starter/src/components/theme/theme-provider.tsx +16 -0
- package/templates/starter/src/components/typography/page-header-subtitle.tsx +7 -0
- package/templates/starter/src/components/typography/page-header.tsx +7 -0
- package/templates/starter/src/components/ui/alert-dialog.tsx +106 -0
- package/templates/starter/src/components/ui/alert.tsx +43 -0
- package/templates/starter/src/components/ui/avatar.tsx +40 -0
- package/templates/starter/src/components/ui/badge.tsx +29 -0
- package/templates/starter/src/components/ui/button.tsx +47 -0
- package/templates/starter/src/components/ui/calendar.tsx +158 -0
- package/templates/starter/src/components/ui/card.tsx +43 -0
- package/templates/starter/src/components/ui/chart.tsx +369 -0
- package/templates/starter/src/components/ui/checkbox.tsx +28 -0
- package/templates/starter/src/components/ui/command.tsx +135 -0
- package/templates/starter/src/components/ui/data-table-column-header.tsx +61 -0
- package/templates/starter/src/components/ui/data-table-pagination.tsx +87 -0
- package/templates/starter/src/components/ui/data-table-view-options.tsx +50 -0
- package/templates/starter/src/components/ui/data-table.test.tsx +122 -0
- package/templates/starter/src/components/ui/data-table.tsx +298 -0
- package/templates/starter/src/components/ui/dialog.tsx +97 -0
- package/templates/starter/src/components/ui/dropdown-menu.tsx +182 -0
- package/templates/starter/src/components/ui/empty.tsx +104 -0
- package/templates/starter/src/components/ui/input.tsx +22 -0
- package/templates/starter/src/components/ui/kbd.tsx +28 -0
- package/templates/starter/src/components/ui/label.tsx +19 -0
- package/templates/starter/src/components/ui/loading.tsx +12 -0
- package/templates/starter/src/components/ui/multi-select-with-preview.tsx +116 -0
- package/templates/starter/src/components/ui/multi-select.test.tsx +45 -0
- package/templates/starter/src/components/ui/multi-select.tsx +158 -0
- package/templates/starter/src/components/ui/navigation-menu.tsx +120 -0
- package/templates/starter/src/components/ui/popover.tsx +33 -0
- package/templates/starter/src/components/ui/progress.tsx +25 -0
- package/templates/starter/src/components/ui/radio-group.tsx +44 -0
- package/templates/starter/src/components/ui/scroll-area.tsx +40 -0
- package/templates/starter/src/components/ui/select.tsx +151 -0
- package/templates/starter/src/components/ui/separator.tsx +22 -0
- package/templates/starter/src/components/ui/skeleton.tsx +7 -0
- package/templates/starter/src/components/ui/table.tsx +76 -0
- package/templates/starter/src/components/ui/tabs.tsx +55 -0
- package/templates/starter/src/components/ui/textarea.tsx +21 -0
- package/templates/starter/src/components/ui/toast.tsx +113 -0
- package/templates/starter/src/components/ui/toaster.tsx +26 -0
- package/templates/starter/src/components/ui/tooltip.tsx +32 -0
- package/templates/starter/src/components/user-prompt/delete-prompt.test.tsx +60 -0
- package/templates/starter/src/components/user-prompt/delete-prompt.tsx +118 -0
- package/templates/starter/src/config/db-config.ts +71 -0
- package/templates/starter/src/constants/form-opts/diagram/node-form.ts +30 -0
- package/templates/starter/src/constants/form-opts/environment-form-opts.ts +24 -0
- package/templates/starter/src/constants/form-opts/locator-group-form-opts.ts +28 -0
- package/templates/starter/src/constants/form-opts/module-form-opts.ts +21 -0
- package/templates/starter/src/constants/form-opts/tag-form-opts.ts +42 -0
- package/templates/starter/src/constants/form-opts/template-selection-form-opts.ts +16 -0
- package/templates/starter/src/constants/form-opts/template-step-group-form-opts.ts +24 -0
- package/templates/starter/src/constants/form-opts/template-test-case-form-opts.ts +39 -0
- package/templates/starter/src/constants/form-opts/template-test-step-form-opts.ts +36 -0
- package/templates/starter/src/constants/form-opts/test-case-form-opts.ts +43 -0
- package/templates/starter/src/constants/form-opts/test-run-form-opts.ts +33 -0
- package/templates/starter/src/constants/form-opts/test-suite-form-opts.ts +24 -0
- package/templates/starter/src/hooks/use-toast.ts +187 -0
- package/templates/starter/src/lib/automation/automation-path-roots.ts +95 -0
- package/templates/starter/src/lib/automation/automation-workspace.ts +147 -0
- package/templates/starter/src/lib/automation/paths.ts +6 -0
- package/templates/starter/src/lib/automation/projection-service.ts +226 -0
- package/templates/starter/src/lib/bidirectional-sync.ts +432 -0
- package/templates/starter/src/lib/database-sync.ts +526 -0
- package/templates/starter/src/lib/environment-file-utils.ts +181 -0
- package/templates/starter/src/lib/executor/local-executor-adapter.ts +97 -0
- package/templates/starter/src/lib/executor/types.ts +24 -0
- package/templates/starter/src/lib/feature-file-generator.ts +261 -0
- package/templates/starter/src/lib/gherkin-parser.test.ts +44 -0
- package/templates/starter/src/lib/gherkin-parser.ts +251 -0
- package/templates/starter/src/lib/locator-group-file-utils.ts +304 -0
- package/templates/starter/src/lib/locator-picker/session-manager.ts +431 -0
- package/templates/starter/src/lib/locator-picker/suggestions.ts +126 -0
- package/templates/starter/src/lib/metrics/metric-calculator.ts +614 -0
- package/templates/starter/src/lib/module-hierarchy-builder.ts +205 -0
- package/templates/starter/src/lib/path-helpers/module-path.ts +71 -0
- package/templates/starter/src/lib/process/task-spawner.ts +273 -0
- package/templates/starter/src/lib/sync/projected-feature-utils.ts +113 -0
- package/templates/starter/src/lib/sync/sync-executor.test.ts +76 -0
- package/templates/starter/src/lib/sync/sync-executor.ts +130 -0
- package/templates/starter/src/lib/sync/sync-pending-counts.test.ts +264 -0
- package/templates/starter/src/lib/sync/sync-pending-counts.ts +1356 -0
- package/templates/starter/src/lib/sync/sync-registry.ts +149 -0
- package/templates/starter/src/lib/tag-utils.ts +28 -0
- package/templates/starter/src/lib/template-sync-utils.d.ts +7 -0
- package/templates/starter/src/lib/template-sync-utils.d.ts.map +1 -0
- package/templates/starter/src/lib/template-sync-utils.js +50 -0
- package/templates/starter/src/lib/template-sync-utils.js.map +1 -0
- package/templates/starter/src/lib/template-sync-utils.ts +65 -0
- package/templates/starter/src/lib/test-case-utils.ts +6 -0
- package/templates/starter/src/lib/test-run/log-formatter.ts +83 -0
- package/templates/starter/src/lib/test-run/matching.ts +117 -0
- package/templates/starter/src/lib/test-run/process-manager.ts +115 -0
- package/templates/starter/src/lib/test-run/report-parser.ts +352 -0
- package/templates/starter/src/lib/test-run/test-run-executor.ts +13 -0
- package/templates/starter/src/lib/test-run/winston-logger.ts +65 -0
- package/templates/starter/src/lib/test-suite-identifier-service.ts +76 -0
- package/templates/starter/src/lib/test-suite-utils.ts +6 -0
- package/templates/starter/src/lib/transformers/gherkin-converter.ts +42 -0
- package/templates/starter/src/lib/transformers/key-to-icon-transformer.tsx +95 -0
- package/templates/starter/src/lib/transformers/template-test-case-converter.ts +160 -0
- package/templates/starter/src/lib/utils/node-param-validation.ts +81 -0
- package/templates/starter/src/lib/utils/template-step-file-generator.ts +128 -0
- package/templates/starter/src/lib/utils/template-step-file-manager-intelligent.ts +700 -0
- package/templates/starter/src/lib/utils/template-step-file-manager.ts +166 -0
- package/templates/starter/src/lib/utils.ts +31 -0
- package/templates/starter/src/services/dashboard/dashboard-service.test.ts +106 -0
- package/templates/starter/src/services/dashboard/dashboard-service.ts +173 -0
- package/templates/starter/src/services/environment/environment-service.test.ts +137 -0
- package/templates/starter/src/services/environment/environment-service.ts +96 -0
- package/templates/starter/src/services/locator/locator-path-utils.test.ts +14 -0
- package/templates/starter/src/services/locator/locator-path-utils.ts +14 -0
- package/templates/starter/src/services/locator/locator-service.test.ts +63 -0
- package/templates/starter/src/services/locator/locator-service.ts +479 -0
- package/templates/starter/src/services/locator/locator-sync-utils.test.ts +19 -0
- package/templates/starter/src/services/locator/locator-sync-utils.ts +21 -0
- package/templates/starter/src/services/locator-group/locator-group-service.test.ts +123 -0
- package/templates/starter/src/services/locator-group/locator-group-service.ts +180 -0
- package/templates/starter/src/services/module/module-service.test.ts +89 -0
- package/templates/starter/src/services/module/module-service.ts +66 -0
- package/templates/starter/src/services/report/report-service.test.ts +244 -0
- package/templates/starter/src/services/report/report-service.ts +438 -0
- package/templates/starter/src/services/shared/constants.ts +2 -0
- package/templates/starter/src/services/shared/errors.test.ts +38 -0
- package/templates/starter/src/services/shared/errors.ts +44 -0
- package/templates/starter/src/services/shared/index.ts +7 -0
- package/templates/starter/src/services/tag/tag-service.test.ts +22 -0
- package/templates/starter/src/services/tag/tag-service.ts +41 -0
- package/templates/starter/src/services/template-step/template-step-service.test.ts +22 -0
- package/templates/starter/src/services/template-step/template-step-service.ts +171 -0
- package/templates/starter/src/services/template-step-group/template-step-group-service.test.ts +22 -0
- package/templates/starter/src/services/template-step-group/template-step-group-service.ts +81 -0
- package/templates/starter/src/services/template-test-case/template-test-case-service.test.ts +22 -0
- package/templates/starter/src/services/template-test-case/template-test-case-service.ts +128 -0
- package/templates/starter/src/services/test-case/test-case-service.test.ts +175 -0
- package/templates/starter/src/services/test-case/test-case-service.ts +298 -0
- package/templates/starter/src/services/test-run/test-run-helpers.ts +61 -0
- package/templates/starter/src/services/test-run/test-run-service.test.ts +647 -0
- package/templates/starter/src/services/test-run/test-run-service.ts +917 -0
- package/templates/starter/src/services/test-suite/test-suite-service.test.ts +127 -0
- package/templates/starter/src/services/test-suite/test-suite-service.ts +197 -0
- package/templates/starter/src/types/diagram/diagram.ts +34 -0
- package/templates/starter/src/types/diagram/template-step.ts +11 -0
- package/templates/starter/src/types/executor/browser.type.ts +1 -0
- package/templates/starter/src/types/form/actionHandler.ts +19 -0
- package/templates/starter/src/types/locator/locator.type.ts +11 -0
- package/templates/starter/src/types/locator-picker.ts +65 -0
- package/templates/starter/src/types/step/step.type.ts +1 -0
- package/templates/starter/src/types/table/data-table.ts +6 -0
- package/templates/starter/src/types/test-case-picker.ts +6 -0
- package/templates/starter/src/types/test-suite-picker.ts +18 -0
- package/templates/starter/tailwind.config.ts +62 -0
- package/templates/starter/tsconfig.json +31 -0
- package/dist/cli.e2e.test.d.ts +0 -2
- package/dist/cli.e2e.test.d.ts.map +0 -1
- package/dist/cli.e2e.test.js +0 -73
- package/dist/cli.e2e.test.js.map +0 -1
- package/dist/config.test.d.ts +0 -2
- package/dist/config.test.d.ts.map +0 -1
- package/dist/config.test.js +0 -65
- package/dist/config.test.js.map +0 -1
- package/dist/copy-template.test.d.ts +0 -2
- package/dist/copy-template.test.d.ts.map +0 -1
- package/dist/copy-template.test.js +0 -71
- package/dist/copy-template.test.js.map +0 -1
- package/dist/download-repo.test.d.ts +0 -2
- package/dist/download-repo.test.d.ts.map +0 -1
- package/dist/download-repo.test.js +0 -14
- package/dist/download-repo.test.js.map +0 -1
- package/dist/install.test.d.ts +0 -2
- package/dist/install.test.d.ts.map +0 -1
- package/dist/install.test.js +0 -119
- package/dist/install.test.js.map +0 -1
- package/dist/prompts.test.d.ts +0 -2
- package/dist/prompts.test.d.ts.map +0 -1
- package/dist/prompts.test.js +0 -58
- package/dist/prompts.test.js.map +0 -1
- package/templates/default/.appraise-template-meta.json +0 -5
- package/templates/default/.env.example +0 -2
- package/templates/default/README.md +0 -53
- package/templates/default/automation/steps/actions/click.step.ts +0 -59
- package/templates/default/automation/steps/actions/hover.step.ts +0 -28
- package/templates/default/automation/steps/actions/navigation.step.ts +0 -71
- package/templates/default/automation/steps/actions/random_data.step.ts +0 -144
- package/templates/default/automation/steps/actions/store.step.ts +0 -87
- package/templates/default/automation/steps/actions/wait.step.ts +0 -91
- package/templates/default/automation/steps/validations/active_state_assertion.step.ts +0 -31
- package/templates/default/automation/steps/validations/navigation_assertion.step.ts +0 -23
- package/templates/default/automation/steps/validations/text_assertion.step.ts +0 -108
- package/templates/default/automation/steps/validations/visibility_assertion.step.ts +0 -27
- package/templates/default/components.json +0 -24
- package/templates/default/cucumber.mjs +0 -16
- package/templates/default/eslint.config.mjs +0 -16
- package/templates/default/next-env.d.ts +0 -6
- package/templates/default/next.config.ts +0 -11
- package/templates/default/package-lock.json +0 -13256
- package/templates/default/package.json +0 -132
- package/templates/default/packages/cucumber-runtime/package.json +0 -13
- package/templates/default/packages/cucumber-runtime/src/cache.util.ts +0 -93
- package/templates/default/packages/cucumber-runtime/src/cli.ts +0 -68
- package/templates/default/packages/cucumber-runtime/src/environment.util.ts +0 -21
- package/templates/default/packages/cucumber-runtime/src/executor.ts +0 -32
- package/templates/default/packages/cucumber-runtime/src/index.ts +0 -17
- package/templates/default/packages/cucumber-runtime/src/locator.util.ts +0 -234
- package/templates/default/packages/cucumber-runtime/src/parameter-types.ts +0 -7
- package/templates/default/packages/cucumber-runtime/src/random-data.util.ts +0 -35
- package/templates/default/packages/cucumber-runtime/src/types.ts +0 -13
- package/templates/default/packages/cucumber-runtime/src/world.ts +0 -44
- package/templates/default/packages/cucumber-runtime/tsconfig.json +0 -11
- package/templates/default/postcss.config.mjs +0 -8
- package/templates/default/prisma/dev.db +0 -0
- package/templates/default/prisma/migrations/20251104113456_add_type_for_template_step_groups/migration.sql +0 -16
- package/templates/default/prisma/migrations/20251104170946_add_tags_to_test_suite_and_test_case/migration.sql +0 -27
- package/templates/default/prisma/migrations/20251112190024_add_cascade_delete_to_test_run_test_case/migration.sql +0 -17
- package/templates/default/prisma/migrations/20251113181100_add_test_run_log/migration.sql +0 -12
- package/templates/default/prisma/migrations/20251119191838_add_tag_type/migration.sql +0 -28
- package/templates/default/prisma/migrations/20251121164059_add_conflict_resolution/migration.sql +0 -12
- package/templates/default/prisma/migrations/20251223183400_add_report_model_to_db_schema/migration.sql +0 -10
- package/templates/default/prisma/migrations/20251223183637_add_report_test_case_entity_for_storing_test_results_for_individual_test_cases/migration.sql +0 -10
- package/templates/default/prisma/migrations/20251224083549_add_comprehensive_report_storage/migration.sql +0 -108
- package/templates/default/prisma/migrations/20251229194422_migrate_duration_to_string/migration.sql +0 -55
- package/templates/default/prisma/migrations/20251230124637_add_unique_constraint_to_test_run_name/migration.sql +0 -27
- package/templates/default/prisma/migrations/20260115094436_add_dashboard_metrics/migration.sql +0 -59
- package/templates/default/prisma/migrations/20260127172022_add_cascade_delete_to_step_parameters/migration.sql +0 -34
- package/templates/default/prisma/migrations/20260313093000_add_report_step_screenshot_path/migration.sql +0 -1
- package/templates/default/public/favicon.svg +0 -11
- package/templates/default/public/logo.svg +0 -18
- package/templates/default/scripts/install-playwright.ts +0 -20
- package/templates/default/scripts/protect-seeded-files.ts +0 -38
- package/templates/default/scripts/regenerate-features.ts +0 -94
- package/templates/default/scripts/setup-env.ts +0 -19
- package/templates/default/scripts/sync-all.ts +0 -297
- package/templates/default/scripts/sync-appraise-base-template.ts +0 -216
- package/templates/default/scripts/sync-environments.ts +0 -349
- package/templates/default/scripts/sync-locator-groups.ts +0 -410
- package/templates/default/scripts/sync-locators.ts +0 -398
- package/templates/default/scripts/sync-modules.ts +0 -341
- package/templates/default/scripts/sync-tags.ts +0 -291
- package/templates/default/scripts/sync-template-step-groups.ts +0 -406
- package/templates/default/scripts/sync-template-steps.ts +0 -843
- package/templates/default/scripts/sync-test-cases.ts +0 -960
- package/templates/default/scripts/sync-test-suites.ts +0 -416
- package/templates/default/src/actions/conflict/conflict.action.ts +0 -33
- package/templates/default/src/actions/dashboard/dashboard-actions.ts +0 -241
- package/templates/default/src/actions/environments/environment-actions.ts +0 -188
- package/templates/default/src/actions/locator/locator-actions.ts +0 -490
- package/templates/default/src/actions/locator-groups/locator-group-actions.ts +0 -293
- package/templates/default/src/actions/locator-picker/locator-picker-actions.ts +0 -243
- package/templates/default/src/actions/modules/module-actions.ts +0 -135
- package/templates/default/src/actions/reports/report-actions.ts +0 -616
- package/templates/default/src/actions/review/review-actions.ts +0 -147
- package/templates/default/src/actions/tags/tag-actions.ts +0 -107
- package/templates/default/src/actions/template-step/template-step-actions.ts +0 -275
- package/templates/default/src/actions/template-step-group/template-step-group-actions.ts +0 -186
- package/templates/default/src/actions/template-test-case/template-test-case-actions.ts +0 -238
- package/templates/default/src/actions/test-case/test-case-actions.ts +0 -356
- package/templates/default/src/actions/test-run/test-run-actions.ts +0 -1276
- package/templates/default/src/actions/test-suite/test-suite-actions.ts +0 -278
- package/templates/default/src/actions/user/user-actions.ts +0 -13
- package/templates/default/src/app/(base)/environments/create/page.tsx +0 -28
- package/templates/default/src/app/(base)/environments/environment-form.tsx +0 -219
- package/templates/default/src/app/(base)/environments/environment-table-columns.tsx +0 -96
- package/templates/default/src/app/(base)/environments/environment-table.tsx +0 -24
- package/templates/default/src/app/(base)/environments/modify/[id]/page.tsx +0 -46
- package/templates/default/src/app/(base)/environments/page.tsx +0 -59
- package/templates/default/src/app/(base)/layout.tsx +0 -10
- package/templates/default/src/app/(base)/locator-groups/create/page.tsx +0 -44
- package/templates/default/src/app/(base)/locator-groups/locator-group-form.tsx +0 -215
- package/templates/default/src/app/(base)/locator-groups/locator-group-table-columns.tsx +0 -77
- package/templates/default/src/app/(base)/locator-groups/locator-group-table.tsx +0 -28
- package/templates/default/src/app/(base)/locator-groups/modify/[id]/page.tsx +0 -46
- package/templates/default/src/app/(base)/locators/create/create-locator-workspace.tsx +0 -542
- package/templates/default/src/app/(base)/locators/create/page.tsx +0 -51
- package/templates/default/src/app/(base)/locators/locator-form.tsx +0 -163
- package/templates/default/src/app/(base)/locators/locator-table-columns.tsx +0 -73
- package/templates/default/src/app/(base)/locators/locator-table.tsx +0 -28
- package/templates/default/src/app/(base)/locators/modify/[id]/page.tsx +0 -74
- package/templates/default/src/app/(base)/locators/page.tsx +0 -65
- package/templates/default/src/app/(base)/locators/sync-locators-button.tsx +0 -66
- package/templates/default/src/app/(base)/modules/create/page.tsx +0 -34
- package/templates/default/src/app/(base)/modules/modify/[id]/page.tsx +0 -46
- package/templates/default/src/app/(base)/modules/module-form.tsx +0 -126
- package/templates/default/src/app/(base)/modules/module-table-columns.tsx +0 -85
- package/templates/default/src/app/(base)/modules/module-table.tsx +0 -24
- package/templates/default/src/app/(base)/modules/page.tsx +0 -59
- package/templates/default/src/app/(base)/reports/[id]/page.tsx +0 -524
- package/templates/default/src/app/(base)/reports/duration-chart.tsx +0 -33
- package/templates/default/src/app/(base)/reports/feature-chart.tsx +0 -78
- package/templates/default/src/app/(base)/reports/overview-chart.tsx +0 -49
- package/templates/default/src/app/(base)/reports/page.tsx +0 -98
- package/templates/default/src/app/(base)/reports/report-metric-card.tsx +0 -78
- package/templates/default/src/app/(base)/reports/report-table-columns.tsx +0 -189
- package/templates/default/src/app/(base)/reports/report-table.tsx +0 -72
- package/templates/default/src/app/(base)/reports/test-cases/page.tsx +0 -40
- package/templates/default/src/app/(base)/reports/test-cases/test-cases-metric-table-columns.tsx +0 -115
- package/templates/default/src/app/(base)/reports/test-cases/test-cases-metric-table.tsx +0 -27
- package/templates/default/src/app/(base)/reports/test-suites/page.tsx +0 -42
- package/templates/default/src/app/(base)/reports/test-suites/test-suites-metric-table-columns.tsx +0 -79
- package/templates/default/src/app/(base)/reports/test-suites/test-suites-metric-table.tsx +0 -27
- package/templates/default/src/app/(base)/reports/view-logs-button.tsx +0 -58
- package/templates/default/src/app/(base)/reviews/create/page.tsx +0 -26
- package/templates/default/src/app/(base)/reviews/created-reviews-table.tsx +0 -15
- package/templates/default/src/app/(base)/reviews/modify/[id]/page.tsx +0 -26
- package/templates/default/src/app/(base)/reviews/page.tsx +0 -26
- package/templates/default/src/app/(base)/reviews/review/[id]/page.tsx +0 -26
- package/templates/default/src/app/(base)/reviews/review-form.tsx +0 -11
- package/templates/default/src/app/(base)/reviews/review-table-by-creator-columns.tsx +0 -9
- package/templates/default/src/app/(base)/reviews/review-table-by-reviewer-columns.tsx +0 -9
- package/templates/default/src/app/(base)/reviews/reviewer-reviews-table.tsx +0 -15
- package/templates/default/src/app/(base)/settings/settings-sync-panel.tsx +0 -261
- package/templates/default/src/app/(base)/tags/create/page.tsx +0 -39
- package/templates/default/src/app/(base)/tags/modify/[id]/page.tsx +0 -50
- package/templates/default/src/app/(base)/tags/page.tsx +0 -58
- package/templates/default/src/app/(base)/tags/tag-form.tsx +0 -147
- package/templates/default/src/app/(base)/tags/tag-table-columns.tsx +0 -63
- package/templates/default/src/app/(base)/tags/tag-table.tsx +0 -29
- package/templates/default/src/app/(base)/template-step-groups/create/page.tsx +0 -28
- package/templates/default/src/app/(base)/template-step-groups/modify/[id]/page.tsx +0 -45
- package/templates/default/src/app/(base)/template-step-groups/page.tsx +0 -60
- package/templates/default/src/app/(base)/template-step-groups/template-step-group-form.tsx +0 -167
- package/templates/default/src/app/(base)/template-step-groups/template-step-group-table-columns.tsx +0 -89
- package/templates/default/src/app/(base)/template-step-groups/template-step-group-table.tsx +0 -32
- package/templates/default/src/app/(base)/template-steps/create/page.tsx +0 -37
- package/templates/default/src/app/(base)/template-steps/modify/[id]/page.tsx +0 -49
- package/templates/default/src/app/(base)/template-steps/page.tsx +0 -58
- package/templates/default/src/app/(base)/template-steps/paramChip.tsx +0 -213
- package/templates/default/src/app/(base)/template-steps/template-step-form.tsx +0 -384
- package/templates/default/src/app/(base)/template-steps/template-step-table-columns.tsx +0 -158
- package/templates/default/src/app/(base)/template-steps/template-step-table.tsx +0 -24
- package/templates/default/src/app/(base)/template-test-cases/create/page.tsx +0 -56
- package/templates/default/src/app/(base)/template-test-cases/modify/[id]/page.tsx +0 -89
- package/templates/default/src/app/(base)/template-test-cases/page.tsx +0 -58
- package/templates/default/src/app/(base)/template-test-cases/template-test-case-flow.tsx +0 -84
- package/templates/default/src/app/(base)/template-test-cases/template-test-case-form.tsx +0 -262
- package/templates/default/src/app/(base)/template-test-cases/template-test-case-table-columns.tsx +0 -76
- package/templates/default/src/app/(base)/template-test-cases/template-test-case-table.tsx +0 -32
- package/templates/default/src/app/(base)/test-cases/create/page.tsx +0 -76
- package/templates/default/src/app/(base)/test-cases/create-from-template/generate/[id]/page.tsx +0 -96
- package/templates/default/src/app/(base)/test-cases/create-from-template/page.tsx +0 -38
- package/templates/default/src/app/(base)/test-cases/create-from-template/template-selection-form.tsx +0 -73
- package/templates/default/src/app/(base)/test-cases/modify/[id]/page.tsx +0 -106
- package/templates/default/src/app/(base)/test-cases/page.tsx +0 -60
- package/templates/default/src/app/(base)/test-cases/test-case-flow.tsx +0 -82
- package/templates/default/src/app/(base)/test-cases/test-case-form.tsx +0 -395
- package/templates/default/src/app/(base)/test-cases/test-case-table.tsx +0 -35
- package/templates/default/src/app/(base)/test-runs/[id]/page.tsx +0 -59
- package/templates/default/src/app/(base)/test-runs/create/page.tsx +0 -49
- package/templates/default/src/app/(base)/test-runs/page.tsx +0 -60
- package/templates/default/src/app/(base)/test-runs/test-run-form.tsx +0 -501
- package/templates/default/src/app/(base)/test-runs/test-run-table-columns.tsx +0 -229
- package/templates/default/src/app/(base)/test-runs/test-run-table.tsx +0 -127
- package/templates/default/src/app/(base)/test-suites/create/page.tsx +0 -46
- package/templates/default/src/app/(base)/test-suites/modify/[id]/page.tsx +0 -56
- package/templates/default/src/app/(base)/test-suites/page.tsx +0 -118
- package/templates/default/src/app/(base)/test-suites/test-suite-form.tsx +0 -268
- package/templates/default/src/app/(base)/test-suites/test-suite-table.tsx +0 -29
- package/templates/default/src/app/(dashboard-components)/app-drawer.tsx +0 -187
- package/templates/default/src/app/(dashboard-components)/data-card-grid.tsx +0 -13
- package/templates/default/src/app/(dashboard-components)/data-card.tsx +0 -27
- package/templates/default/src/app/(dashboard-components)/execution-health-panel.tsx +0 -57
- package/templates/default/src/app/(dashboard-components)/ongoing-test-runs-card.tsx +0 -87
- package/templates/default/src/app/(dashboard-components)/quick-actions-drawer.tsx +0 -45
- package/templates/default/src/app/api/reports/steps/[stepId]/screenshot/route.ts +0 -52
- package/templates/default/src/app/api/test-runs/[runId]/download/route.ts +0 -196
- package/templates/default/src/app/api/test-runs/[runId]/trace/[testCaseId]/route.ts +0 -146
- package/templates/default/src/app/globals.css +0 -147
- package/templates/default/src/app/layout.tsx +0 -212
- package/templates/default/src/app/page.tsx +0 -65
- package/templates/default/src/assets/icons/empty-tube.tsx +0 -23
- package/templates/default/src/assets/icons/tube-plus.tsx +0 -29
- package/templates/default/src/components/base-node.tsx +0 -21
- package/templates/default/src/components/chart/pie-chart.tsx +0 -73
- package/templates/default/src/components/data-extraction/locator-inspector.tsx +0 -460
- package/templates/default/src/components/data-state/empty-state.tsx +0 -40
- package/templates/default/src/components/data-visualization/info-card.tsx +0 -70
- package/templates/default/src/components/data-visualization/info-grid.tsx +0 -22
- package/templates/default/src/components/diagram/button-edge.tsx +0 -54
- package/templates/default/src/components/diagram/dynamic-parameters.tsx +0 -474
- package/templates/default/src/components/diagram/edit-header-option.tsx +0 -36
- package/templates/default/src/components/diagram/flow-diagram.tsx +0 -470
- package/templates/default/src/components/diagram/node-form.tsx +0 -262
- package/templates/default/src/components/diagram/options-header-node.tsx +0 -57
- package/templates/default/src/components/diagram/template-step-combobox.tsx +0 -155
- package/templates/default/src/components/form/error-message.tsx +0 -7
- package/templates/default/src/components/kokonutui/smooth-tab.tsx +0 -453
- package/templates/default/src/components/loading-skeleton/data-table/data-table-skeleton.tsx +0 -30
- package/templates/default/src/components/loading-skeleton/form/button-skeleton.tsx +0 -8
- package/templates/default/src/components/loading-skeleton/form/icon-button-skeleton.tsx +0 -8
- package/templates/default/src/components/loading-skeleton/form/text-input-skeleton.tsx +0 -8
- package/templates/default/src/components/loading-skeleton/visualization/table-skeleton.tsx +0 -14
- package/templates/default/src/components/navigation/command-badge.tsx +0 -34
- package/templates/default/src/components/navigation/command-chain-input.tsx +0 -51
- package/templates/default/src/components/navigation/entity-search-command.tsx +0 -116
- package/templates/default/src/components/navigation/nav-card.tsx +0 -31
- package/templates/default/src/components/navigation/nav-command.tsx +0 -521
- package/templates/default/src/components/navigation/nav-link.tsx +0 -60
- package/templates/default/src/components/navigation/nav-menu-card-deck.tsx +0 -112
- package/templates/default/src/components/node-header.tsx +0 -159
- package/templates/default/src/components/reports/test-case-logs-modal.tsx +0 -310
- package/templates/default/src/components/table/table-actions.tsx +0 -172
- package/templates/default/src/components/test-case/test-case-picker.tsx +0 -244
- package/templates/default/src/components/test-run/download-logs-button.tsx +0 -92
- package/templates/default/src/components/test-run/log-viewer.tsx +0 -432
- package/templates/default/src/components/test-run/test-run-details.tsx +0 -624
- package/templates/default/src/components/test-run/test-run-header.tsx +0 -149
- package/templates/default/src/components/test-run/view-report-button.tsx +0 -102
- package/templates/default/src/components/test-suite/test-suite-picker.tsx +0 -444
- package/templates/default/src/components/theme/mode-toggle.tsx +0 -54
- package/templates/default/src/components/theme/theme-provider.tsx +0 -8
- package/templates/default/src/components/typography/page-header-subtitle.tsx +0 -7
- package/templates/default/src/components/typography/page-header.tsx +0 -7
- package/templates/default/src/components/ui/alert-dialog.tsx +0 -106
- package/templates/default/src/components/ui/alert.tsx +0 -43
- package/templates/default/src/components/ui/avatar.tsx +0 -40
- package/templates/default/src/components/ui/badge.tsx +0 -29
- package/templates/default/src/components/ui/button.tsx +0 -47
- package/templates/default/src/components/ui/calendar.tsx +0 -158
- package/templates/default/src/components/ui/card.tsx +0 -43
- package/templates/default/src/components/ui/checkbox.tsx +0 -28
- package/templates/default/src/components/ui/command.tsx +0 -135
- package/templates/default/src/components/ui/data-table-column-header.tsx +0 -61
- package/templates/default/src/components/ui/data-table-pagination.tsx +0 -87
- package/templates/default/src/components/ui/data-table-view-options.tsx +0 -50
- package/templates/default/src/components/ui/data-table.tsx +0 -261
- package/templates/default/src/components/ui/dialog.tsx +0 -97
- package/templates/default/src/components/ui/dropdown-menu.tsx +0 -182
- package/templates/default/src/components/ui/input.tsx +0 -22
- package/templates/default/src/components/ui/kbd.tsx +0 -28
- package/templates/default/src/components/ui/label.tsx +0 -19
- package/templates/default/src/components/ui/loading.tsx +0 -12
- package/templates/default/src/components/ui/multi-select-with-preview.tsx +0 -116
- package/templates/default/src/components/ui/multi-select.tsx +0 -142
- package/templates/default/src/components/ui/navigation-menu.tsx +0 -120
- package/templates/default/src/components/ui/popover.tsx +0 -33
- package/templates/default/src/components/ui/progress.tsx +0 -25
- package/templates/default/src/components/ui/radio-group.tsx +0 -44
- package/templates/default/src/components/ui/scroll-area.tsx +0 -40
- package/templates/default/src/components/ui/select.tsx +0 -151
- package/templates/default/src/components/ui/separator.tsx +0 -22
- package/templates/default/src/components/ui/skeleton.tsx +0 -7
- package/templates/default/src/components/ui/table.tsx +0 -76
- package/templates/default/src/components/ui/tabs.tsx +0 -55
- package/templates/default/src/components/ui/textarea.tsx +0 -21
- package/templates/default/src/components/ui/toast.tsx +0 -113
- package/templates/default/src/components/ui/toaster.tsx +0 -26
- package/templates/default/src/components/user-prompt/delete-prompt.tsx +0 -87
- package/templates/default/src/constants/form-opts/diagram/node-form.ts +0 -30
- package/templates/default/src/constants/form-opts/environment-form-opts.ts +0 -24
- package/templates/default/src/constants/form-opts/locator-form-opts.ts +0 -20
- package/templates/default/src/constants/form-opts/locator-group-form-opts.ts +0 -28
- package/templates/default/src/constants/form-opts/module-form-opts.ts +0 -21
- package/templates/default/src/constants/form-opts/review-form-opts.ts +0 -23
- package/templates/default/src/constants/form-opts/tag-form-opts.ts +0 -42
- package/templates/default/src/constants/form-opts/template-selection-form-opts.ts +0 -16
- package/templates/default/src/constants/form-opts/template-step-group-form-opts.ts +0 -24
- package/templates/default/src/constants/form-opts/template-test-case-form-opts.ts +0 -39
- package/templates/default/src/constants/form-opts/template-test-step-form-opts.ts +0 -36
- package/templates/default/src/constants/form-opts/test-case-form-opts.ts +0 -43
- package/templates/default/src/constants/form-opts/test-suite-form-opts.ts +0 -24
- package/templates/default/src/hooks/use-toast.ts +0 -187
- package/templates/default/src/lib/automation/paths.ts +0 -211
- package/templates/default/src/lib/bidirectional-sync.ts +0 -432
- package/templates/default/src/lib/environment-file-utils.ts +0 -180
- package/templates/default/src/lib/executor/local-executor-adapter.ts +0 -100
- package/templates/default/src/lib/feature-file-generator.ts +0 -260
- package/templates/default/src/lib/gherkin-parser.ts +0 -253
- package/templates/default/src/lib/locator-group-file-utils.ts +0 -307
- package/templates/default/src/lib/locator-picker/session-manager.ts +0 -452
- package/templates/default/src/lib/locator-picker/suggestions.ts +0 -124
- package/templates/default/src/lib/metrics/metric-calculator.ts +0 -618
- package/templates/default/src/lib/module-hierarchy-builder.ts +0 -205
- package/templates/default/src/lib/path-helpers/module-path.ts +0 -71
- package/templates/default/src/lib/sync/sync-pending-counts.test.ts +0 -263
- package/templates/default/src/lib/sync/sync-pending-counts.ts +0 -1359
- package/templates/default/src/lib/template-sync-utils.d.ts +0 -7
- package/templates/default/src/lib/template-sync-utils.js +0 -47
- package/templates/default/src/lib/template-sync-utils.ts +0 -63
- package/templates/default/src/lib/test-case-utils.ts +0 -6
- package/templates/default/src/lib/test-run/log-formatter.ts +0 -83
- package/templates/default/src/lib/test-run/report-parser.ts +0 -352
- package/templates/default/src/lib/test-run/test-run-executor.ts +0 -13
- package/templates/default/src/lib/test-run/winston-logger.ts +0 -64
- package/templates/default/src/lib/transformers/gherkin-converter.ts +0 -42
- package/templates/default/src/lib/transformers/key-to-icon-transformer.tsx +0 -95
- package/templates/default/src/lib/transformers/template-test-case-converter.ts +0 -160
- package/templates/default/src/lib/utils/node-param-validation.ts +0 -81
- package/templates/default/src/lib/utils/template-step-file-generator.ts +0 -128
- package/templates/default/src/lib/utils/template-step-file-manager.ts +0 -166
- package/templates/default/src/lib/utils.ts +0 -31
- package/templates/default/src/types/diagram/diagram.ts +0 -34
- package/templates/default/src/types/diagram/template-step.ts +0 -11
- package/templates/default/src/types/executor/browser.type.ts +0 -1
- package/templates/default/src/types/form/actionHandler.ts +0 -6
- package/templates/default/src/types/locator/locator.type.ts +0 -11
- package/templates/default/src/types/step/step.type.ts +0 -1
- package/templates/default/src/types/table/data-table.ts +0 -6
- package/templates/default/tailwind.config.ts +0 -62
- package/templates/default/tsconfig.json +0 -31
- /package/templates/{default ā blank}/.vscode/settings.json +0 -0
- /package/templates/{default ā blank}/automation/config/environments/environments.json +0 -0
- /package/templates/{default ā blank}/automation/mapping/locator-map.json +0 -0
- /package/templates/{default ā blank}/gitignore +0 -0
- /package/templates/{default ā blank}/packages/cucumber-runtime/src/hooks.ts +0 -0
- /package/templates/{default ā blank}/packages/cucumber-runtime/src/paths.ts +0 -0
- /package/templates/{default ā blank}/packages/locator-picker-companion/dist/cli.d.ts +0 -0
- /package/templates/{default ā blank}/packages/locator-picker-companion/dist/cli.js +0 -0
- /package/templates/{default ā blank}/packages/locator-picker-companion/dist/index.d.ts +0 -0
- /package/templates/{default ā blank}/packages/locator-picker-companion/dist/index.js +0 -0
- /package/templates/{default ā blank}/packages/locator-picker-companion/dist/injected-picker-script.d.ts +0 -0
- /package/templates/{default ā blank}/packages/locator-picker-companion/dist/injected-picker-script.js +0 -0
- /package/templates/{default ā blank}/packages/locator-picker-companion/dist/launcher.d.ts +0 -0
- /package/templates/{default ā blank}/packages/locator-picker-companion/dist/launcher.js +0 -0
- /package/templates/{default ā blank}/packages/locator-picker-companion/dist/selector-generator.d.ts +0 -0
- /package/templates/{default ā blank}/packages/locator-picker-companion/dist/selector-generator.js +0 -0
- /package/templates/{default ā blank}/packages/locator-picker-companion/dist/session-file.d.ts +0 -0
- /package/templates/{default ā blank}/packages/locator-picker-companion/dist/session-file.js +0 -0
- /package/templates/{default ā blank}/packages/locator-picker-companion/dist/types.d.ts +0 -0
- /package/templates/{default ā blank}/packages/locator-picker-companion/dist/types.js +0 -0
- /package/templates/{default ā blank}/packages/locator-picker-companion/package.json +0 -0
- /package/templates/{default ā blank}/packages/locator-picker-companion/src/cli.ts +0 -0
- /package/templates/{default ā blank}/packages/locator-picker-companion/src/index.ts +0 -0
- /package/templates/{default ā blank}/packages/locator-picker-companion/src/injected-picker-script.ts +0 -0
- /package/templates/{default ā blank}/packages/locator-picker-companion/src/launcher.ts +0 -0
- /package/templates/{default ā blank}/packages/locator-picker-companion/src/selector-generator.ts +0 -0
- /package/templates/{default ā blank}/packages/locator-picker-companion/src/session-file.ts +0 -0
- /package/templates/{default ā blank}/packages/locator-picker-companion/src/types.ts +0 -0
- /package/templates/{default ā blank}/packages/locator-picker-companion/tsconfig.json +0 -0
- /package/templates/{default ā blank}/prisma/migrations/20251026202316_migrate_back_to_sqlite/migration.sql +0 -0
- /package/templates/{default ā blank}/prisma/migrations/20251130190737_add_trace_path_to_test_run_test_case/migration.sql +0 -0
- /package/templates/{default ā blank}/prisma/migrations/20251213074835_add_log_path_to_test_run/migration.sql +0 -0
- /package/templates/{default ā blank}/prisma/migrations/20251213183952_add_name_property_for_the_test_run_entities/migration.sql +0 -0
- /package/templates/{default ā blank}/prisma/migrations/20260318120000_add_test_suite_context_to_test_run_test_case/migration.sql +0 -0
- /package/templates/{default ā blank}/prisma/migrations/20260318173512_add_support_of_test_suite_level_runs/migration.sql +0 -0
- /package/templates/{default ā blank}/prisma/migrations/migration_lock.toml +0 -0
- /package/templates/{default ā blank}/prisma/schema.prisma +0 -0
- /package/templates/{default ā blank}/public/file.svg +0 -0
- /package/templates/{default ā blank}/public/globe.svg +0 -0
- /package/templates/{default ā blank}/public/next.svg +0 -0
- /package/templates/{default ā blank}/public/vercel.svg +0 -0
- /package/templates/{default ā blank}/public/window.svg +0 -0
- /package/templates/{default ā blank}/src/actions/settings/sync-actions.ts +0 -0
- /package/templates/{default ā blank}/src/app/(base)/locator-groups/page.tsx +0 -0
- /package/templates/{default ā blank}/src/app/(base)/locators/picker/page.tsx +0 -0
- /package/templates/{default ā blank}/src/app/(base)/reports/report-view-table-columns.tsx +0 -0
- /package/templates/{default ā blank}/src/app/(base)/reports/report-view-table.tsx +0 -0
- /package/templates/{default ā blank}/src/app/(base)/settings/page.tsx +0 -0
- /package/templates/{default ā blank}/src/app/(base)/test-cases/test-case-table-columns.tsx +0 -0
- /package/templates/{default ā blank}/src/app/(base)/test-suites/test-suite-table-columns.tsx +0 -0
- /package/templates/{default ā blank}/src/app/api/test-runs/[runId]/logs/route.ts +0 -0
- /package/templates/{default ā blank}/src/app/favicon.ico +0 -0
- /package/templates/{default ā blank}/src/components/logo.tsx +0 -0
- /package/templates/{default ā blank}/src/components/test-case/test-case-columns.tsx +0 -0
- /package/templates/{default ā blank}/src/components/ui/chart.tsx +0 -0
- /package/templates/{default ā blank}/src/components/ui/empty.tsx +0 -0
- /package/templates/{default ā blank}/src/components/ui/tooltip.tsx +0 -0
- /package/templates/{default ā blank}/src/config/db-config.ts +0 -0
- /package/templates/{default ā blank}/src/constants/form-opts/test-run-form-opts.ts +0 -0
- /package/templates/{default ā blank}/src/lib/automation/projection-service.ts +0 -0
- /package/templates/{default ā blank}/src/lib/database-sync.ts +0 -0
- /package/templates/{default ā blank}/src/lib/executor/types.ts +0 -0
- /package/templates/{default ā blank}/src/lib/gherkin-parser.test.ts +0 -0
- /package/templates/{default ā blank}/src/lib/process/task-spawner.ts +0 -0
- /package/templates/{default ā blank}/src/lib/sync/projected-feature-utils.ts +0 -0
- /package/templates/{default ā blank}/src/lib/sync/sync-executor.ts +0 -0
- /package/templates/{default ā blank}/src/lib/sync/sync-registry.ts +0 -0
- /package/templates/{default ā blank}/src/lib/tag-utils.ts +0 -0
- /package/templates/{default ā blank}/src/lib/template-sync-utils.d.ts.map +0 -0
- /package/templates/{default ā blank}/src/lib/template-sync-utils.js.map +0 -0
- /package/templates/{default ā blank}/src/lib/test-run/matching.ts +0 -0
- /package/templates/{default ā blank}/src/lib/test-run/process-manager.ts +0 -0
- /package/templates/{default ā blank}/src/lib/test-suite-identifier-service.ts +0 -0
- /package/templates/{default ā blank}/src/lib/test-suite-utils.ts +0 -0
- /package/templates/{default ā blank}/src/lib/utils/template-step-file-manager-intelligent.ts +0 -0
- /package/templates/{default ā blank}/src/types/locator-picker.ts +0 -0
- /package/templates/{default ā blank}/src/types/test-case-picker.ts +0 -0
- /package/templates/{default ā blank}/src/types/test-suite-picker.ts +0 -0
- /package/templates/{default ā starter}/automation/steps/actions/input.step.ts +0 -0
|
@@ -1,960 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env tsx
|
|
2
|
-
|
|
3
|
-
/**
|
|
4
|
-
* Script to synchronize test cases from feature files to database
|
|
5
|
-
* Scans feature files to ensure all test cases exist in DB
|
|
6
|
-
* Filesystem is the source of truth - test cases in DB but not in FS will be deleted
|
|
7
|
-
* Run this after merging changes to ensure test case sync
|
|
8
|
-
*
|
|
9
|
-
* Usage: npx tsx scripts/sync-test-cases.ts
|
|
10
|
-
*/
|
|
11
|
-
|
|
12
|
-
import prisma from '../src/config/db-config'
|
|
13
|
-
import {
|
|
14
|
-
scanFeatureFiles,
|
|
15
|
-
extractModulePathFromFilePath,
|
|
16
|
-
ParsedStep,
|
|
17
|
-
} from '../src/lib/gherkin-parser'
|
|
18
|
-
import { buildModuleHierarchy, findModuleByPath } from '../src/lib/module-hierarchy-builder'
|
|
19
|
-
import { TemplateStepType, TemplateStepIcon, StepParameterType, TagType } from '@prisma/client'
|
|
20
|
-
import { ensureAutomationWorkspaceReady, getAutomationFeaturesDir } from '../src/lib/automation/paths'
|
|
21
|
-
import {
|
|
22
|
-
determineProjectedStepIcon,
|
|
23
|
-
getTestSuiteFilesystemKey,
|
|
24
|
-
normalizeProjectedDbTestCaseSteps,
|
|
25
|
-
} from '../src/lib/sync/projected-feature-utils'
|
|
26
|
-
|
|
27
|
-
interface TestCaseFromFS {
|
|
28
|
-
identifierTag: string // @tc_... tag
|
|
29
|
-
title: string // From [brackets]
|
|
30
|
-
description: string // Outside brackets
|
|
31
|
-
testSuiteName: string // From feature file name
|
|
32
|
-
modulePath: string // From folder structure
|
|
33
|
-
filterTags: string[] // Scenario tags excluding @tc_...
|
|
34
|
-
steps: ParsedStep[] // From scenario steps
|
|
35
|
-
filePath: string // Feature file path
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
interface ParameterMatch {
|
|
39
|
-
name: string
|
|
40
|
-
value: string
|
|
41
|
-
order: number
|
|
42
|
-
type: StepParameterType
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
interface TemplateStepMatch {
|
|
46
|
-
templateStepId: string
|
|
47
|
-
signature: string
|
|
48
|
-
parameters: ParameterMatch[]
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
interface SyncResult {
|
|
52
|
-
testCasesScanned: number
|
|
53
|
-
testCasesExisting: number
|
|
54
|
-
testCasesCreated: number
|
|
55
|
-
testCasesUpdated: number
|
|
56
|
-
testCasesDeleted: number
|
|
57
|
-
errors: string[]
|
|
58
|
-
warnings: string[]
|
|
59
|
-
createdTestCases: Array<{ identifierTag: string; title: string }>
|
|
60
|
-
updatedTestCases: Array<{ identifierTag: string; title: string }>
|
|
61
|
-
deletedTestCases: Array<{ identifierTag: string; title: string }>
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
/**
|
|
65
|
-
* Extracts test suite name from filename
|
|
66
|
-
* Example: "login-validation.feature" -> "login-validation"
|
|
67
|
-
*/
|
|
68
|
-
function extractTestSuiteNameFromFilename(filePath: string): string {
|
|
69
|
-
const fileName = filePath.split(/[/\\]/).pop() || ''
|
|
70
|
-
return fileName.replace(/\.feature$/, '')
|
|
71
|
-
}
|
|
72
|
-
|
|
73
|
-
/**
|
|
74
|
-
* Splits a tag line that may contain multiple tags separated by spaces
|
|
75
|
-
* Example: "@smoke @demo" -> ["@smoke", "@demo"]
|
|
76
|
-
*/
|
|
77
|
-
function splitTagLine(tagLine: string): string[] {
|
|
78
|
-
return tagLine
|
|
79
|
-
.split(/\s+/)
|
|
80
|
-
.filter(tag => tag.trim().startsWith('@'))
|
|
81
|
-
.map(tag => tag.trim())
|
|
82
|
-
}
|
|
83
|
-
|
|
84
|
-
/**
|
|
85
|
-
* Normalizes a tag expression to ensure it has the @ prefix
|
|
86
|
-
* Example: "tc_123" -> "@tc_123", "@tc_123" -> "@tc_123"
|
|
87
|
-
*/
|
|
88
|
-
function normalizeTagExpression(tagExpression: string): string {
|
|
89
|
-
return tagExpression.startsWith('@') ? tagExpression : `@${tagExpression}`
|
|
90
|
-
}
|
|
91
|
-
|
|
92
|
-
/**
|
|
93
|
-
* Parses scenario title to extract title and description
|
|
94
|
-
* Note: The gherkin parser already extracts these but swaps them
|
|
95
|
-
* Format: [Title] Description
|
|
96
|
-
* Example: "[Login] Validate login page navigation"
|
|
97
|
-
* The parser returns: name="Validate login page navigation", description="Login"
|
|
98
|
-
* We need: title="Login", description="Validate login page navigation"
|
|
99
|
-
*/
|
|
100
|
-
function parseScenarioTitle(
|
|
101
|
-
scenarioName: string,
|
|
102
|
-
scenarioDescription?: string,
|
|
103
|
-
): { title: string; description: string } {
|
|
104
|
-
// If description exists, it means there was a [bracket] in the original
|
|
105
|
-
// The parser swapped them, so description is the title and name is the description
|
|
106
|
-
if (scenarioDescription) {
|
|
107
|
-
return {
|
|
108
|
-
title: scenarioDescription.trim(),
|
|
109
|
-
description: scenarioName.trim(),
|
|
110
|
-
}
|
|
111
|
-
}
|
|
112
|
-
// If no description, there were no brackets, use name as description
|
|
113
|
-
return {
|
|
114
|
-
title: scenarioName.trim(),
|
|
115
|
-
description: '',
|
|
116
|
-
}
|
|
117
|
-
}
|
|
118
|
-
|
|
119
|
-
/**
|
|
120
|
-
* Scans feature files and extracts test case information
|
|
121
|
-
*/
|
|
122
|
-
async function scanTestCasesFromFilesystem(featuresDir: string): Promise<TestCaseFromFS[]> {
|
|
123
|
-
const testCases: TestCaseFromFS[] = []
|
|
124
|
-
|
|
125
|
-
console.log('š Scanning feature files...')
|
|
126
|
-
const parsedFeatures = await scanFeatureFiles(featuresDir)
|
|
127
|
-
console.log(` Found ${parsedFeatures.length} feature file(s)`)
|
|
128
|
-
|
|
129
|
-
for (const parsedFeature of parsedFeatures) {
|
|
130
|
-
try {
|
|
131
|
-
const testSuiteName = extractTestSuiteNameFromFilename(parsedFeature.filePath)
|
|
132
|
-
const modulePath = extractModulePathFromFilePath(parsedFeature.filePath, featuresDir)
|
|
133
|
-
|
|
134
|
-
for (const scenario of parsedFeature.scenarios) {
|
|
135
|
-
// Find identifier tag (@tc_...)
|
|
136
|
-
const identifierTag = scenario.tags.find(tag => {
|
|
137
|
-
const tagName = tag.startsWith('@') ? tag.substring(1) : tag
|
|
138
|
-
return tagName.startsWith('tc_')
|
|
139
|
-
})
|
|
140
|
-
|
|
141
|
-
if (!identifierTag) {
|
|
142
|
-
console.log(
|
|
143
|
-
` ā ļø Scenario "${scenario.name}" in ${parsedFeature.filePath} has no @tc_... identifier tag, skipping`,
|
|
144
|
-
)
|
|
145
|
-
continue
|
|
146
|
-
}
|
|
147
|
-
|
|
148
|
-
// Extract filter tags (all tags except identifier tag)
|
|
149
|
-
const filterTags = scenario.tags.filter(tag => tag !== identifierTag).flatMap(tag => splitTagLine(tag))
|
|
150
|
-
|
|
151
|
-
// Parse title and description from scenario name
|
|
152
|
-
// Note: gherkin parser swaps them, so we pass both
|
|
153
|
-
const { title, description } = parseScenarioTitle(scenario.name, scenario.description)
|
|
154
|
-
|
|
155
|
-
testCases.push({
|
|
156
|
-
identifierTag: identifierTag.startsWith('@') ? identifierTag : `@${identifierTag}`,
|
|
157
|
-
title,
|
|
158
|
-
description,
|
|
159
|
-
testSuiteName,
|
|
160
|
-
modulePath,
|
|
161
|
-
filterTags,
|
|
162
|
-
steps: scenario.steps,
|
|
163
|
-
filePath: parsedFeature.filePath,
|
|
164
|
-
})
|
|
165
|
-
}
|
|
166
|
-
} catch (error) {
|
|
167
|
-
console.error(` ā Error processing feature file '${parsedFeature.filePath}': ${error}`)
|
|
168
|
-
}
|
|
169
|
-
}
|
|
170
|
-
|
|
171
|
-
return testCases
|
|
172
|
-
}
|
|
173
|
-
|
|
174
|
-
/**
|
|
175
|
-
* Converts template step signature to regex pattern
|
|
176
|
-
* Replaces placeholders like {string}, {int}, {boolean} with regex patterns
|
|
177
|
-
*/
|
|
178
|
-
function signatureToRegex(signature: string): RegExp {
|
|
179
|
-
// Escape special regex characters except placeholders
|
|
180
|
-
let pattern = signature.replace(/[.*+?^${}()|[\]\\]/g, match => {
|
|
181
|
-
// Don't escape { and } as they're our placeholders
|
|
182
|
-
if (match === '{' || match === '}') return match
|
|
183
|
-
return '\\' + match
|
|
184
|
-
})
|
|
185
|
-
|
|
186
|
-
// Replace placeholders with regex patterns
|
|
187
|
-
pattern = pattern.replace(/\{string\}/g, '"([^"]+)"') // Matches quoted strings
|
|
188
|
-
pattern = pattern.replace(/\{int\}/g, '(\\d+)') // Matches integers
|
|
189
|
-
pattern = pattern.replace(/\{boolean\}/g, '(true|false)') // Matches booleans
|
|
190
|
-
pattern = pattern.replace(/\{number\}/g, '(\\d+(?:\\.\\d+)?)') // Matches numbers (int or float)
|
|
191
|
-
|
|
192
|
-
// Create regex with case-insensitive matching and word boundaries
|
|
193
|
-
return new RegExp(`^${pattern}$`, 'i')
|
|
194
|
-
}
|
|
195
|
-
|
|
196
|
-
/**
|
|
197
|
-
* Extracts parameters from gherkin step text based on template step signature
|
|
198
|
-
*/
|
|
199
|
-
function extractParametersFromGherkinStep(
|
|
200
|
-
gherkinText: string,
|
|
201
|
-
signature: string,
|
|
202
|
-
templateStepParameters: Array<{ name: string; order: number; type: StepParameterType }>,
|
|
203
|
-
): ParameterMatch[] | null {
|
|
204
|
-
const regex = signatureToRegex(signature)
|
|
205
|
-
const match = gherkinText.match(regex)
|
|
206
|
-
|
|
207
|
-
if (!match) {
|
|
208
|
-
return null
|
|
209
|
-
}
|
|
210
|
-
|
|
211
|
-
// Extract captured groups (skip index 0 which is the full match)
|
|
212
|
-
const capturedValues = match.slice(1)
|
|
213
|
-
const parameters: ParameterMatch[] = []
|
|
214
|
-
|
|
215
|
-
// Map captured values to template step parameters by order
|
|
216
|
-
for (let i = 0; i < capturedValues.length && i < templateStepParameters.length; i++) {
|
|
217
|
-
const param = templateStepParameters[i]
|
|
218
|
-
const value = capturedValues[i]
|
|
219
|
-
|
|
220
|
-
if (value !== undefined) {
|
|
221
|
-
parameters.push({
|
|
222
|
-
name: param.name,
|
|
223
|
-
value: value,
|
|
224
|
-
order: param.order,
|
|
225
|
-
type: param.type,
|
|
226
|
-
})
|
|
227
|
-
}
|
|
228
|
-
}
|
|
229
|
-
|
|
230
|
-
return parameters
|
|
231
|
-
}
|
|
232
|
-
|
|
233
|
-
/**
|
|
234
|
-
* Matches a gherkin step to a template step by pattern matching
|
|
235
|
-
* Returns the template step ID and extracted parameters, or null if no match found
|
|
236
|
-
* Note: Template step signatures don't include the keyword, so we match against step.text only
|
|
237
|
-
*/
|
|
238
|
-
async function matchGherkinStepToTemplateStep(gherkinStep: ParsedStep): Promise<TemplateStepMatch | null> {
|
|
239
|
-
try {
|
|
240
|
-
// Get all template steps from database
|
|
241
|
-
const templateSteps = await prisma.templateStep.findMany({
|
|
242
|
-
include: {
|
|
243
|
-
parameters: {
|
|
244
|
-
orderBy: {
|
|
245
|
-
order: 'asc',
|
|
246
|
-
},
|
|
247
|
-
},
|
|
248
|
-
},
|
|
249
|
-
})
|
|
250
|
-
|
|
251
|
-
// Try to match against each template step signature
|
|
252
|
-
// Template step signatures don't include the keyword, so match against step.text
|
|
253
|
-
for (const templateStep of templateSteps) {
|
|
254
|
-
// Try to match the gherkin step text (without keyword) against the signature
|
|
255
|
-
const parameters = extractParametersFromGherkinStep(
|
|
256
|
-
gherkinStep.text,
|
|
257
|
-
templateStep.signature,
|
|
258
|
-
templateStep.parameters.map(p => ({
|
|
259
|
-
name: p.name,
|
|
260
|
-
order: p.order,
|
|
261
|
-
type: p.type,
|
|
262
|
-
})),
|
|
263
|
-
)
|
|
264
|
-
|
|
265
|
-
if (parameters !== null) {
|
|
266
|
-
return {
|
|
267
|
-
templateStepId: templateStep.id,
|
|
268
|
-
signature: templateStep.signature,
|
|
269
|
-
parameters,
|
|
270
|
-
}
|
|
271
|
-
}
|
|
272
|
-
}
|
|
273
|
-
|
|
274
|
-
return null
|
|
275
|
-
} catch (error) {
|
|
276
|
-
console.error(`Error matching gherkin step to template step:`, error)
|
|
277
|
-
return null
|
|
278
|
-
}
|
|
279
|
-
}
|
|
280
|
-
|
|
281
|
-
/**
|
|
282
|
-
* Determines the step type and icon based on the Gherkin keyword
|
|
283
|
-
*/
|
|
284
|
-
function determineStepTypeAndIcon(keyword: string): { type: TemplateStepType; icon: TemplateStepIcon } {
|
|
285
|
-
const lowerKeyword = keyword.toLowerCase().trim()
|
|
286
|
-
|
|
287
|
-
if (lowerKeyword === 'given') {
|
|
288
|
-
return { type: 'ACTION', icon: 'NAVIGATION' }
|
|
289
|
-
} else if (lowerKeyword === 'when') {
|
|
290
|
-
return { type: 'ACTION', icon: 'MOUSE' }
|
|
291
|
-
} else if (lowerKeyword === 'then') {
|
|
292
|
-
return { type: 'ASSERTION', icon: 'VALIDATION' }
|
|
293
|
-
} else if (lowerKeyword === 'and' || lowerKeyword === 'but') {
|
|
294
|
-
return { type: 'ACTION', icon: 'MOUSE' }
|
|
295
|
-
} else {
|
|
296
|
-
// Default fallback
|
|
297
|
-
return { type: 'ACTION', icon: 'MOUSE' }
|
|
298
|
-
}
|
|
299
|
-
}
|
|
300
|
-
|
|
301
|
-
function sameResolvedParameters(left: ParameterMatch[], right: ParameterMatch[]): boolean {
|
|
302
|
-
if (left.length !== right.length) {
|
|
303
|
-
return false
|
|
304
|
-
}
|
|
305
|
-
|
|
306
|
-
return left.every((parameter, index) => {
|
|
307
|
-
const other = right[index]
|
|
308
|
-
return (
|
|
309
|
-
parameter.name === other?.name &&
|
|
310
|
-
parameter.value === other?.value &&
|
|
311
|
-
parameter.order === other?.order &&
|
|
312
|
-
parameter.type === other?.type
|
|
313
|
-
)
|
|
314
|
-
})
|
|
315
|
-
}
|
|
316
|
-
|
|
317
|
-
/**
|
|
318
|
-
* Finds or creates a tag by tag expression
|
|
319
|
-
* If the tag exists but has a different type, updates it to the correct type
|
|
320
|
-
*/
|
|
321
|
-
async function findOrCreateTag(tagExpression: string, type: TagType): Promise<string | null> {
|
|
322
|
-
try {
|
|
323
|
-
const tagName = tagExpression.startsWith('@') ? tagExpression.substring(1) : tagExpression
|
|
324
|
-
|
|
325
|
-
const existingTag = await prisma.tag.findFirst({
|
|
326
|
-
where: { tagExpression },
|
|
327
|
-
})
|
|
328
|
-
|
|
329
|
-
if (existingTag) {
|
|
330
|
-
// If the tag exists but has a different type, update it
|
|
331
|
-
// This is important because tags might have been created with the wrong type previously
|
|
332
|
-
if (existingTag.type !== type) {
|
|
333
|
-
await prisma.tag.update({
|
|
334
|
-
where: { id: existingTag.id },
|
|
335
|
-
data: { type },
|
|
336
|
-
})
|
|
337
|
-
console.log(` š Updated tag '${tagExpression}' type from ${existingTag.type} to ${type}`)
|
|
338
|
-
}
|
|
339
|
-
return existingTag.id
|
|
340
|
-
}
|
|
341
|
-
|
|
342
|
-
const newTag = await prisma.tag.create({
|
|
343
|
-
data: {
|
|
344
|
-
name: tagName,
|
|
345
|
-
tagExpression,
|
|
346
|
-
type,
|
|
347
|
-
},
|
|
348
|
-
})
|
|
349
|
-
|
|
350
|
-
return newTag.id
|
|
351
|
-
} catch (error) {
|
|
352
|
-
console.error(`Error finding/creating tag '${tagExpression}': ${error}`)
|
|
353
|
-
return null
|
|
354
|
-
}
|
|
355
|
-
}
|
|
356
|
-
|
|
357
|
-
/**
|
|
358
|
-
* Syncs test case steps to database
|
|
359
|
-
*/
|
|
360
|
-
async function syncTestCaseSteps(testCaseId: string, steps: ParsedStep[], result: SyncResult): Promise<void> {
|
|
361
|
-
try {
|
|
362
|
-
// Get existing steps
|
|
363
|
-
const existingSteps = await prisma.testCaseStep.findMany({
|
|
364
|
-
where: { testCaseId },
|
|
365
|
-
orderBy: { order: 'asc' },
|
|
366
|
-
include: {
|
|
367
|
-
TemplateStep: {
|
|
368
|
-
select: {
|
|
369
|
-
signature: true,
|
|
370
|
-
},
|
|
371
|
-
},
|
|
372
|
-
parameters: true,
|
|
373
|
-
},
|
|
374
|
-
})
|
|
375
|
-
|
|
376
|
-
// Create a map of existing steps by order
|
|
377
|
-
const existingStepsMap = new Map(existingSteps.map(step => [step.order, step]))
|
|
378
|
-
const projectedExistingStepsMap = new Map(normalizeProjectedDbTestCaseSteps(existingSteps).map(step => [step.order, step]))
|
|
379
|
-
|
|
380
|
-
// Process each step from filesystem
|
|
381
|
-
for (const step of steps) {
|
|
382
|
-
const match = await matchGherkinStepToTemplateStep(step)
|
|
383
|
-
|
|
384
|
-
if (!match) {
|
|
385
|
-
result.warnings.push(
|
|
386
|
-
`Could not match gherkin step "${step.keyword} ${step.text}" to any template step for test case ${testCaseId}`,
|
|
387
|
-
)
|
|
388
|
-
console.log(` ā ļø Skipping step "${step.keyword} ${step.text}" - no template step match found`)
|
|
389
|
-
continue
|
|
390
|
-
}
|
|
391
|
-
|
|
392
|
-
const existingStep = existingStepsMap.get(step.order)
|
|
393
|
-
const { icon } = determineStepTypeAndIcon(step.keyword)
|
|
394
|
-
const gherkinStep = `${step.keyword} ${step.text}`
|
|
395
|
-
|
|
396
|
-
if (existingStep) {
|
|
397
|
-
const projectedExistingStep = projectedExistingStepsMap.get(step.order)
|
|
398
|
-
const matchesProjectedState =
|
|
399
|
-
projectedExistingStep != null &&
|
|
400
|
-
projectedExistingStep.gherkinStep === gherkinStep &&
|
|
401
|
-
projectedExistingStep.label === step.text &&
|
|
402
|
-
projectedExistingStep.icon === determineProjectedStepIcon(step.keyword) &&
|
|
403
|
-
projectedExistingStep.templateStepSignature === match.signature &&
|
|
404
|
-
sameResolvedParameters(projectedExistingStep.parameters, match.parameters)
|
|
405
|
-
|
|
406
|
-
// Update existing step if needed
|
|
407
|
-
const needsUpdate =
|
|
408
|
-
!matchesProjectedState &&
|
|
409
|
-
(existingStep.gherkinStep !== gherkinStep ||
|
|
410
|
-
existingStep.templateStepId !== match.templateStepId ||
|
|
411
|
-
existingStep.label !== step.text ||
|
|
412
|
-
existingStep.icon !== icon)
|
|
413
|
-
|
|
414
|
-
if (needsUpdate) {
|
|
415
|
-
await prisma.testCaseStep.update({
|
|
416
|
-
where: { id: existingStep.id },
|
|
417
|
-
data: {
|
|
418
|
-
gherkinStep,
|
|
419
|
-
label: step.text,
|
|
420
|
-
templateStepId: match.templateStepId,
|
|
421
|
-
icon,
|
|
422
|
-
},
|
|
423
|
-
})
|
|
424
|
-
|
|
425
|
-
// Update parameters
|
|
426
|
-
await prisma.testCaseStepParameter.deleteMany({
|
|
427
|
-
where: { testCaseStepId: existingStep.id },
|
|
428
|
-
})
|
|
429
|
-
|
|
430
|
-
for (const param of match.parameters) {
|
|
431
|
-
await prisma.testCaseStepParameter.create({
|
|
432
|
-
data: {
|
|
433
|
-
testCaseStepId: existingStep.id,
|
|
434
|
-
name: param.name,
|
|
435
|
-
value: param.value,
|
|
436
|
-
order: param.order,
|
|
437
|
-
type: param.type,
|
|
438
|
-
},
|
|
439
|
-
})
|
|
440
|
-
}
|
|
441
|
-
}
|
|
442
|
-
} else {
|
|
443
|
-
// Create new step
|
|
444
|
-
const newStep = await prisma.testCaseStep.create({
|
|
445
|
-
data: {
|
|
446
|
-
testCaseId,
|
|
447
|
-
order: step.order,
|
|
448
|
-
gherkinStep,
|
|
449
|
-
label: step.text,
|
|
450
|
-
icon,
|
|
451
|
-
templateStepId: match.templateStepId,
|
|
452
|
-
},
|
|
453
|
-
})
|
|
454
|
-
|
|
455
|
-
// Create parameters
|
|
456
|
-
for (const param of match.parameters) {
|
|
457
|
-
await prisma.testCaseStepParameter.create({
|
|
458
|
-
data: {
|
|
459
|
-
testCaseStepId: newStep.id,
|
|
460
|
-
name: param.name,
|
|
461
|
-
value: param.value,
|
|
462
|
-
order: param.order,
|
|
463
|
-
type: param.type,
|
|
464
|
-
},
|
|
465
|
-
})
|
|
466
|
-
}
|
|
467
|
-
}
|
|
468
|
-
}
|
|
469
|
-
|
|
470
|
-
// Delete steps that no longer exist in filesystem
|
|
471
|
-
const fsStepOrders = new Set(steps.map(s => s.order))
|
|
472
|
-
for (const existingStep of existingSteps) {
|
|
473
|
-
if (!fsStepOrders.has(existingStep.order)) {
|
|
474
|
-
await prisma.testCaseStep.delete({
|
|
475
|
-
where: { id: existingStep.id },
|
|
476
|
-
})
|
|
477
|
-
}
|
|
478
|
-
}
|
|
479
|
-
} catch (error) {
|
|
480
|
-
const errorMsg = `Error syncing steps for test case ${testCaseId}: ${error}`
|
|
481
|
-
result.errors.push(errorMsg)
|
|
482
|
-
console.error(` ā ${errorMsg}`)
|
|
483
|
-
}
|
|
484
|
-
}
|
|
485
|
-
|
|
486
|
-
/**
|
|
487
|
-
* Syncs test cases from filesystem to database
|
|
488
|
-
*/
|
|
489
|
-
async function syncTestCasesToDatabase(testCasesFromFS: TestCaseFromFS[], result: SyncResult): Promise<void> {
|
|
490
|
-
console.log('\nā
Syncing test cases to database...')
|
|
491
|
-
|
|
492
|
-
// Track test cases from filesystem (by identifier tag)
|
|
493
|
-
const fsTestCaseTags = new Set<string>()
|
|
494
|
-
const suitesByModuleId = new Map<string, Array<{ id: string; name: string }>>()
|
|
495
|
-
|
|
496
|
-
for (const testCase of testCasesFromFS) {
|
|
497
|
-
try {
|
|
498
|
-
fsTestCaseTags.add(testCase.identifierTag)
|
|
499
|
-
|
|
500
|
-
// Ensure module exists
|
|
501
|
-
let moduleId = await findModuleByPath(testCase.modulePath)
|
|
502
|
-
|
|
503
|
-
if (!moduleId) {
|
|
504
|
-
console.log(` š¦ Creating module hierarchy for path: ${testCase.modulePath}`)
|
|
505
|
-
moduleId = await buildModuleHierarchy(testCase.modulePath)
|
|
506
|
-
}
|
|
507
|
-
|
|
508
|
-
// Find test suite
|
|
509
|
-
let moduleSuites = suitesByModuleId.get(moduleId)
|
|
510
|
-
if (!moduleSuites) {
|
|
511
|
-
moduleSuites = await prisma.testSuite.findMany({
|
|
512
|
-
where: {
|
|
513
|
-
moduleId: moduleId,
|
|
514
|
-
},
|
|
515
|
-
select: {
|
|
516
|
-
id: true,
|
|
517
|
-
name: true,
|
|
518
|
-
},
|
|
519
|
-
})
|
|
520
|
-
suitesByModuleId.set(moduleId, moduleSuites)
|
|
521
|
-
}
|
|
522
|
-
|
|
523
|
-
const testSuite = moduleSuites.find(
|
|
524
|
-
suite => getTestSuiteFilesystemKey(suite.name) === getTestSuiteFilesystemKey(testCase.testSuiteName),
|
|
525
|
-
)
|
|
526
|
-
|
|
527
|
-
if (!testSuite) {
|
|
528
|
-
result.errors.push(`Test suite '${testCase.testSuiteName}' not found in module '${testCase.modulePath}'`)
|
|
529
|
-
console.error(` ā Test suite '${testCase.testSuiteName}' not found in module '${testCase.modulePath}'`)
|
|
530
|
-
continue
|
|
531
|
-
}
|
|
532
|
-
|
|
533
|
-
// Find identifier tag
|
|
534
|
-
const identifierTagName = testCase.identifierTag.startsWith('@')
|
|
535
|
-
? testCase.identifierTag.substring(1)
|
|
536
|
-
: testCase.identifierTag
|
|
537
|
-
|
|
538
|
-
// Find test case by identifier tag
|
|
539
|
-
const identifierTag = await prisma.tag.findFirst({
|
|
540
|
-
where: {
|
|
541
|
-
name: identifierTagName,
|
|
542
|
-
type: TagType.IDENTIFIER,
|
|
543
|
-
},
|
|
544
|
-
include: {
|
|
545
|
-
testCases: {
|
|
546
|
-
include: {
|
|
547
|
-
TestSuite: true,
|
|
548
|
-
},
|
|
549
|
-
},
|
|
550
|
-
},
|
|
551
|
-
})
|
|
552
|
-
|
|
553
|
-
// Find filter tag IDs
|
|
554
|
-
const filterTagIds: string[] = []
|
|
555
|
-
for (const filterTagExpr of testCase.filterTags) {
|
|
556
|
-
const tagId = await findOrCreateTag(filterTagExpr, TagType.FILTER)
|
|
557
|
-
if (tagId) {
|
|
558
|
-
filterTagIds.push(tagId)
|
|
559
|
-
}
|
|
560
|
-
}
|
|
561
|
-
|
|
562
|
-
if (identifierTag && identifierTag.testCases.length > 0) {
|
|
563
|
-
// Test case exists - update it
|
|
564
|
-
const matchedExistingTestCaseSummary =
|
|
565
|
-
identifierTag.testCases.find(existingCase => existingCase.TestSuite.some(suite => suite.id === testSuite.id)) ??
|
|
566
|
-
identifierTag.testCases[0]
|
|
567
|
-
const existingTestCase = await prisma.testCase.findUnique({
|
|
568
|
-
where: { id: matchedExistingTestCaseSummary.id },
|
|
569
|
-
include: {
|
|
570
|
-
tags: true,
|
|
571
|
-
TestSuite: true,
|
|
572
|
-
},
|
|
573
|
-
})
|
|
574
|
-
|
|
575
|
-
if (!existingTestCase) {
|
|
576
|
-
result.errors.push(`Test case with identifier tag '${testCase.identifierTag}' not found`)
|
|
577
|
-
continue
|
|
578
|
-
}
|
|
579
|
-
|
|
580
|
-
// Check if update is needed
|
|
581
|
-
const currentFilterTagIds =
|
|
582
|
-
existingTestCase.tags
|
|
583
|
-
.filter(t => t.type === TagType.FILTER)
|
|
584
|
-
.map(t => t.id)
|
|
585
|
-
.sort() || []
|
|
586
|
-
|
|
587
|
-
const newFilterTagIds = filterTagIds.sort()
|
|
588
|
-
const tagsChanged = JSON.stringify(currentFilterTagIds) !== JSON.stringify(newFilterTagIds)
|
|
589
|
-
const isAssociated = existingTestCase.TestSuite.some(ts => ts.id === testSuite.id)
|
|
590
|
-
|
|
591
|
-
const needsUpdate =
|
|
592
|
-
existingTestCase.title !== testCase.title ||
|
|
593
|
-
existingTestCase.description !== testCase.description ||
|
|
594
|
-
tagsChanged ||
|
|
595
|
-
!isAssociated
|
|
596
|
-
|
|
597
|
-
if (needsUpdate) {
|
|
598
|
-
await prisma.testCase.update({
|
|
599
|
-
where: { id: existingTestCase.id },
|
|
600
|
-
data: {
|
|
601
|
-
title: testCase.title,
|
|
602
|
-
description: testCase.description,
|
|
603
|
-
tags: {
|
|
604
|
-
set: [identifierTag.id, ...filterTagIds].map(id => ({ id })),
|
|
605
|
-
},
|
|
606
|
-
TestSuite: isAssociated
|
|
607
|
-
? undefined // Don't change associations if already connected
|
|
608
|
-
: {
|
|
609
|
-
connect: [{ id: testSuite.id }], // Add test suite if not already connected
|
|
610
|
-
},
|
|
611
|
-
},
|
|
612
|
-
})
|
|
613
|
-
|
|
614
|
-
result.testCasesUpdated++
|
|
615
|
-
result.updatedTestCases.push({
|
|
616
|
-
identifierTag: testCase.identifierTag,
|
|
617
|
-
title: testCase.title,
|
|
618
|
-
})
|
|
619
|
-
console.log(` š Updated test case '${testCase.title}' (${testCase.identifierTag})`)
|
|
620
|
-
} else {
|
|
621
|
-
result.testCasesExisting++
|
|
622
|
-
console.log(` ā Test case '${testCase.title}' (${testCase.identifierTag}) already up to date`)
|
|
623
|
-
}
|
|
624
|
-
|
|
625
|
-
// Sync steps
|
|
626
|
-
await syncTestCaseSteps(existingTestCase.id, testCase.steps, result)
|
|
627
|
-
} else {
|
|
628
|
-
// Test case doesn't exist - create it
|
|
629
|
-
// First ensure identifier tag exists
|
|
630
|
-
const identifierTagId = await findOrCreateTag(testCase.identifierTag, TagType.IDENTIFIER)
|
|
631
|
-
|
|
632
|
-
if (!identifierTagId) {
|
|
633
|
-
result.errors.push(`Failed to create identifier tag '${testCase.identifierTag}'`)
|
|
634
|
-
console.error(` ā Failed to create identifier tag '${testCase.identifierTag}'`)
|
|
635
|
-
continue
|
|
636
|
-
}
|
|
637
|
-
|
|
638
|
-
const newTestCase = await prisma.testCase.create({
|
|
639
|
-
data: {
|
|
640
|
-
title: testCase.title,
|
|
641
|
-
description: testCase.description,
|
|
642
|
-
tags: {
|
|
643
|
-
connect: [identifierTagId, ...filterTagIds].map(id => ({ id })),
|
|
644
|
-
},
|
|
645
|
-
TestSuite: {
|
|
646
|
-
connect: [{ id: testSuite.id }],
|
|
647
|
-
},
|
|
648
|
-
},
|
|
649
|
-
include: {
|
|
650
|
-
tags: true,
|
|
651
|
-
},
|
|
652
|
-
})
|
|
653
|
-
|
|
654
|
-
// Verify identifier tag is associated
|
|
655
|
-
const hasIdentifierTag = newTestCase.tags.some(t => t.type === TagType.IDENTIFIER)
|
|
656
|
-
if (!hasIdentifierTag) {
|
|
657
|
-
result.errors.push(
|
|
658
|
-
`Test case '${testCase.title}' was created but identifier tag '${testCase.identifierTag}' was not associated`,
|
|
659
|
-
)
|
|
660
|
-
console.error(
|
|
661
|
-
` ā Test case '${testCase.title}' was created but identifier tag '${testCase.identifierTag}' was not associated`,
|
|
662
|
-
)
|
|
663
|
-
}
|
|
664
|
-
|
|
665
|
-
result.testCasesCreated++
|
|
666
|
-
result.createdTestCases.push({
|
|
667
|
-
identifierTag: testCase.identifierTag,
|
|
668
|
-
title: testCase.title,
|
|
669
|
-
})
|
|
670
|
-
console.log(` ā Created test case '${testCase.title}' (${testCase.identifierTag})`)
|
|
671
|
-
|
|
672
|
-
// Sync steps
|
|
673
|
-
await syncTestCaseSteps(newTestCase.id, testCase.steps, result)
|
|
674
|
-
}
|
|
675
|
-
} catch (error) {
|
|
676
|
-
const errorMsg = `Error processing test case '${testCase.title}' from ${testCase.filePath}: ${error}`
|
|
677
|
-
result.errors.push(errorMsg)
|
|
678
|
-
console.error(` ā ${errorMsg}`)
|
|
679
|
-
}
|
|
680
|
-
}
|
|
681
|
-
|
|
682
|
-
// Delete orphaned test cases (test cases in DB but not in FS)
|
|
683
|
-
console.log('\nš Checking for orphaned test cases (not in filesystem)...')
|
|
684
|
-
const allDbTestCases = await prisma.testCase.findMany({
|
|
685
|
-
include: {
|
|
686
|
-
tags: true, // Include all tags, not just identifier tags
|
|
687
|
-
},
|
|
688
|
-
})
|
|
689
|
-
|
|
690
|
-
for (const dbTestCase of allDbTestCases) {
|
|
691
|
-
try {
|
|
692
|
-
const identifierTag = dbTestCase.tags.find(t => t.type === TagType.IDENTIFIER)
|
|
693
|
-
|
|
694
|
-
// Test cases without identifier tags cannot be synced from filesystem
|
|
695
|
-
// and should be deleted as orphaned
|
|
696
|
-
if (!identifierTag) {
|
|
697
|
-
console.log(` ā ļø Test case '${dbTestCase.title}' has no identifier tag - will be deleted as orphaned`)
|
|
698
|
-
|
|
699
|
-
// Delete the test case and all related records in a transaction
|
|
700
|
-
await prisma.$transaction(async tx => {
|
|
701
|
-
// Delete all test run test cases (has RESTRICT constraint, must be deleted first)
|
|
702
|
-
await tx.testRunTestCase.deleteMany({
|
|
703
|
-
where: {
|
|
704
|
-
testCaseId: dbTestCase.id,
|
|
705
|
-
},
|
|
706
|
-
})
|
|
707
|
-
|
|
708
|
-
// Delete all reviews
|
|
709
|
-
await tx.review.deleteMany({
|
|
710
|
-
where: {
|
|
711
|
-
testCaseId: dbTestCase.id,
|
|
712
|
-
},
|
|
713
|
-
})
|
|
714
|
-
|
|
715
|
-
// Delete all linked Jira tickets
|
|
716
|
-
await tx.linkedJiraTicket.deleteMany({
|
|
717
|
-
where: {
|
|
718
|
-
testCaseId: dbTestCase.id,
|
|
719
|
-
},
|
|
720
|
-
})
|
|
721
|
-
|
|
722
|
-
// Delete all step parameters
|
|
723
|
-
await tx.testCaseStepParameter.deleteMany({
|
|
724
|
-
where: {
|
|
725
|
-
testCaseStep: {
|
|
726
|
-
testCaseId: dbTestCase.id,
|
|
727
|
-
},
|
|
728
|
-
},
|
|
729
|
-
})
|
|
730
|
-
|
|
731
|
-
// Delete all test case steps
|
|
732
|
-
await tx.testCaseStep.deleteMany({
|
|
733
|
-
where: {
|
|
734
|
-
testCaseId: dbTestCase.id,
|
|
735
|
-
},
|
|
736
|
-
})
|
|
737
|
-
|
|
738
|
-
// Delete the test case
|
|
739
|
-
await tx.testCase.delete({
|
|
740
|
-
where: { id: dbTestCase.id },
|
|
741
|
-
})
|
|
742
|
-
})
|
|
743
|
-
|
|
744
|
-
result.testCasesDeleted++
|
|
745
|
-
result.deletedTestCases.push({
|
|
746
|
-
identifierTag: '(no identifier tag)',
|
|
747
|
-
title: dbTestCase.title,
|
|
748
|
-
})
|
|
749
|
-
console.log(` šļø Deleted test case '${dbTestCase.title}' (no identifier tag)`)
|
|
750
|
-
continue
|
|
751
|
-
}
|
|
752
|
-
|
|
753
|
-
// Normalize tagExpression to ensure consistent format comparison
|
|
754
|
-
// fsTestCaseTags contains normalized tags (with @ prefix), so we need to normalize
|
|
755
|
-
// the database tagExpression before comparing
|
|
756
|
-
const identifierTagExpr = normalizeTagExpression(identifierTag.tagExpression)
|
|
757
|
-
if (!fsTestCaseTags.has(identifierTagExpr)) {
|
|
758
|
-
// Check if test case has test runs (for logging)
|
|
759
|
-
const testRunTestCases = await prisma.testRunTestCase.findMany({
|
|
760
|
-
where: { testCaseId: dbTestCase.id },
|
|
761
|
-
})
|
|
762
|
-
|
|
763
|
-
if (testRunTestCases.length > 0) {
|
|
764
|
-
console.log(
|
|
765
|
-
` ā ļø Test case '${dbTestCase.title}' (${identifierTagExpr}) has ${testRunTestCases.length} test run(s) - will be deleted`,
|
|
766
|
-
)
|
|
767
|
-
}
|
|
768
|
-
|
|
769
|
-
// Delete the test case and all related records in a transaction
|
|
770
|
-
// Following the same pattern as deleteTestCaseAction
|
|
771
|
-
await prisma.$transaction(async tx => {
|
|
772
|
-
// Delete all test run test cases (has RESTRICT constraint, must be deleted first)
|
|
773
|
-
await tx.testRunTestCase.deleteMany({
|
|
774
|
-
where: {
|
|
775
|
-
testCaseId: dbTestCase.id,
|
|
776
|
-
},
|
|
777
|
-
})
|
|
778
|
-
|
|
779
|
-
// Delete all reviews
|
|
780
|
-
await tx.review.deleteMany({
|
|
781
|
-
where: {
|
|
782
|
-
testCaseId: dbTestCase.id,
|
|
783
|
-
},
|
|
784
|
-
})
|
|
785
|
-
|
|
786
|
-
// Delete all linked Jira tickets
|
|
787
|
-
await tx.linkedJiraTicket.deleteMany({
|
|
788
|
-
where: {
|
|
789
|
-
testCaseId: dbTestCase.id,
|
|
790
|
-
},
|
|
791
|
-
})
|
|
792
|
-
|
|
793
|
-
// Delete all step parameters
|
|
794
|
-
await tx.testCaseStepParameter.deleteMany({
|
|
795
|
-
where: {
|
|
796
|
-
testCaseStep: {
|
|
797
|
-
testCaseId: dbTestCase.id,
|
|
798
|
-
},
|
|
799
|
-
},
|
|
800
|
-
})
|
|
801
|
-
|
|
802
|
-
// Delete all test case steps
|
|
803
|
-
await tx.testCaseStep.deleteMany({
|
|
804
|
-
where: {
|
|
805
|
-
testCaseId: dbTestCase.id,
|
|
806
|
-
},
|
|
807
|
-
})
|
|
808
|
-
|
|
809
|
-
// Delete the identifier tag (only if it's not used by other test cases)
|
|
810
|
-
// Check if any other test case uses this tag
|
|
811
|
-
const otherTestCasesWithTag = await tx.testCase.findMany({
|
|
812
|
-
where: {
|
|
813
|
-
tags: {
|
|
814
|
-
some: {
|
|
815
|
-
id: identifierTag.id,
|
|
816
|
-
},
|
|
817
|
-
},
|
|
818
|
-
id: {
|
|
819
|
-
not: dbTestCase.id,
|
|
820
|
-
},
|
|
821
|
-
},
|
|
822
|
-
})
|
|
823
|
-
|
|
824
|
-
if (otherTestCasesWithTag.length === 0) {
|
|
825
|
-
await tx.tag.delete({
|
|
826
|
-
where: { id: identifierTag.id },
|
|
827
|
-
})
|
|
828
|
-
}
|
|
829
|
-
|
|
830
|
-
// Delete the test case
|
|
831
|
-
await tx.testCase.delete({
|
|
832
|
-
where: { id: dbTestCase.id },
|
|
833
|
-
})
|
|
834
|
-
})
|
|
835
|
-
|
|
836
|
-
result.testCasesDeleted++
|
|
837
|
-
result.deletedTestCases.push({
|
|
838
|
-
identifierTag: identifierTagExpr,
|
|
839
|
-
title: dbTestCase.title,
|
|
840
|
-
})
|
|
841
|
-
console.log(` šļø Deleted test case '${dbTestCase.title}' (${identifierTagExpr}) (not in filesystem)`)
|
|
842
|
-
}
|
|
843
|
-
} catch (error) {
|
|
844
|
-
const errorMsg = `Error deleting test case '${dbTestCase.title}': ${error}`
|
|
845
|
-
result.errors.push(errorMsg)
|
|
846
|
-
console.error(` ā ${errorMsg}`)
|
|
847
|
-
}
|
|
848
|
-
}
|
|
849
|
-
}
|
|
850
|
-
|
|
851
|
-
/**
|
|
852
|
-
* Generates and displays sync summary
|
|
853
|
-
*/
|
|
854
|
-
function generateSummary(result: SyncResult): void {
|
|
855
|
-
console.log('\nš Sync Summary:')
|
|
856
|
-
console.log(` š Test cases scanned: ${result.testCasesScanned}`)
|
|
857
|
-
console.log(` ā
Test cases existing: ${result.testCasesExisting}`)
|
|
858
|
-
console.log(` ā Test cases created: ${result.testCasesCreated}`)
|
|
859
|
-
console.log(` š Test cases updated: ${result.testCasesUpdated}`)
|
|
860
|
-
console.log(` šļø Test cases deleted: ${result.testCasesDeleted}`)
|
|
861
|
-
console.log(` ā ļø Warnings: ${result.warnings.length}`)
|
|
862
|
-
console.log(` ā Errors: ${result.errors.length}`)
|
|
863
|
-
|
|
864
|
-
if (result.createdTestCases.length > 0) {
|
|
865
|
-
console.log('\n Created test cases:')
|
|
866
|
-
result.createdTestCases.forEach((tc, index) => {
|
|
867
|
-
console.log(` ${index + 1}. ${tc.title} (${tc.identifierTag})`)
|
|
868
|
-
})
|
|
869
|
-
}
|
|
870
|
-
|
|
871
|
-
if (result.updatedTestCases.length > 0) {
|
|
872
|
-
console.log('\n Updated test cases:')
|
|
873
|
-
result.updatedTestCases.forEach((tc, index) => {
|
|
874
|
-
console.log(` ${index + 1}. ${tc.title} (${tc.identifierTag})`)
|
|
875
|
-
})
|
|
876
|
-
}
|
|
877
|
-
|
|
878
|
-
if (result.deletedTestCases.length > 0) {
|
|
879
|
-
console.log('\n Deleted test cases:')
|
|
880
|
-
result.deletedTestCases.forEach((tc, index) => {
|
|
881
|
-
console.log(` ${index + 1}. ${tc.title} (${tc.identifierTag})`)
|
|
882
|
-
})
|
|
883
|
-
}
|
|
884
|
-
|
|
885
|
-
if (result.warnings.length > 0) {
|
|
886
|
-
console.log('\n Warnings:')
|
|
887
|
-
result.warnings.forEach((warning, index) => {
|
|
888
|
-
console.log(` ${index + 1}. ${warning}`)
|
|
889
|
-
})
|
|
890
|
-
}
|
|
891
|
-
|
|
892
|
-
if (result.errors.length > 0) {
|
|
893
|
-
console.log('\n Errors:')
|
|
894
|
-
result.errors.forEach((error, index) => {
|
|
895
|
-
console.log(` ${index + 1}. ${error}`)
|
|
896
|
-
})
|
|
897
|
-
}
|
|
898
|
-
}
|
|
899
|
-
|
|
900
|
-
/**
|
|
901
|
-
* Main function
|
|
902
|
-
*/
|
|
903
|
-
async function main() {
|
|
904
|
-
try {
|
|
905
|
-
console.log('š Starting test cases sync...')
|
|
906
|
-
console.log('This will scan feature files and sync test cases to database.')
|
|
907
|
-
console.log('Filesystem is the source of truth - test cases in DB but not in FS will be deleted.\n')
|
|
908
|
-
|
|
909
|
-
await ensureAutomationWorkspaceReady()
|
|
910
|
-
const featuresDir = getAutomationFeaturesDir()
|
|
911
|
-
|
|
912
|
-
// Scan test cases from filesystem
|
|
913
|
-
const testCasesFromFS = await scanTestCasesFromFilesystem(featuresDir)
|
|
914
|
-
|
|
915
|
-
if (testCasesFromFS.length === 0) {
|
|
916
|
-
console.log('\nā ļø No test cases found in feature files. Nothing to sync.')
|
|
917
|
-
return
|
|
918
|
-
}
|
|
919
|
-
|
|
920
|
-
console.log(`\nš Found ${testCasesFromFS.length} test case(s) from feature files:`)
|
|
921
|
-
for (const tc of testCasesFromFS) {
|
|
922
|
-
console.log(` - ${tc.title} (${tc.identifierTag}) in ${tc.testSuiteName}`)
|
|
923
|
-
}
|
|
924
|
-
|
|
925
|
-
// Initialize result
|
|
926
|
-
const result: SyncResult = {
|
|
927
|
-
testCasesScanned: testCasesFromFS.length,
|
|
928
|
-
testCasesExisting: 0,
|
|
929
|
-
testCasesCreated: 0,
|
|
930
|
-
testCasesUpdated: 0,
|
|
931
|
-
testCasesDeleted: 0,
|
|
932
|
-
errors: [],
|
|
933
|
-
warnings: [],
|
|
934
|
-
createdTestCases: [],
|
|
935
|
-
updatedTestCases: [],
|
|
936
|
-
deletedTestCases: [],
|
|
937
|
-
}
|
|
938
|
-
|
|
939
|
-
// Sync to database
|
|
940
|
-
await syncTestCasesToDatabase(testCasesFromFS, result)
|
|
941
|
-
|
|
942
|
-
// Generate summary
|
|
943
|
-
generateSummary(result)
|
|
944
|
-
|
|
945
|
-
if (result.errors.length === 0) {
|
|
946
|
-
console.log('\nā
Sync completed successfully!')
|
|
947
|
-
} else {
|
|
948
|
-
console.log('\nā ļø Sync completed with errors. Please review the errors above.')
|
|
949
|
-
process.exit(1)
|
|
950
|
-
}
|
|
951
|
-
} catch (error) {
|
|
952
|
-
console.error('\nā Error during sync:', error)
|
|
953
|
-
process.exit(1)
|
|
954
|
-
} finally {
|
|
955
|
-
await prisma.$disconnect()
|
|
956
|
-
}
|
|
957
|
-
}
|
|
958
|
-
|
|
959
|
-
main()
|
|
960
|
-
|