-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ff81da1
commit 9aa0e64
Showing
1 changed file
with
48 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
""" | ||
Test views file. | ||
""" | ||
from django.test import TestCase | ||
from unittest.mock import patch, MagicMock | ||
from eox_hooks.actions import post_to_webhook_url | ||
|
||
|
||
class TutorIntegrationTestCase(TestCase): | ||
""" | ||
POC code to run tests that cover the integration with openedx | ||
""" | ||
|
||
def test_runs_code(self): | ||
""" | ||
Just to make sure our test infrastructure is behaving | ||
""" | ||
assert True | ||
|
||
# pylint: disable=import-outside-toplevel,unused-import | ||
def test_current_settings_code_imports(self): | ||
""" | ||
Running this imports means that our backends import the right signature | ||
""" | ||
import eox_hooks.edxapp_wrapper.backends.course_modes_j_v1 # isort:skip | ||
import eox_hooks.edxapp_wrapper.backends.course_modes_l_v1_test # isort:skip | ||
import eox_hooks.edxapp_wrapper.backends.course_modes_l_v1 # isort:skip | ||
import eox_hooks.edxapp_wrapper.backends.courses_j_v1_test # isort:skip | ||
import eox_hooks.edxapp_wrapper.backends.courses_j_v1 # isort:skip | ||
import eox_hooks.edxapp_wrapper.backends.courses_l_v1 # isort:skip | ||
import eox_hooks.edxapp_wrapper.backends.courses_p_v1 # isort:skip | ||
import eox_hooks.edxapp_wrapper.backends.enrollments_l_v1 # isort:skip | ||
import eox_hooks.edxapp_wrapper.backends.enrollments_l_v1_test # isort:skip | ||
import eox_hooks.edxapp_wrapper.backends.enrollments_j_v1 # isort:skip | ||
import eox_hooks.edxapp_wrapper.backends.models_j_v1 # isort:skip | ||
import eox_hooks.edxapp_wrapper.backends.models_l_v1 # isort:skip | ||
import eox_hooks.edxapp_wrapper.backends.models_l_v1_test # isort:skip | ||
|
||
class TestPostToWebhook(TestCase): | ||
@patch('eox_hooks.actions.requests.post') # Mock de la función requests.post | ||
def test_post_to_webhook_url(self, mock_post): | ||
mock_trigger_event = "trigger_event" | ||
|
||
mock_post.return_value = MagicMock(status_code=200) # Simula una respuesta exitosa | ||
|
||
result = post_to_webhook_url(trigger_event=mock_trigger_event) | ||
|
||
self.assertTrue(result) |