Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: ensure task list and test action use correct dev env #1845

Merged
merged 3 commits into from
Mar 28, 2025
Merged

Conversation

ericallam
Copy link
Member

@ericallam ericallam commented Mar 28, 2025

Summary by CodeRabbit

  • Bug Fixes

    • Users now receive clearer error messages when a project or environment is not found, ensuring prompt and accurate feedback.
  • Refactor

    • Task retrieval and test execution workflows have been streamlined for improved performance.
    • Navigation state handling has been simplified, resulting in a more responsive user experience.
    • Method signatures have been updated to reduce complexity and enhance clarity.

Copy link

changeset-bot bot commented Mar 28, 2025

⚠️ No Changeset found

Latest commit: 9988bb8

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

Copy link
Contributor

coderabbitai bot commented Mar 28, 2025

Walkthrough

This pull request updates several components in the web application to streamline task and test handling. Method signatures are simplified to require only essential parameters (e.g., environmentId and projectId) while removing extraneous ones. New helper functions are introduced to retrieve projects and environments by slug, with added error handling for missing resources. Additionally, the SQL queries and return values in the task presenter have been modified, and outdated navigation-related logic has been removed. Updates in the test task service now directly utilize the authenticated environment for triggering tests.

Changes

File(s) Change Summary
apps/webapp/.../presenters/v3/TaskListPresenter.server.ts Updated call method signature to accept environmentId and projectId; removed unused parameters and associated environment logic; revised SQL queries and return structure.
apps/webapp/.../_app.orgs.$organizationSlug.projects.$projectParam.env.$envParam._index/route.tsx Introduced findProjectBySlug and findEnvironmentBySlug functions; updated loader to check and throw 404 errors if project/environment not found; updated presenter call parameters.
apps/webapp/.../test.tasks.$taskParam/route.tsx Added project and environment validation with error redirections; modified testService.call to pass the environment instead of the userId.
apps/webapp/.../test/route.tsx Removed useNavigation hook and the associated loading state logic.
apps/webapp/.../services/testTask.server.ts Changed TestTaskService.call signature to accept an environment parameter; streamlined internal logic by removing redundant environment retrieval and error handling.

Sequence Diagram(s)

sequenceDiagram
    participant Client
    participant Loader
    participant ProjectService as findProjectBySlug
    participant EnvService as findEnvironmentBySlug
    participant Presenter as TaskListPresenter

    Client->>Loader: Request task list
    Loader->>ProjectService: findProjectBySlug(organizationSlug, projectParam, userId)
    ProjectService-->>Loader: Return project / error 404
    Loader->>EnvService: findEnvironmentBySlug(projectId, envParam, userId)
    EnvService-->>Loader: Return environment / error 404
    Loader->>Presenter: call({ environmentId, projectId })
    Presenter-->>Loader: Return tasks, activity, runningStats, durations
    Loader-->>Client: Response with task data
Loading
sequenceDiagram
    participant Caller
    participant TestTaskService
    participant TriggerTaskService

    Caller->>TestTaskService: call(environment, testTaskData)
    TestTaskService->>TriggerTaskService: call(environment, testTaskData)
    TriggerTaskService-->>TestTaskService: Test run result
    TestTaskService-->>Caller: Return result
Loading

Suggested reviewers

  • nicktrn

Poem

I'm a bouncy little rabbit,
Hopping through lines of code so neat,
Simplifying functions, removing the clutter,
Making tasks and tests a joyful treat.
With clean SQL and careful checks,
I nibble bugs away like a tasty snack!
🐇✨


📜 Recent review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 9d1408a and 9988bb8.

📒 Files selected for processing (1)
  • apps/webapp/app/v3/services/testTask.server.ts (2 hunks)
🚧 Files skipped from review as they are similar to previous changes (1)
  • apps/webapp/app/v3/services/testTask.server.ts
⏰ Context from checks skipped due to timeout of 90000ms (5)
  • GitHub Check: e2e / 🧪 CLI v3 tests (windows-latest - pnpm)
  • GitHub Check: e2e / 🧪 CLI v3 tests (windows-latest - npm)
  • GitHub Check: typecheck / typecheck
  • GitHub Check: units / 🧪 Unit Tests
  • GitHub Check: Analyze (javascript-typescript)

🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate docstrings to generate docstrings for this PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai plan to trigger planning for file edits and PR creation.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 15b426d and 9d1408a.

📒 Files selected for processing (5)
  • apps/webapp/app/presenters/v3/TaskListPresenter.server.ts (4 hunks)
  • apps/webapp/app/routes/_app.orgs.$organizationSlug.projects.$projectParam.env.$envParam._index/route.tsx (2 hunks)
  • apps/webapp/app/routes/_app.orgs.$organizationSlug.projects.$projectParam.env.$envParam.test.tasks.$taskParam/route.tsx (1 hunks)
  • apps/webapp/app/routes/_app.orgs.$organizationSlug.projects.$projectParam.env.$envParam.test/route.tsx (0 hunks)
  • apps/webapp/app/v3/services/testTask.server.ts (2 hunks)
