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

Development: Remove unused localVCenabled value from client #10478

Open
wants to merge 69 commits into
base: develop
Choose a base branch
from

Conversation

SimonEntholzer
Copy link
Contributor

@SimonEntholzer SimonEntholzer commented Mar 14, 2025

Checklist

General

Motivation and Context

In the client are still remnants of the gitlab setup.
As the localVCenabled flag is always true now, the client code depending on it can be removed.

Description

  • Removes the localVCenabled variable, and removes releted HTML

Steps for Testing

  1. Navigate through programming exercise components, and verify nothing is broken

Testserver States

You can manage test servers using Helios. Check environment statuses in the environment list. To deploy to a test server, go to the CI/CD page, find your PR or branch, and trigger the deployment.

Review Progress

Code Review

  • Code Review 1
  • Code Review 2

Manual Tests

  • Test 1
  • Test 2

Test Coverage

Screenshots

no UI change

Summary by CodeRabbit

  • Refactor
    • Streamlined several views and action prompts by removing conditional toggles for repository access and deletion confirmations. Interface elements now consistently display unified download options and messaging across exams, programming exercises, and assessments.
    • Updated user settings to always show SSH configuration links for easier access.
  • Tests
    • Revised test suites to align with the simplified logic and consistent interface behavior.

krusche and others added 30 commits February 22, 2025 10:01
also remove everything related to lock and unlock operations as those are not needed for LocalVC systems

TODO: we need to make sure that repository locks are displayed dynamically for the online code editor and are handled dynamically when pushing code. we also need to make sure that stash operations are invoked properly
…tudentParticipationWithoutSubmissionNorResult test in ProgrammingSubmissionAndResultLocalVcJenkinsIntegrationTest -> there cannot be a result without a submission with localVC
# Conflicts:
#	src/main/java/de/tum/cit/aet/artemis/communication/domain/NotificationType.java
#	src/main/java/de/tum/cit/aet/artemis/communication/domain/notification/NotificationConstants.java
#	src/main/java/de/tum/cit/aet/artemis/core/service/user/UserService.java
#	src/test/java/de/tum/cit/aet/artemis/exercise/participation/ParticipationIntegrationTest.java
# Conflicts:
#	src/main/java/de/tum/cit/aet/artemis/exam/web/ExamLockResource.java
#	src/main/java/de/tum/cit/aet/artemis/programming/service/gitlabci/GitLabCIInfoContributor.java
#	src/main/java/de/tum/cit/aet/artemis/programming/service/vcs/AbstractVersionControlService.java
#	src/main/java/de/tum/cit/aet/artemis/programming/web/ProgrammingExerciseLockResource.java
#	src/main/java/de/tum/cit/aet/artemis/programming/web/open/PublicProgrammingSubmissionResource.java
#	src/test/java/de/tum/cit/aet/artemis/core/authentication/UserJenkinsLocalVcIntegrationTest.java
#	src/test/java/de/tum/cit/aet/artemis/core/user/AccountResourceWithGitLabIntegrationTest.java
#	src/test/java/de/tum/cit/aet/artemis/exam/ExamIntegrationTest.java
#	src/test/java/de/tum/cit/aet/artemis/exam/ProgrammingExamIntegrationTest.java
#	src/test/java/de/tum/cit/aet/artemis/exam/StudentExamIntegrationTest.java
#	src/test/java/de/tum/cit/aet/artemis/exercise/participation/ParticipationIntegrationTest.java
#	src/test/java/de/tum/cit/aet/artemis/programming/CourseLocalVcJenkinsIntegrationTest.java
#	src/test/java/de/tum/cit/aet/artemis/programming/ProgrammingExerciseIntegrationTestService.java
#	src/test/java/de/tum/cit/aet/artemis/programming/ProgrammingSubmissionIntegrationTest.java
#	src/test/java/de/tum/cit/aet/artemis/programming/icl/LocalVCServiceTest.java
…should fail -> does not make sense with gitlab removed
@github-actions github-actions bot removed communication Pull requests that affect the corresponding module core Pull requests that affect the corresponding module exercise Pull requests that affect the corresponding module fileupload Pull requests that affect the corresponding module iris Pull requests that affect the corresponding module lti Pull requests that affect the corresponding module modeling Pull requests that affect the corresponding module quiz Pull requests that affect the corresponding module text Pull requests that affect the corresponding module labels Mar 18, 2025
…d-from-client

