This pull request adds a unit test for the webhook in the api_test.py file. It also ensures that the webhook is associated with GitLab by checking the X-GitLab-Event header in the test.
Summary
Modified api_test.py:
Removed the handle_gitlab_webhook and webhook_redirect imports.
Added a new test function test_gitlab_webhook to test the GitLab webhook.
Updated the test data to include the user, project, and changes fields.
Removed the test_webhook_redirect and test_handle_gitlab_webhook functions.
Updated the assertions in the test_gitlab_webhook function.
Modified api.py:
Removed the handle_gitlab_webhook and webhook_redirect imports.
Modified api_test.py:
Removed the handle_gitlab_webhook and webhook_redirect imports.
Added a new test function test_gitlab_webhook to test the GitLab webhook.
Updated the test data to include the user, project, and changes fields.
Removed the test_webhook_redirect and test_handle_gitlab_webhook functions.
Updated the assertions in the test_gitlab_webhook function.
Fixes #9.
π Latest improvements to Sweep:
We just released a dashboard to track Sweep's progress on your issue in real-time, showing every stage of the process β from search to planning and coding.
Sweep uses OpenAI's latest Assistant API to plan code changes and modify code! This is 3x faster and significantly more reliable as it allows Sweep to edit code and validate the changes in tight iterations, the same way as a human would.
[ ] Apply: We should use loguru for error logging. If the log is inside an exception, use logger.exception to add tracebacks, where logger is imported from loguru. Use f-strings for string formatting in logger calls.
[ ] Apply: There should be no debug log or print statements in production code.
[ ] Apply: All functions should have parameters and output annotated with type hints. Use list, tuple and dict instead of typing.List, typing.Tuple and typing.dict.
[ ] Apply: Leftover TODOs in the code should be handled.
[ ] Apply: All new business logic should have corresponding unit tests in the same directory. For example, sweepai/api_test.py tests sweepai/api.py. Use unittest and unittest.mock as required.
[ ] Apply: Any clearly inefficient or repeated code should be optimized or refactored.
[ ] Apply: Remove any comments before code that are obvious. For example # this prints hello world; print('hello world').
PR Feedback (click)
Description
This pull request adds a unit test for the webhook in the
api_test.py
file. It also ensures that the webhook is associated with GitLab by checking theX-GitLab-Event
header in the test.Summary
Modified
api_test.py
:handle_gitlab_webhook
andwebhook_redirect
imports.test_gitlab_webhook
to test the GitLab webhook.user
,project
, andchanges
fields.test_webhook_redirect
andtest_handle_gitlab_webhook
functions.test_gitlab_webhook
function.Modified
api.py
:handle_gitlab_webhook
andwebhook_redirect
imports.Modified
api_test.py
:handle_gitlab_webhook
andwebhook_redirect
imports.test_gitlab_webhook
to test the GitLab webhook.user
,project
, andchanges
fields.test_webhook_redirect
andtest_handle_gitlab_webhook
functions.test_gitlab_webhook
function.Fixes #9.
π Latest improvements to Sweep:
π‘ To get Sweep to edit this pull request, you can: