-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(templates): E2E Cookiecutter - Cover all REST authentication case…
…s + one GraphQL case (#1428)
- Loading branch information
1 parent
14d7aa1
commit eb2b908
Showing
9 changed files
with
95 additions
and
8 deletions.
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
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"cookiecutter": { | ||
"source_name": "AutomaticTestTap", | ||
"admin_name": "Automatic Tester", | ||
"tap_id": "tap-rest-basic_auth", | ||
"library_name": "tap_rest_basic_auth", | ||
"variant": "None (Skip)", | ||
"stream_type": "REST", | ||
"auth_method": "Basic Auth", | ||
"include_cicd_sample_template": "None (Skip)", | ||
"_template": "../tap-template/", | ||
"_output_dir": "." | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"cookiecutter": { | ||
"source_name": "AutomaticTestTap", | ||
"admin_name": "Automatic Tester", | ||
"tap_id": "tap-rest-bearer_token", | ||
"library_name": "tap_rest_bearer_token", | ||
"variant": "None (Skip)", | ||
"stream_type": "REST", | ||
"auth_method": "Bearer Token", | ||
"include_cicd_sample_template": "None (Skip)", | ||
"_template": "../tap-template/", | ||
"_output_dir": "." | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"cookiecutter": { | ||
"source_name": "AutomaticTestTap", | ||
"admin_name": "Automatic Tester", | ||
"tap_id": "tap-rest-custom", | ||
"library_name": "tap_rest_custom", | ||
"variant": "None (Skip)", | ||
"stream_type": "REST", | ||
"auth_method": "Custom or N/A", | ||
"include_cicd_sample_template": "None (Skip)", | ||
"_template": "../tap-template/", | ||
"_output_dir": "." | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"cookiecutter": { | ||
"source_name": "AutomaticTestTap", | ||
"admin_name": "Automatic Tester", | ||
"tap_id": "tap-rest-jwt", | ||
"library_name": "tap_rest_jwt", | ||
"variant": "None (Skip)", | ||
"stream_type": "REST", | ||
"auth_method": "JWT", | ||
"include_cicd_sample_template": "None (Skip)", | ||
"_template": "../tap-template/", | ||
"_output_dir": "." | ||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{ | ||
"cookiecutter": { | ||
"source_name": "AutomaticTestTap", | ||
"admin_name": "Automatic Tester", | ||
"tap_id": "tap-rest-oauth2", | ||
"library_name": "tap_rest_oauth2", | ||
"variant": "None (Skip)", | ||
"stream_type": "REST", | ||
"auth_method": "OAuth2", | ||
"include_cicd_sample_template": "None (Skip)", | ||
"_template": "../tap-template/", | ||
"_output_dir": "." | ||
} | ||
} |
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
eb2b908
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This has fixed the breaking cookiecutter tap-template for REST option with custom authentication: faf95bd#commitcomment-100709368
Asante