# Conflicts:
#	src/main/webapp/app/exercise/dashboards/tutor/exercise-assessment-dashboard.component.ts
#	src/main/webapp/app/exercise/exercise-scores/exercise-scores.component.ts
#	src/main/webapp/app/exercise/participation/participation.component.ts
#	src/main/webapp/app/programming/manage/assess/code-editor-tutor-assessment-container.component.ts
#	src/main/webapp/app/shared/components/code-button/code-button.component.ts
#	src/test/javascript/spec/component/programming-assessment/code-editor-tutor-assessment-container.component.spec.ts
@github-actions github-actions bot added the exercise Pull requests that affect the corresponding module label Mar 19, 2025
@github-actions github-actions bot removed the server Pull requests that update Java code. (Added Automatically!) label Mar 19, 2025
@github-actions github-actions bot added the core Pull requests that affect the corresponding module label Mar 25, 2025
@SimonEntholzer SimonEntholzer marked this pull request as ready for review March 25, 2025 11:14
@SimonEntholzer SimonEntholzer requested a review from a team as a code owner March 25, 2025 11:14
Copy link
Contributor

coderabbitai bot commented Mar 25, 2025

Walkthrough

This pull request removes the localVCEnabled property, the PROFILE_LOCALVC constant, and all associated conditional logic from numerous Angular components. Both TypeScript code and HTML templates are simplified by eliminating checks that previously altered behavior or presentation based on a local version control (VC) state. In addition, related test setups have been updated by removing mocks and providers for profile-based VC flags, thereby streamlining the code and UI by focusing only on the remaining profiles and settings.

Changes

File(s) Change Summary
src/main/webapp/app/core/course/overview/exercise-details/…/exercise-details-student-actions.component.ts, src/main/webapp/app/exam/manage/exercise-groups/exercise-groups.component.ts, src/main/webapp/app/exam/manage/exercise-groups/…/programming-exercise-group-cell.component.ts, src/main/webapp/app/exam/manage/student-exams/student-exams.component.ts, src/main/webapp/app/exam/overview/summary/exercises/programming-exam-summary/programming-exam-summary.component.ts, src/main/webapp/app/exercise/dashboards/tutor/exercise-assessment-dashboard.component.ts, src/main/webapp/app/exam/exercise-row-buttons/exam-exercise-row-buttons.component.ts, src/main/webapp/app/exercise/exercise-scores/exercise-scores.component.ts, src/main/webapp/app/programming/manage/code-editor-tutor-assessment-container.component.ts, src/main/webapp/app/programming/manage/programming-exercise-detail.component.ts, src/main/webapp/app/programming/manage/programming-exercise.component.ts, src/main/webapp/app/programming/shared/repository-view/repository-view.component.ts, src/main/webapp/app/shared/components/code-button/code-button.component.ts, src/main/webapp/app/shared/detail-overview-list/detail-overview-list.component.ts, src/main/webapp/app/shared/user-settings/user-settings-container/user-settings-container.component.ts Removed the localVCEnabled property/variable, eliminated PROFILE_LOCALVC imports and conditional logic, and removed or simplified related ProfileService injections and profile checks in the components’ TypeScript code.
src/main/webapp/app/exam/manage/exercise-groups/exercise-groups.component.html, src/main/webapp/app/exam/manage/exercise-groups/…/programming-exercise-group-cell.component.html, src/main/webapp/app/exercise/dashboards/tutor/exercise-assessment-dashboard.component.html, src/main/webapp/app/exam/exercise-row-buttons/exam-exercise-row-buttons.component.html, src/main/webapp/app/exercise/exercise-scores/exercise-scores.component.html, src/main/webapp/app/exercise/participation/participation.component.html, src/main/webapp/app/programming/manage/assess/code-editor-tutor-assessment-container.component.html, src/main/webapp/app/programming/manage/programming-exercise-detail.component.html, src/main/webapp/app/programming/manage/programming-exercise.component.html, src/main/webapp/app/programming/shared/repository-view/repository-view.component.html, src/main/webapp/app/shared/components/code-button/code-button.component.html, src/main/webapp/app/shared/user-settings/user-settings-container/user-settings-container.component.html Removed conditional rendering based on localVCEnabled and replaced dynamic value assignments (e.g., for delete confirmation text and repository link buttons) with static values for a more streamlined UI.
src/test/javascript/spec/…/*.spec.ts (various test files) Removed mocks, imports, and providers related to ProfileService and localVCEnabled; updated test expectations to reflect the simplified logic and UI behavior.

Possibly related PRs

✨ Finishing Touches
  • 📝 Generate Docstrings

🪧 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 or @coderabbitai title anywhere in the PR title to generate the title automatically.

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.

coderabbitai[bot]
coderabbitai bot previously approved these changes Mar 25, 2025
Copy link
Contributor

@tobias-lippert tobias-lippert left a comment

Choose a reason for hiding this comment

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

see Github errors

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: 0

🧹 Nitpick comments (1)
src/test/javascript/spec/component/account/user-settings-container.component.spec.ts (1)

42-48: Align spy verifications with coding guidelines

The test looks good overall, but there are a couple of improvements that would better align with the coding guidelines:

  1. For spy verification on line 45, use the more specific toHaveBeenCalledOnce() instead of the generic toHaveBeenCalled()
  2. For boolean expectation on line 47, use toBeFalse() instead of toEqual(false) as per the guidelines
  it('should initialize with loaded user', () => {
    const getAuthenticationSpy = jest.spyOn(accountService, 'getAuthenticationState');
    fixture.detectChanges();
-   expect(getAuthenticationSpy).toHaveBeenCalled();
+   expect(getAuthenticationSpy).toHaveBeenCalledOnce();
    expect(comp.currentUser?.id).toEqual(99);
-   expect(comp.isAtLeastTutor).toEqual(false);
+   expect(comp.isAtLeastTutor).toBeFalse();
  });
📜 Review details

Configuration used: .coderabbit.yaml
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 5db8db8 and 528b6fc.

📒 Files selected for processing (2)
  • src/test/javascript/spec/component/account/user-settings-container.component.spec.ts (1 hunks)
  • src/test/javascript/spec/component/exercises/shared/exercise-scores/exercise-scores.component.spec.ts (0 hunks)
💤 Files with no reviewable changes (1)
  • src/test/javascript/spec/component/exercises/shared/exercise-scores/exercise-scores.component.spec.ts
🧰 Additional context used
📓 Path-based instructions (1)
`src/test/javascript/spec/**/*.ts`: jest: true; mock: NgMocks; bad_practices: avoid_full_module_import; perf_improvements: mock_irrelevant_deps; service_testing: mock_http_for_logi...

src/test/javascript/spec/**/*.ts: jest: true; mock: NgMocks; bad_practices: avoid_full_module_import; perf_improvements: mock_irrelevant_deps; service_testing: mock_http_for_logic; no_schema: avoid_NO_ERRORS_SCHEMA; expectation_specificity: true; solutions: {boolean: toBeTrue/False, reference: toBe, existence: toBeNull/NotNull, undefined: toBeUndefined, class_obj: toContainEntries/toEqual, spy_calls: {not_called: not.toHaveBeenCalled, once: toHaveBeenCalledOnce, with_value: toHaveBeenCalledWith|toHaveBeenCalledExactlyOnceWith}}

  • src/test/javascript/spec/component/account/user-settings-container.component.spec.ts
⏰ Context from checks skipped due to timeout of 90000ms (7)
  • GitHub Check: Build and Push Docker Image / Build Docker Image for ls1intum/artemis
  • GitHub Check: Build and Push Docker Image / Build Docker Image for ls1intum/artemis
  • GitHub Check: Build .war artifact
  • GitHub Check: client-tests-selected
  • GitHub Check: client-tests
  • GitHub Check: server-tests
  • GitHub Check: Analyse
🔇 Additional comments (2)
src/test/javascript/spec/component/account/user-settings-container.component.spec.ts (2)

31-31: LGTM - Using MockAccountService as requested

The changes properly implement the previous review comment by using MockAccountService instead of a manual mock.


25-25: Simplification of imports looks good

The component imports have been simplified to only include what's necessary, which improves maintainability.

Copy link

github-actions bot commented Apr 2, 2025

There hasn't been any activity on this pull request recently. Therefore, this pull request has been automatically marked as stale and will be closed if no further activity occurs within seven days. Thank you for your contributions.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
client Pull requests that update TypeScript code. (Added Automatically!) core Pull requests that affect the corresponding module exam Pull requests that affect the corresponding module exercise Pull requests that affect the corresponding module programming Pull requests that affect the corresponding module stale tests
Projects
Status: Ready For Review
Status: Todo
Development

Successfully merging this pull request may close these issues.

3 participants