Skip to content

Conversation

BohdanMar
Copy link
Contributor

@BohdanMar BohdanMar commented Jul 16, 2025

  • Add 'Test Git Plugin' test suite for GitHub repository URL verification
  • Test verifies GitHub 'View Source' link on component Overview page
  • Fixes RHTAPUI-51

Test validates the Git plugin integration by checking that GitHub repository URLs are properly displayed and accessible from the component Overview page.

@BohdanMar BohdanMar requested a review from Katka92 as a code owner July 16, 2025 11:53
Copy link

coderabbitai bot commented Jul 16, 2025

Important

Review skipped

Auto reviews are disabled on base/target branches other than the default branch.

Please check the settings in the CodeRabbit UI or the .coderabbit.yaml file in this repository. To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.

✨ Finishing Touches
🧪 Generate unit tests
  • Create PR with unit tests
  • Post copyable unit tests in a comment

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share
🪧 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.
    • Explain this complex logic.
    • 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 explain this code block.
    • @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 explain its main purpose.
    • @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.

Support

Need help? Create a ticket on our support page for assistance with any issues or questions.

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 generate sequence diagram to generate a sequence diagram of the changes in this PR.
  • @coderabbitai generate unit tests to generate unit tests for this PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @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
Collaborator

@Katka92 Katka92 left a comment

Choose a reason for hiding this comment

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

Your test is very verbose. Please consider if we really need all those console.log statements - I understand it's useful for debugging, but it seems to be overhead for such a simple test.
The usual way is to have a logger rather then outputting console.log, but I'm not sure if we already have some. So feel free to use console.log if needed. Thank you

@Katka92 Katka92 requested a review from xinredhat as a code owner July 17, 2025 11:54
BohdanMar added a commit to BohdanMar/tssc-test that referenced this pull request Jul 18, 2025
- Remove networkidle dependency, use domcontentloaded instead
- Simplify locator strategy to single comprehensive selector
- Reduce console.log statements for cleaner output
- Update comment to reflect component assignment vs creation
- Maintain authentication handling through separate auth.setup.ts

Addresses feedback from review by Katka92 in PR redhat-appstudio#52
BohdanMar added a commit to BohdanMar/tssc-test that referenced this pull request Jul 18, 2025
- Remove networkidle dependency, use domcontentloaded instead
- Simplify locator strategy to single comprehensive selector
- Reduce console.log statements for cleaner output
- Update comment to reflect component assignment vs creation
- Maintain authentication handling through separate auth.setup.ts

Addresses feedback from review by Katka92 in PR redhat-appstudio#52
@Katka92
Copy link
Collaborator

Katka92 commented Jul 18, 2025

Thank you for addressing all the comments. The code is much cleaner and easier to read. 👍

Now we need to address best practices and follow the test design. So there is still some work needed, like:

  • moving related page object locators to /src/ui/page-objects files
  • separating the logic to the gitInterface and GithubUiPlugin class so the logic will be used dynamically based on setup used

I imagine it to be something like:

test.describe("Verify Git", () => {
    test('verify "View Source" link', async ({ page }) => {
        const componentUrl = component.getComponentUrl();
        await page.goto(componentUrl, { timeout: 20000 });
          
        await page.waitForLoadState('domcontentloaded');
        await page.getByRole('heading', { name: component.getCoreComponent().getName() }).waitFor({ state: 'visible', timeout: 20000 });
          
        await component.getGit().checkViewSourceLink(page);
    });
});

BohdanMar added a commit to BohdanMar/tssc-test that referenced this pull request Jul 29, 2025
- Remove networkidle dependency, use domcontentloaded instead
- Simplify locator strategy to single comprehensive selector
- Reduce console.log statements for cleaner output
- Update comment to reflect component assignment vs creation
- Maintain authentication handling through separate auth.setup.ts

Addresses feedback from review by Katka92 in PR redhat-appstudio#52
rhopp pushed a commit to BohdanMar/tssc-test that referenced this pull request Jul 30, 2025
- Remove networkidle dependency, use domcontentloaded instead
- Simplify locator strategy to single comprehensive selector
- Reduce console.log statements for cleaner output
- Update comment to reflect component assignment vs creation
- Maintain authentication handling through separate auth.setup.ts

Addresses feedback from review by Katka92 in PR redhat-appstudio#52
BohdanMar added a commit to BohdanMar/tssc-test that referenced this pull request Aug 1, 2025
- Remove networkidle dependency, use domcontentloaded instead
- Simplify locator strategy to single comprehensive selector
- Reduce console.log statements for cleaner output
- Update comment to reflect component assignment vs creation
- Maintain authentication handling through separate auth.setup.ts

Addresses feedback from review by Katka92 in PR redhat-appstudio#52
BohdanMar and others added 9 commits August 1, 2025 11:20
- Add 'Test Git Plugin' test suite for GitHub repository URL verification
- Test verifies GitHub 'View Source' link on component Overview page
- Replace random component names with IMAGE_REGISTRY_ORG env var for more reliable testing

Test validates the Git plugin integration by checking that GitHub repository
URLs are properly displayed and accessible from the component Overview page.
- Remove networkidle dependency, use domcontentloaded instead
- Simplify locator strategy to single comprehensive selector
- Reduce console.log statements for cleaner output
- Update comment to reflect component assignment vs creation
- Maintain authentication handling through separate auth.setup.ts

Addresses feedback from review by Katka92 in PR redhat-appstudio#52
- Remove excessive console.log statements
- Simplify locator strategy to single GitHub link selector
- Remove unnecessary try-catch complexity for HTTP status check
- Clean up code structure and remove step-by-step comments
Extract git verification logic from UI tests into dedicated plugin classes

- Add checkViewSourceLink method to git UI interface and implementations
- Extend GitHub and GitLab plugins with link verification functionality
- Simplify UI test by delegating to git plugin methods
- Add shell scripts for running authentication and UI test sequences
@Katka92 Katka92 merged commit be06251 into redhat-appstudio:ui_tests Aug 1, 2025
1 of 2 checks passed
Katka92 pushed a commit to Katka92/tssc-test that referenced this pull request Aug 4, 2025
* Add UI_tests for GitHub link verification on DH

- Add 'Test Git Plugin' test suite for GitHub repository URL verification
- Test verifies GitHub 'View Source' link on component Overview page
- Replace random component names with IMAGE_REGISTRY_ORG env var for more reliable testing

Test validates the Git plugin integration by checking that GitHub repository
URLs are properly displayed and accessible from the component Overview page.

* Address PR review feedback for GitHub link verification test

- Remove networkidle dependency, use domcontentloaded instead
- Simplify locator strategy to single comprehensive selector
- Reduce console.log statements for cleaner output
- Update comment to reflect component assignment vs creation
- Maintain authentication handling through separate auth.setup.ts

Addresses feedback from review by Katka92 in PR redhat-appstudio#52

* Simplify and clean up GitHub link verification test

- Remove excessive console.log statements
- Simplify locator strategy to single GitHub link selector
- Remove unnecessary try-catch complexity for HTTP status check
- Clean up code structure and remove step-by-step comments

* Update ui.test.ts

* Update ui test

* Refactor git UI verification into plugin architecture

Extract git verification logic from UI tests into dedicated plugin classes

- Add checkViewSourceLink method to git UI interface and implementations
- Extend GitHub and GitLab plugins with link verification functionality
- Simplify UI test by delegating to git plugin methods
- Add shell scripts for running authentication and UI test sequences

* Small updates

* Small updates

* Update UI tests

* Remove files with secrets

* Remove gitlab case
Katka92 pushed a commit that referenced this pull request Aug 4, 2025
* Add UI_tests for GitHub link verification on DH

- Add 'Test Git Plugin' test suite for GitHub repository URL verification
- Test verifies GitHub 'View Source' link on component Overview page
- Replace random component names with IMAGE_REGISTRY_ORG env var for more reliable testing

Test validates the Git plugin integration by checking that GitHub repository
URLs are properly displayed and accessible from the component Overview page.

* Address PR review feedback for GitHub link verification test

- Remove networkidle dependency, use domcontentloaded instead
- Simplify locator strategy to single comprehensive selector
- Reduce console.log statements for cleaner output
- Update comment to reflect component assignment vs creation
- Maintain authentication handling through separate auth.setup.ts

Addresses feedback from review by Katka92 in PR #52

* Simplify and clean up GitHub link verification test

- Remove excessive console.log statements
- Simplify locator strategy to single GitHub link selector
- Remove unnecessary try-catch complexity for HTTP status check
- Clean up code structure and remove step-by-step comments

* Update ui.test.ts

* Update ui test

* Refactor git UI verification into plugin architecture

Extract git verification logic from UI tests into dedicated plugin classes

- Add checkViewSourceLink method to git UI interface and implementations
- Extend GitHub and GitLab plugins with link verification functionality
- Simplify UI test by delegating to git plugin methods
- Add shell scripts for running authentication and UI test sequences

* Small updates

* Small updates

* Update UI tests

* Remove files with secrets

* Remove gitlab case
Katka92 pushed a commit that referenced this pull request Aug 5, 2025
* Add UI_tests for GitHub link verification on DH

- Add 'Test Git Plugin' test suite for GitHub repository URL verification
- Test verifies GitHub 'View Source' link on component Overview page
- Replace random component names with IMAGE_REGISTRY_ORG env var for more reliable testing

Test validates the Git plugin integration by checking that GitHub repository
URLs are properly displayed and accessible from the component Overview page.

* Address PR review feedback for GitHub link verification test

- Remove networkidle dependency, use domcontentloaded instead
- Simplify locator strategy to single comprehensive selector
- Reduce console.log statements for cleaner output
- Update comment to reflect component assignment vs creation
- Maintain authentication handling through separate auth.setup.ts

Addresses feedback from review by Katka92 in PR #52

* Simplify and clean up GitHub link verification test

- Remove excessive console.log statements
- Simplify locator strategy to single GitHub link selector
- Remove unnecessary try-catch complexity for HTTP status check
- Clean up code structure and remove step-by-step comments

* Update ui.test.ts

* Update ui test

* Refactor git UI verification into plugin architecture

Extract git verification logic from UI tests into dedicated plugin classes

- Add checkViewSourceLink method to git UI interface and implementations
- Extend GitHub and GitLab plugins with link verification functionality
- Simplify UI test by delegating to git plugin methods
- Add shell scripts for running authentication and UI test sequences

* Small updates

* Small updates

* Update UI tests

* Remove files with secrets

* Remove gitlab case
Katka92 added a commit that referenced this pull request Aug 5, 2025
* [RHTAPUI-85] Adds authentication setup