💤 Files with no reviewable changes (1)
  • apps/webapp/app/routes/_app.orgs.$organizationSlug.projects.$projectParam.env.$envParam.test/route.tsx
🧰 Additional context used
🧬 Code Definitions (3)
apps/webapp/app/routes/_app.orgs.$organizationSlug.projects.$projectParam.env.$envParam.test.tasks.$taskParam/route.tsx (1)
apps/webapp/app/v3/services/testTask.server.ts (1)
  • TestTaskService (7-50)
apps/webapp/app/presenters/v3/TaskListPresenter.server.ts (1)
internal-packages/run-engine/src/engine/index.ts (1)
  • environmentId (1324-1326)
apps/webapp/app/v3/services/testTask.server.ts (2)
apps/webapp/app/v3/services/batchTriggerV3.server.ts (1)
  • environment (318-413)
apps/webapp/app/v3/services/triggerTask.server.ts (1)
  • TriggerTaskService (37-92)
🪛 Biome (1.9.4)
apps/webapp/app/v3/services/testTask.server.ts

[error] 13-19: Other switch clauses can erroneously access this declaration.
Wrap the declaration in a block to restrict its access to the switch clause.

The declaration is defined in this switch clause:

Unsafe fix: Wrap the declaration in a block.

(lint/correctness/noSwitchDeclarations)

⏰ Context from checks skipped due to timeout of 90000ms (5)
  • GitHub Check: e2e / 🧪 CLI v3 tests (windows-latest - pnpm)
  • GitHub Check: e2e / 🧪 CLI v3 tests (windows-latest - npm)
  • GitHub Check: typecheck / typecheck
  • GitHub Check: units / 🧪 Unit Tests
  • GitHub Check: Analyze (javascript-typescript)
🔇 Additional comments (13)
apps/webapp/app/routes/_app.orgs.$organizationSlug.projects.$projectParam.env.$envParam.test.tasks.$taskParam/route.tsx (3)

107-116: Improved error handling for project validation.

The added code properly validates the project's existence by using findProjectBySlug and returns a clear error message if the project is not found. This prevents attempts to run tests against non-existent projects.


112-116: Added environment validation for test execution.

Great addition of environment validation before proceeding with test execution. This ensures tests only run in valid environments and provides clear error messages to users.


120-120: Updated testService.call parameter to use environment directly.

This change properly aligns with the updated TestTaskService.call method signature, which now accepts an AuthenticatedEnvironment object directly instead of a userId. This eliminates the need to look up the environment twice and is more efficient.

apps/webapp/app/routes/_app.orgs.$organizationSlug.projects.$projectParam.env.$envParam._index/route.tsx (3)

73-74: Imported helper functions for project and environment validation.

The addition of these imports provides access to the helper functions needed for proper validation of projects and environments by slug.


109-123: Added robust validation for project and environment.

This is a critical improvement that ensures proper validation of both project and environment before retrieving tasks. The code now throws appropriate 404 responses with helpful error messages when resources don't exist, enhancing both security and user experience.


127-130: Updated TaskListPresenter call parameters.

The parameter structure has been simplified to only pass the essential environmentId and projectId values rather than retrieving them again inside the presenter. This matches the updated method signature in TaskListPresenter and reduces redundant lookups.

apps/webapp/app/v3/services/testTask.server.ts (3)

2-2: Added import for AuthenticatedEnvironment type.

This import supports the updated method signature for the call method.


8-8: Updated method signature to accept environment directly.

The call method now accepts an AuthenticatedEnvironment object directly instead of a userId. This simplifies the code by eliminating the need to look up the environment separately and aligns with how the environment is handled across the application.


36-36: Updated environment parameter in SCHEDULED case.

The environment parameter is now passed directly to the triggerTaskService in the SCHEDULED case as well, matching the pattern used in the STANDARD case.

apps/webapp/app/presenters/v3/TaskListPresenter.server.ts (4)

26-26: Simplified method signature for TaskListPresenter.call.

The method now only requires the essential environmentId and projectId parameters, removing the need for userId, organizationSlug, projectSlug, and environmentSlug. This streamlines the code and removes redundant parameter passing.


41-42: Updated SQL queries to use environmentId directly.

The SQL queries now reference the environmentId parameter directly instead of accessing it through an environment object. This simplifies the code and aligns with the updated method signature.

Also applies to: 47-48


57-61: Updated helper method calls with direct parameter passing.

The calls to internal helper methods now pass projectId and environmentId directly, aligning with the simplified parameter structure throughout the codebase.

Also applies to: 63-67, 69-73


75-75: Simplified return statement.

The return statement has been simplified to exclude the environment object, focusing only on the task-related data: tasks, activity, runningStats, and durations. This aligns with the overall approach of passing only necessary data.

@ericallam ericallam merged commit af45e83 into main Mar 28, 2025
12 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants