-
Notifications
You must be signed in to change notification settings - Fork 82
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
ODS-1932 - Verify user can edit a S3 data connection #846
Merged
jgarciao
merged 3 commits into
red-hat-data-services:master
from
diegolovison:edit_data_connection
Jul 6, 2023
Merged
Changes from 1 commit
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -507,6 +507,30 @@ Verify User Can Delete A Data Science Project | |
Wait Until Data Science Project Is Deleted project_title=${PRJ_TITLE} | ||
# check workbenches and resources get deleted too | ||
|
||
Verify User Can Edit A S3 Data Connection | ||
[Tags] Sanity Tier1 ODS-1932 | ||
[Documentation] Verifies users can add a Data connection to AWS S3 | ||
Open Data Science Projects Home Page | ||
Create Data Science Project title=${PRJ_TITLE} description=${PRJ_DESCRIPTION} | ||
... resource_name=${PRJ_RESOURCE_NAME} | ||
Open Data Science Projects Home Page | ||
Project Should Be Listed project_title=${PRJ_TITLE} | ||
Open Data Science Project Details Page project_title=${PRJ_TITLE} | ||
Create S3 Data Connection project_title=${PRJ_TITLE} dc_name=${DC_S3_NAME} | ||
... aws_access_key=${DC_S3_AWS_SECRET_ACCESS_KEY} | ||
... aws_secret_access=${DC_S3_AWS_SECRET_ACCESS_KEY} | ||
... aws_s3_endpoint=${DC_S3_ENDPOINT} aws_region=${DC_S3_REGION} | ||
Edit S3 Data Connection project_title=${PRJ_TITLE} dc_name=${DC_S3_NAME} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. can you edit the name too? |
||
... aws_access_key=${S3.AWS_ACCESS_KEY_ID}-test aws_secret_access=${S3.AWS_SECRET_ACCESS_KEY}-test | ||
... aws_bucket_name=ods-ci-ds-pipelines-test aws_region=${DC_S3_REGION} | ||
... aws_s3_endpoint=${DC_S3_ENDPOINT} | ||
${s3_name} ${s3_key} ${s3_secret} ${s3_endpoint} ${s3_region} ${s3_bucket} Get Data Connection Form Values ${DC_S3_NAME} | ||
Should Be Equal ${s3_name} ${DC_S3_NAME} | ||
Should Be Equal ${s3_key} ${S3.AWS_ACCESS_KEY_ID}-test | ||
Should Be Equal ${s3_secret} ${S3.AWS_SECRET_ACCESS_KEY}-test | ||
Should Be Equal ${s3_endpoint} ${DC_S3_ENDPOINT} | ||
Should Be Equal ${s3_region} ${DC_S3_REGION} | ||
Should Be Equal ${s3_bucket} ods-ci-ds-pipelines-test | ||
|
||
*** Keywords *** | ||
Project Suite Setup | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Check warning
Code scanning / Robocop
Keyword '{{ keyword_name }}' has too many arguments ({{ arguments_count }}/{{ max_allowed_count }})