* Add UI_tests for GitHub link verification on DH (#52)

* Add UI_tests for GitHub link verification on DH

- Add 'Test Git Plugin' test suite for GitHub repository URL verification
- Test verifies GitHub 'View Source' link on component Overview page
- Replace random component names with IMAGE_REGISTRY_ORG env var for more reliable testing

Test validates the Git plugin integration by checking that GitHub repository
URLs are properly displayed and accessible from the component Overview page.

* Address PR review feedback for GitHub link verification test

- Remove networkidle dependency, use domcontentloaded instead
- Simplify locator strategy to single comprehensive selector
- Reduce console.log statements for cleaner output
- Update comment to reflect component assignment vs creation
- Maintain authentication handling through separate auth.setup.ts

Addresses feedback from review by Katka92 in PR #52

* Simplify and clean up GitHub link verification test

- Remove excessive console.log statements
- Simplify locator strategy to single GitHub link selector
- Remove unnecessary try-catch complexity for HTTP status check
- Clean up code structure and remove step-by-step comments

* Update ui.test.ts

* Update ui test

* Refactor git UI verification into plugin architecture

Extract git verification logic from UI tests into dedicated plugin classes

- Add checkViewSourceLink method to git UI interface and implementations
- Extend GitHub and GitLab plugins with link verification functionality
- Simplify UI test by delegating to git plugin methods
- Add shell scripts for running authentication and UI test sequences

* Small updates

* Small updates

* Update UI tests

* Remove files with secrets

* Remove gitlab case

* feat(RHTAPUI-84): don't print secrets when loaded from env vars (#80)

* [RHTAPUI-85] Adds authentication setup

* feat(RHTAPUI-84): blur input field for 2FA token

---------

Co-authored-by: Jan Smid <jsmid@redhat.com>
Co-authored-by: BohdanMar <68649482+BohdanMar@users.noreply.github.com>
Katka92 pushed a commit that referenced this pull request Aug 6, 2025
* Add UI_tests for GitHub link verification on DH

- Add 'Test Git Plugin' test suite for GitHub repository URL verification
- Test verifies GitHub 'View Source' link on component Overview page
- Replace random component names with IMAGE_REGISTRY_ORG env var for more reliable testing

Test validates the Git plugin integration by checking that GitHub repository
URLs are properly displayed and accessible from the component Overview page.

* Address PR review feedback for GitHub link verification test

- Remove networkidle dependency, use domcontentloaded instead
- Simplify locator strategy to single comprehensive selector
- Reduce console.log statements for cleaner output
- Update comment to reflect component assignment vs creation
- Maintain authentication handling through separate auth.setup.ts

Addresses feedback from review by Katka92 in PR #52

* Simplify and clean up GitHub link verification test

- Remove excessive console.log statements
- Simplify locator strategy to single GitHub link selector
- Remove unnecessary try-catch complexity for HTTP status check
- Clean up code structure and remove step-by-step comments

* Update ui.test.ts

* Update ui test

* Refactor git UI verification into plugin architecture

Extract git verification logic from UI tests into dedicated plugin classes

- Add checkViewSourceLink method to git UI interface and implementations
- Extend GitHub and GitLab plugins with link verification functionality
- Simplify UI test by delegating to git plugin methods
- Add shell scripts for running authentication and UI test sequences

* Small updates

* Small updates

* Update UI tests

* Remove files with secrets

* Remove gitlab case
Katka92 added a commit that referenced this pull request Aug 6, 2025
* [RHTAPUI-85] Adds authentication setup

* Add UI_tests for GitHub link verification on DH (#52)

* Add UI_tests for GitHub link verification on DH

- Add 'Test Git Plugin' test suite for GitHub repository URL verification
- Test verifies GitHub 'View Source' link on component Overview page
- Replace random component names with IMAGE_REGISTRY_ORG env var for more reliable testing

Test validates the Git plugin integration by checking that GitHub repository
URLs are properly displayed and accessible from the component Overview page.

* Address PR review feedback for GitHub link verification test

- Remove networkidle dependency, use domcontentloaded instead
- Simplify locator strategy to single comprehensive selector
- Reduce console.log statements for cleaner output
- Update comment to reflect component assignment vs creation
- Maintain authentication handling through separate auth.setup.ts

Addresses feedback from review by Katka92 in PR #52

* Simplify and clean up GitHub link verification test

- Remove excessive console.log statements
- Simplify locator strategy to single GitHub link selector
- Remove unnecessary try-catch complexity for HTTP status check
- Clean up code structure and remove step-by-step comments

* Update ui.test.ts

* Update ui test

* Refactor git UI verification into plugin architecture

Extract git verification logic from UI tests into dedicated plugin classes

- Add checkViewSourceLink method to git UI interface and implementations
- Extend GitHub and GitLab plugins with link verification functionality
- Simplify UI test by delegating to git plugin methods
- Add shell scripts for running authentication and UI test sequences

* Small updates

* Small updates

* Update UI tests

* Remove files with secrets

* Remove gitlab case

* feat(RHTAPUI-84): don't print secrets when loaded from env vars (#80)

* [RHTAPUI-85] Adds authentication setup

* feat(RHTAPUI-84): blur input field for 2FA token

---------

Co-authored-by: Jan Smid <jsmid@redhat.com>
Co-authored-by: BohdanMar <68649482+BohdanMar@users.noreply.github.com>
Katka92 pushed a commit that referenced this pull request Aug 11, 2025
* Add UI_tests for GitHub link verification on DH

- Add 'Test Git Plugin' test suite for GitHub repository URL verification
- Test verifies GitHub 'View Source' link on component Overview page
- Replace random component names with IMAGE_REGISTRY_ORG env var for more reliable testing

Test validates the Git plugin integration by checking that GitHub repository
URLs are properly displayed and accessible from the component Overview page.

* Address PR review feedback for GitHub link verification test

- Remove networkidle dependency, use domcontentloaded instead
- Simplify locator strategy to single comprehensive selector
- Reduce console.log statements for cleaner output
- Update comment to reflect component assignment vs creation
- Maintain authentication handling through separate auth.setup.ts

Addresses feedback from review by Katka92 in PR #52

* Simplify and clean up GitHub link verification test

- Remove excessive console.log statements
- Simplify locator strategy to single GitHub link selector
- Remove unnecessary try-catch complexity for HTTP status check
- Clean up code structure and remove step-by-step comments

* Update ui.test.ts

* Update ui test

* Refactor git UI verification into plugin architecture

Extract git verification logic from UI tests into dedicated plugin classes

- Add checkViewSourceLink method to git UI interface and implementations
- Extend GitHub and GitLab plugins with link verification functionality
- Simplify UI test by delegating to git plugin methods
- Add shell scripts for running authentication and UI test sequences

* Small updates

* Small updates

* Update UI tests

* Remove files with secrets

* Remove gitlab case
Katka92 added a commit that referenced this pull request Aug 11, 2025
* [RHTAPUI-85] Adds authentication setup

* Add UI_tests for GitHub link verification on DH (#52)

* Add UI_tests for GitHub link verification on DH

- Add 'Test Git Plugin' test suite for GitHub repository URL verification
- Test verifies GitHub 'View Source' link on component Overview page
- Replace random component names with IMAGE_REGISTRY_ORG env var for more reliable testing

Test validates the Git plugin integration by checking that GitHub repository
URLs are properly displayed and accessible from the component Overview page.

* Address PR review feedback for GitHub link verification test

- Remove networkidle dependency, use domcontentloaded instead
- Simplify locator strategy to single comprehensive selector
- Reduce console.log statements for cleaner output
- Update comment to reflect component assignment vs creation
- Maintain authentication handling through separate auth.setup.ts

Addresses feedback from review by Katka92 in PR #52

* Simplify and clean up GitHub link verification test

- Remove excessive console.log statements
- Simplify locator strategy to single GitHub link selector
- Remove unnecessary try-catch complexity for HTTP status check
- Clean up code structure and remove step-by-step comments

* Update ui.test.ts

* Update ui test

* Refactor git UI verification into plugin architecture

Extract git verification logic from UI tests into dedicated plugin classes

- Add checkViewSourceLink method to git UI interface and implementations
- Extend GitHub and GitLab plugins with link verification functionality
- Simplify UI test by delegating to git plugin methods
- Add shell scripts for running authentication and UI test sequences

* Small updates

* Small updates

* Update UI tests

* Remove files with secrets

* Remove gitlab case

* feat(RHTAPUI-84): don't print secrets when loaded from env vars (#80)

* [RHTAPUI-85] Adds authentication setup

* feat(RHTAPUI-84): blur input field for 2FA token

---------

Co-authored-by: Jan Smid <jsmid@redhat.com>
Co-authored-by: BohdanMar <68649482+BohdanMar@users.noreply.github.com>
Katka92 pushed a commit to Katka92/tssc-test that referenced this pull request Aug 12, 2025
* Add UI_tests for GitHub link verification on DH

- Add 'Test Git Plugin' test suite for GitHub repository URL verification
- Test verifies GitHub 'View Source' link on component Overview page
- Replace random component names with IMAGE_REGISTRY_ORG env var for more reliable testing

Test validates the Git plugin integration by checking that GitHub repository
URLs are properly displayed and accessible from the component Overview page.

* Address PR review feedback for GitHub link verification test

- Remove networkidle dependency, use domcontentloaded instead
- Simplify locator strategy to single comprehensive selector
- Reduce console.log statements for cleaner output
- Update comment to reflect component assignment vs creation
- Maintain authentication handling through separate auth.setup.ts

Addresses feedback from review by Katka92 in PR redhat-appstudio#52

* Simplify and clean up GitHub link verification test

- Remove excessive console.log statements
- Simplify locator strategy to single GitHub link selector
- Remove unnecessary try-catch complexity for HTTP status check
- Clean up code structure and remove step-by-step comments

* Update ui.test.ts

* Update ui test

* Refactor git UI verification into plugin architecture

Extract git verification logic from UI tests into dedicated plugin classes

- Add checkViewSourceLink method to git UI interface and implementations
- Extend GitHub and GitLab plugins with link verification functionality
- Simplify UI test by delegating to git plugin methods
- Add shell scripts for running authentication and UI test sequences

* Small updates

* Small updates

* Update UI tests

* Remove files with secrets

* Remove gitlab case
Katka92 added a commit to Katka92/tssc-test that referenced this pull request Aug 12, 2025
* [RHTAPUI-85] Adds authentication setup

* Add UI_tests for GitHub link verification on DH (redhat-appstudio#52)

* Add UI_tests for GitHub link verification on DH

- Add 'Test Git Plugin' test suite for GitHub repository URL verification
- Test verifies GitHub 'View Source' link on component Overview page
- Replace random component names with IMAGE_REGISTRY_ORG env var for more reliable testing

Test validates the Git plugin integration by checking that GitHub repository
URLs are properly displayed and accessible from the component Overview page.

* Address PR review feedback for GitHub link verification test

- Remove networkidle dependency, use domcontentloaded instead
- Simplify locator strategy to single comprehensive selector
- Reduce console.log statements for cleaner output
- Update comment to reflect component assignment vs creation
- Maintain authentication handling through separate auth.setup.ts

Addresses feedback from review by Katka92 in PR redhat-appstudio#52

* Simplify and clean up GitHub link verification test

- Remove excessive console.log statements
- Simplify locator strategy to single GitHub link selector
- Remove unnecessary try-catch complexity for HTTP status check
- Clean up code structure and remove step-by-step comments

* Update ui.test.ts

* Update ui test

* Refactor git UI verification into plugin architecture

Extract git verification logic from UI tests into dedicated plugin classes

- Add checkViewSourceLink method to git UI interface and implementations
- Extend GitHub and GitLab plugins with link verification functionality
- Simplify UI test by delegating to git plugin methods
- Add shell scripts for running authentication and UI test sequences

* Small updates

* Small updates

* Update UI tests

* Remove files with secrets

* Remove gitlab case

* feat(RHTAPUI-84): don't print secrets when loaded from env vars (redhat-appstudio#80)

* [RHTAPUI-85] Adds authentication setup

* feat(RHTAPUI-84): blur input field for 2FA token

---------

Co-authored-by: Jan Smid <jsmid@redhat.com>
Co-authored-by: BohdanMar <68649482+BohdanMar@users.noreply.github.com>
Katka92 pushed a commit that referenced this pull request Aug 13, 2025
* Add UI_tests for GitHub link verification on DH

- Add 'Test Git Plugin' test suite for GitHub repository URL verification
- Test verifies GitHub 'View Source' link on component Overview page
- Replace random component names with IMAGE_REGISTRY_ORG env var for more reliable testing

Test validates the Git plugin integration by checking that GitHub repository
URLs are properly displayed and accessible from the component Overview page.

* Address PR review feedback for GitHub link verification test

- Remove networkidle dependency, use domcontentloaded instead
- Simplify locator strategy to single comprehensive selector
- Reduce console.log statements for cleaner output
- Update comment to reflect component assignment vs creation
- Maintain authentication handling through separate auth.setup.ts

Addresses feedback from review by Katka92 in PR #52

* Simplify and clean up GitHub link verification test

- Remove excessive console.log statements
- Simplify locator strategy to single GitHub link selector
- Remove unnecessary try-catch complexity for HTTP status check
- Clean up code structure and remove step-by-step comments

* Update ui.test.ts

* Update ui test

* Refactor git UI verification into plugin architecture

Extract git verification logic from UI tests into dedicated plugin classes

- Add checkViewSourceLink method to git UI interface and implementations
- Extend GitHub and GitLab plugins with link verification functionality
- Simplify UI test by delegating to git plugin methods
- Add shell scripts for running authentication and UI test sequences

* Small updates

* Small updates

* Update UI tests

* Remove files with secrets

* Remove gitlab case
Katka92 added a commit that referenced this pull request Aug 13, 2025
* [RHTAPUI-85] Adds authentication setup

* Add UI_tests for GitHub link verification on DH (#52)

* Add UI_tests for GitHub link verification on DH

- Add 'Test Git Plugin' test suite for GitHub repository URL verification
- Test verifies GitHub 'View Source' link on component Overview page
- Replace random component names with IMAGE_REGISTRY_ORG env var for more reliable testing

Test validates the Git plugin integration by checking that GitHub repository
URLs are properly displayed and accessible from the component Overview page.

* Address PR review feedback for GitHub link verification test

- Remove networkidle dependency, use domcontentloaded instead
- Simplify locator strategy to single comprehensive selector
- Reduce console.log statements for cleaner output
- Update comment to reflect component assignment vs creation
- Maintain authentication handling through separate auth.setup.ts

Addresses feedback from review by Katka92 in PR #52

* Simplify and clean up GitHub link verification test

- Remove excessive console.log statements
- Simplify locator strategy to single GitHub link selector
- Remove unnecessary try-catch complexity for HTTP status check
- Clean up code structure and remove step-by-step comments

* Update ui.test.ts

* Update ui test

* Refactor git UI verification into plugin architecture

Extract git verification logic from UI tests into dedicated plugin classes

- Add checkViewSourceLink method to git UI interface and implementations
- Extend GitHub and GitLab plugins with link verification functionality
- Simplify UI test by delegating to git plugin methods
- Add shell scripts for running authentication and UI test sequences

* Small updates

* Small updates

* Update UI tests

* Remove files with secrets

* Remove gitlab case

* feat(RHTAPUI-84): don't print secrets when loaded from env vars (#80)

* [RHTAPUI-85] Adds authentication setup

* feat(RHTAPUI-84): blur input field for 2FA token

---------

Co-authored-by: Jan Smid <jsmid@redhat.com>
Co-authored-by: BohdanMar <68649482+BohdanMar@users.noreply.github.com>
Katka92 pushed a commit that referenced this pull request Aug 15, 2025
* Add UI_tests for GitHub link verification on DH

- Add 'Test Git Plugin' test suite for GitHub repository URL verification
- Test verifies GitHub 'View Source' link on component Overview page
- Replace random component names with IMAGE_REGISTRY_ORG env var for more reliable testing

Test validates the Git plugin integration by checking that GitHub repository
URLs are properly displayed and accessible from the component Overview page.

* Address PR review feedback for GitHub link verification test

- Remove networkidle dependency, use domcontentloaded instead
- Simplify locator strategy to single comprehensive selector
- Reduce console.log statements for cleaner output
- Update comment to reflect component assignment vs creation
- Maintain authentication handling through separate auth.setup.ts

Addresses feedback from review by Katka92 in PR #52

* Simplify and clean up GitHub link verification test

- Remove excessive console.log statements
- Simplify locator strategy to single GitHub link selector
- Remove unnecessary try-catch complexity for HTTP status check
- Clean up code structure and remove step-by-step comments

* Update ui.test.ts

* Update ui test

* Refactor git UI verification into plugin architecture

Extract git verification logic from UI tests into dedicated plugin classes

- Add checkViewSourceLink method to git UI interface and implementations
- Extend GitHub and GitLab plugins with link verification functionality
- Simplify UI test by delegating to git plugin methods
- Add shell scripts for running authentication and UI test sequences

* Small updates

* Small updates

* Update UI tests

* Remove files with secrets

* Remove gitlab case
Katka92 added a commit that referenced this pull request Aug 15, 2025
* [RHTAPUI-85] Adds authentication setup

* Add UI_tests for GitHub link verification on DH (#52)

* Add UI_tests for GitHub link verification on DH

- Add 'Test Git Plugin' test suite for GitHub repository URL verification
- Test verifies GitHub 'View Source' link on component Overview page
- Replace random component names with IMAGE_REGISTRY_ORG env var for more reliable testing

Test validates the Git plugin integration by checking that GitHub repository
URLs are properly displayed and accessible from the component Overview page.

* Address PR review feedback for GitHub link verification test

- Remove networkidle dependency, use domcontentloaded instead
- Simplify locator strategy to single comprehensive selector
- Reduce console.log statements for cleaner output
- Update comment to reflect component assignment vs creation
- Maintain authentication handling through separate auth.setup.ts

Addresses feedback from review by Katka92 in PR #52

* Simplify and clean up GitHub link verification test

- Remove excessive console.log statements
- Simplify locator strategy to single GitHub link selector
- Remove unnecessary try-catch complexity for HTTP status check
- Clean up code structure and remove step-by-step comments

* Update ui.test.ts

* Update ui test

* Refactor git UI verification into plugin architecture

Extract git verification logic from UI tests into dedicated plugin classes

- Add checkViewSourceLink method to git UI interface and implementations
- Extend GitHub and GitLab plugins with link verification functionality
- Simplify UI test by delegating to git plugin methods
- Add shell scripts for running authentication and UI test sequences

* Small updates

* Small updates

* Update UI tests

* Remove files with secrets

* Remove gitlab case

* feat(RHTAPUI-84): don't print secrets when loaded from env vars (#80)

* [RHTAPUI-85] Adds authentication setup

* feat(RHTAPUI-84): blur input field for 2FA token

---------

Co-authored-by: Jan Smid <jsmid@redhat.com>
Co-authored-by: BohdanMar <68649482+BohdanMar@users.noreply.github.com>
jsmid1 pushed a commit that referenced this pull request Aug 18, 2025
* Add UI_tests for GitHub link verification on DH

- Add 'Test Git Plugin' test suite for GitHub repository URL verification
- Test verifies GitHub 'View Source' link on component Overview page
- Replace random component names with IMAGE_REGISTRY_ORG env var for more reliable testing

Test validates the Git plugin integration by checking that GitHub repository
URLs are properly displayed and accessible from the component Overview page.

* Address PR review feedback for GitHub link verification test

- Remove networkidle dependency, use domcontentloaded instead
- Simplify locator strategy to single comprehensive selector
- Reduce console.log statements for cleaner output
- Update comment to reflect component assignment vs creation
- Maintain authentication handling through separate auth.setup.ts

Addresses feedback from review by Katka92 in PR #52

* Simplify and clean up GitHub link verification test

- Remove excessive console.log statements
- Simplify locator strategy to single GitHub link selector
- Remove unnecessary try-catch complexity for HTTP status check
- Clean up code structure and remove step-by-step comments

* Update ui.test.ts

* Update ui test

* Refactor git UI verification into plugin architecture

Extract git verification logic from UI tests into dedicated plugin classes

- Add checkViewSourceLink method to git UI interface and implementations
- Extend GitHub and GitLab plugins with link verification functionality
- Simplify UI test by delegating to git plugin methods
- Add shell scripts for running authentication and UI test sequences

* Small updates

* Small updates

* Update UI tests

* Remove files with secrets

* Remove gitlab case
jsmid1 added a commit that referenced this pull request Aug 18, 2025
* [RHTAPUI-85] Adds authentication setup

* Add UI_tests for GitHub link verification on DH (#52)

* Add UI_tests for GitHub link verification on DH

- Add 'Test Git Plugin' test suite for GitHub repository URL verification
- Test verifies GitHub 'View Source' link on component Overview page
- Replace random component names with IMAGE_REGISTRY_ORG env var for more reliable testing

Test validates the Git plugin integration by checking that GitHub repository
URLs are properly displayed and accessible from the component Overview page.

* Address PR review feedback for GitHub link verification test

- Remove networkidle dependency, use domcontentloaded instead
- Simplify locator strategy to single comprehensive selector
- Reduce console.log statements for cleaner output
- Update comment to reflect component assignment vs creation
- Maintain authentication handling through separate auth.setup.ts

Addresses feedback from review by Katka92 in PR #52

* Simplify and clean up GitHub link verification test

- Remove excessive console.log statements
- Simplify locator strategy to single GitHub link selector
- Remove unnecessary try-catch complexity for HTTP status check
- Clean up code structure and remove step-by-step comments

* Update ui.test.ts

* Update ui test

* Refactor git UI verification into plugin architecture

Extract git verification logic from UI tests into dedicated plugin classes

- Add checkViewSourceLink method to git UI interface and implementations
- Extend GitHub and GitLab plugins with link verification functionality
- Simplify UI test by delegating to git plugin methods
- Add shell scripts for running authentication and UI test sequences

* Small updates

* Small updates

* Update UI tests

* Remove files with secrets

* Remove gitlab case

* feat(RHTAPUI-84): don't print secrets when loaded from env vars (#80)

* [RHTAPUI-85] Adds authentication setup

* feat(RHTAPUI-84): blur input field for 2FA token

---------

Co-authored-by: Jan Smid <jsmid@redhat.com>
Co-authored-by: BohdanMar <68649482+BohdanMar@users.noreply.github.com>
jsmid1 pushed a commit to jsmid1/tssc-test that referenced this pull request Aug 18, 2025
* Add UI_tests for GitHub link verification on DH

- Add 'Test Git Plugin' test suite for GitHub repository URL verification
- Test verifies GitHub 'View Source' link on component Overview page
- Replace random component names with IMAGE_REGISTRY_ORG env var for more reliable testing

Test validates the Git plugin integration by checking that GitHub repository
URLs are properly displayed and accessible from the component Overview page.

* Address PR review feedback for GitHub link verification test

- Remove networkidle dependency, use domcontentloaded instead
- Simplify locator strategy to single comprehensive selector
- Reduce console.log statements for cleaner output
- Update comment to reflect component assignment vs creation
- Maintain authentication handling through separate auth.setup.ts

Addresses feedback from review by Katka92 in PR redhat-appstudio#52

* Simplify and clean up GitHub link verification test

- Remove excessive console.log statements
- Simplify locator strategy to single GitHub link selector
- Remove unnecessary try-catch complexity for HTTP status check
- Clean up code structure and remove step-by-step comments

* Update ui.test.ts

* Update ui test

* Refactor git UI verification into plugin architecture

Extract git verification logic from UI tests into dedicated plugin classes

- Add checkViewSourceLink method to git UI interface and implementations
- Extend GitHub and GitLab plugins with link verification functionality
- Simplify UI test by delegating to git plugin methods
- Add shell scripts for running authentication and UI test sequences

* Small updates

* Small updates

* Update UI tests

* Remove files with secrets

* Remove gitlab case
jsmid1 added a commit to jsmid1/tssc-test that referenced this pull request Aug 18, 2025
* [RHTAPUI-85] Adds authentication setup

* Add UI_tests for GitHub link verification on DH (redhat-appstudio#52)

* Add UI_tests for GitHub link verification on DH

- Add 'Test Git Plugin' test suite for GitHub repository URL verification
- Test verifies GitHub 'View Source' link on component Overview page
- Replace random component names with IMAGE_REGISTRY_ORG env var for more reliable testing

Test validates the Git plugin integration by checking that GitHub repository
URLs are properly displayed and accessible from the component Overview page.

* Address PR review feedback for GitHub link verification test

- Remove networkidle dependency, use domcontentloaded instead
- Simplify locator strategy to single comprehensive selector
- Reduce console.log statements for cleaner output
- Update comment to reflect component assignment vs creation
- Maintain authentication handling through separate auth.setup.ts

Addresses feedback from review by Katka92 in PR redhat-appstudio#52

* Simplify and clean up GitHub link verification test

- Remove excessive console.log statements
- Simplify locator strategy to single GitHub link selector
- Remove unnecessary try-catch complexity for HTTP status check
- Clean up code structure and remove step-by-step comments

* Update ui.test.ts

* Update ui test

* Refactor git UI verification into plugin architecture

Extract git verification logic from UI tests into dedicated plugin classes

- Add checkViewSourceLink method to git UI interface and implementations
- Extend GitHub and GitLab plugins with link verification functionality
- Simplify UI test by delegating to git plugin methods
- Add shell scripts for running authentication and UI test sequences

* Small updates

* Small updates

* Update UI tests

* Remove files with secrets

* Remove gitlab case

* feat(RHTAPUI-84): don't print secrets when loaded from env vars (redhat-appstudio#80)

* [RHTAPUI-85] Adds authentication setup

* feat(RHTAPUI-84): blur input field for 2FA token

---------

Co-authored-by: Jan Smid <jsmid@redhat.com>
Co-authored-by: BohdanMar <68649482+BohdanMar@users.noreply.github.com>
jsmid1 pushed a commit to jsmid1/tssc-test that referenced this pull request Aug 19, 2025
* Add UI_tests for GitHub link verification on DH

- Add 'Test Git Plugin' test suite for GitHub repository URL verification
- Test verifies GitHub 'View Source' link on component Overview page
- Replace random component names with IMAGE_REGISTRY_ORG env var for more reliable testing

Test validates the Git plugin integration by checking that GitHub repository
URLs are properly displayed and accessible from the component Overview page.

* Address PR review feedback for GitHub link verification test

- Remove networkidle dependency, use domcontentloaded instead
- Simplify locator strategy to single comprehensive selector
- Reduce console.log statements for cleaner output
- Update comment to reflect component assignment vs creation
- Maintain authentication handling through separate auth.setup.ts

Addresses feedback from review by Katka92 in PR redhat-appstudio#52

* Simplify and clean up GitHub link verification test

- Remove excessive console.log statements
- Simplify locator strategy to single GitHub link selector
- Remove unnecessary try-catch complexity for HTTP status check
- Clean up code structure and remove step-by-step comments

* Update ui.test.ts

* Update ui test

* Refactor git UI verification into plugin architecture

Extract git verification logic from UI tests into dedicated plugin classes

- Add checkViewSourceLink method to git UI interface and implementations
- Extend GitHub and GitLab plugins with link verification functionality
- Simplify UI test by delegating to git plugin methods
- Add shell scripts for running authentication and UI test sequences

* Small updates

* Small updates

* Update UI tests

* Remove files with secrets

* Remove gitlab case
jsmid1 added a commit to jsmid1/tssc-test that referenced this pull request Aug 19, 2025
* [RHTAPUI-85] Adds authentication setup

* Add UI_tests for GitHub link verification on DH (redhat-appstudio#52)

* Add UI_tests for GitHub link verification on DH

- Add 'Test Git Plugin' test suite for GitHub repository URL verification
- Test verifies GitHub 'View Source' link on component Overview page
- Replace random component names with IMAGE_REGISTRY_ORG env var for more reliable testing

Test validates the Git plugin integration by checking that GitHub repository
URLs are properly displayed and accessible from the component Overview page.

* Address PR review feedback for GitHub link verification test

- Remove networkidle dependency, use domcontentloaded instead
- Simplify locator strategy to single comprehensive selector
- Reduce console.log statements for cleaner output
- Update comment to reflect component assignment vs creation
- Maintain authentication handling through separate auth.setup.ts

Addresses feedback from review by Katka92 in PR redhat-appstudio#52

* Simplify and clean up GitHub link verification test

- Remove excessive console.log statements
- Simplify locator strategy to single GitHub link selector
- Remove unnecessary try-catch complexity for HTTP status check
- Clean up code structure and remove step-by-step comments

* Update ui.test.ts

* Update ui test

* Refactor git UI verification into plugin architecture

Extract git verification logic from UI tests into dedicated plugin classes

- Add checkViewSourceLink method to git UI interface and implementations
- Extend GitHub and GitLab plugins with link verification functionality
- Simplify UI test by delegating to git plugin methods
- Add shell scripts for running authentication and UI test sequences

* Small updates

* Small updates

* Update UI tests

* Remove files with secrets

* Remove gitlab case

* feat(RHTAPUI-84): don't print secrets when loaded from env vars (redhat-appstudio#80)

* [RHTAPUI-85] Adds authentication setup

* feat(RHTAPUI-84): blur input field for 2FA token

---------

Co-authored-by: Jan Smid <jsmid@redhat.com>
Co-authored-by: BohdanMar <68649482+BohdanMar@users.noreply.github.com>
Katka92 added a commit that referenced this pull request Aug 20, 2025
* [RHTAPUI-85] Adds authentication setup

* Add UI_tests for GitHub link verification on DH (#52)

* Add UI_tests for GitHub link verification on DH

- Add 'Test Git Plugin' test suite for GitHub repository URL verification
- Test verifies GitHub 'View Source' link on component Overview page
- Replace random component names with IMAGE_REGISTRY_ORG env var for more reliable testing

Test validates the Git plugin integration by checking that GitHub repository
URLs are properly displayed and accessible from the component Overview page.

* Address PR review feedback for GitHub link verification test

- Remove networkidle dependency, use domcontentloaded instead
- Simplify locator strategy to single comprehensive selector
- Reduce console.log statements for cleaner output
- Update comment to reflect component assignment vs creation
- Maintain authentication handling through separate auth.setup.ts

Addresses feedback from review by Katka92 in PR #52

* Simplify and clean up GitHub link verification test

- Remove excessive console.log statements
- Simplify locator strategy to single GitHub link selector
- Remove unnecessary try-catch complexity for HTTP status check
- Clean up code structure and remove step-by-step comments

* Update ui.test.ts

* Update ui test

* Refactor git UI verification into plugin architecture

Extract git verification logic from UI tests into dedicated plugin classes

- Add checkViewSourceLink method to git UI interface and implementations
- Extend GitHub and GitLab plugins with link verification functionality
- Simplify UI test by delegating to git plugin methods
- Add shell scripts for running authentication and UI test sequences

* Small updates

* Small updates

* Update UI tests

* Remove files with secrets

* Remove gitlab case

* feat(RHTAPUI-84): don't print secrets when loaded from env vars (#80)

* RHTAPUI-84: blur input field for 2FA token (#81)

* [RHTAPUI-85] Adds authentication setup

* Add UI_tests for GitHub link verification on DH (#52)

* Add UI_tests for GitHub link verification on DH

- Add 'Test Git Plugin' test suite for GitHub repository URL verification
- Test verifies GitHub 'View Source' link on component Overview page
- Replace random component names with IMAGE_REGISTRY_ORG env var for more reliable testing

Test validates the Git plugin integration by checking that GitHub repository
URLs are properly displayed and accessible from the component Overview page.

* Address PR review feedback for GitHub link verification test

- Remove networkidle dependency, use domcontentloaded instead
- Simplify locator strategy to single comprehensive selector
- Reduce console.log statements for cleaner output
- Update comment to reflect component assignment vs creation
- Maintain authentication handling through separate auth.setup.ts

Addresses feedback from review by Katka92 in PR #52

* Simplify and clean up GitHub link verification test

- Remove excessive console.log statements
- Simplify locator strategy to single GitHub link selector
- Remove unnecessary try-catch complexity for HTTP status check
- Clean up code structure and remove step-by-step comments

* Update ui.test.ts

* Update ui test

* Refactor git UI verification into plugin architecture

Extract git verification logic from UI tests into dedicated plugin classes

- Add checkViewSourceLink method to git UI interface and implementations
- Extend GitHub and GitLab plugins with link verification functionality
- Simplify UI test by delegating to git plugin methods
- Add shell scripts for running authentication and UI test sequences

* Small updates

* Small updates

* Update UI tests

* Remove files with secrets

* Remove gitlab case

* feat(RHTAPUI-84): don't print secrets when loaded from env vars (#80)

* [RHTAPUI-85] Adds authentication setup

* feat(RHTAPUI-84): blur input field for 2FA token

---------

Co-authored-by: Jan Smid <jsmid@redhat.com>
Co-authored-by: BohdanMar <68649482+BohdanMar@users.noreply.github.com>

* add authorization button click when needed (#87)

* RHTAPUI-84: describe security concerns in a README (#86)

* RHTAPUI-84: describe security concerns in a readme

* fix duplicated method

* [pass_for_undefined] Skips Git tests for not yet implemented providers (#103)

* ui(test): add CI provider verification on CI tab; keep only ui.test.ts change (#90)

* [RHTAPUI-90] Implements UI tests for Docs tab (#88)

* [ui-timeout-increase] Increases timeout for UI tests (#115)

* [ui_tests] Fixes based on review

---------

Co-authored-by: BohdanMar <68649482+BohdanMar@users.noreply.github.com>
Co-authored-by: Katerina Foniok <kkanova@redhat.com>
jsmid1 pushed a commit to jsmid1/tssc-test that referenced this pull request Aug 20, 2025
* Add UI_tests for GitHub link verification on DH

- Add 'Test Git Plugin' test suite for GitHub repository URL verification
- Test verifies GitHub 'View Source' link on component Overview page
- Replace random component names with IMAGE_REGISTRY_ORG env var for more reliable testing

Test validates the Git plugin integration by checking that GitHub repository
URLs are properly displayed and accessible from the component Overview page.

* Address PR review feedback for GitHub link verification test

- Remove networkidle dependency, use domcontentloaded instead
- Simplify locator strategy to single comprehensive selector
- Reduce console.log statements for cleaner output
- Update comment to reflect component assignment vs creation
- Maintain authentication handling through separate auth.setup.ts

Addresses feedback from review by Katka92 in PR redhat-appstudio#52

* Simplify and clean up GitHub link verification test

- Remove excessive console.log statements
- Simplify locator strategy to single GitHub link selector
- Remove unnecessary try-catch complexity for HTTP status check
- Clean up code structure and remove step-by-step comments

* Update ui.test.ts

* Update ui test

* Refactor git UI verification into plugin architecture

Extract git verification logic from UI tests into dedicated plugin classes

- Add checkViewSourceLink method to git UI interface and implementations
- Extend GitHub and GitLab plugins with link verification functionality
- Simplify UI test by delegating to git plugin methods
- Add shell scripts for running authentication and UI test sequences

* Small updates

* Small updates

* Update UI tests

* Remove files with secrets

* Remove gitlab case
jsmid1 added a commit to jsmid1/tssc-test that referenced this pull request Aug 20, 2025
* [RHTAPUI-85] Adds authentication setup

* Add UI_tests for GitHub link verification on DH (redhat-appstudio#52)

* Add UI_tests for GitHub link verification on DH

- Add 'Test Git Plugin' test suite for GitHub repository URL verification
- Test verifies GitHub 'View Source' link on component Overview page
- Replace random component names with IMAGE_REGISTRY_ORG env var for more reliable testing

Test validates the Git plugin integration by checking that GitHub repository
URLs are properly displayed and accessible from the component Overview page.

* Address PR review feedback for GitHub link verification test

- Remove networkidle dependency, use domcontentloaded instead
- Simplify locator strategy to single comprehensive selector
- Reduce console.log statements for cleaner output
- Update comment to reflect component assignment vs creation
- Maintain authentication handling through separate auth.setup.ts

Addresses feedback from review by Katka92 in PR redhat-appstudio#52

* Simplify and clean up GitHub link verification test

- Remove excessive console.log statements
- Simplify locator strategy to single GitHub link selector
- Remove unnecessary try-catch complexity for HTTP status check
- Clean up code structure and remove step-by-step comments

* Update ui.test.ts

* Update ui test

* Refactor git UI verification into plugin architecture

Extract git verification logic from UI tests into dedicated plugin classes

- Add checkViewSourceLink method to git UI interface and implementations
- Extend GitHub and GitLab plugins with link verification functionality
- Simplify UI test by delegating to git plugin methods
- Add shell scripts for running authentication and UI test sequences

* Small updates

* Small updates

* Update UI tests

* Remove files with secrets

* Remove gitlab case

* feat(RHTAPUI-84): don't print secrets when loaded from env vars (redhat-appstudio#80)

* [RHTAPUI-85] Adds authentication setup

* feat(RHTAPUI-84): blur input field for 2FA token

---------

Co-authored-by: Jan Smid <jsmid@redhat.com>
Co-authored-by: BohdanMar <68649482+BohdanMar@users.noreply.github.com>
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