-
-
Notifications
You must be signed in to change notification settings - Fork 153
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(api): adds v4 usage to api tracking
- Loading branch information
1 parent
b429ae0
commit 3d57587
Showing
2 changed files
with
52 additions
and
1 deletion.
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 |
---|---|---|
@@ -0,0 +1,48 @@ | ||
from unittest.mock import MagicMock, patch | ||
|
||
from cl.api.utils import invert_user_logs | ||
from cl.tests.cases import SimpleTestCase | ||
|
||
USER_1_ID = 1 | ||
USER_2_ID = 2 | ||
|
||
|
||
class TestApiUsage(SimpleTestCase): | ||
def setUp(self): | ||
self.start_date = "2023-01-01" | ||
self.end_date = "2023-01-01" | ||
self.expected_dates = ["2023-01-01"] | ||
self.v3_results = [(USER_1_ID, 10), (USER_2_ID, 20)] | ||
self.v4_results = [(USER_1_ID, 15), (USER_2_ID, 25)] | ||
|
||
@patch("cl.api.utils.get_redis_interface") | ||
def test_invert_user_logs_shows_v4_logs(self, mock_get_redis_interface): | ||
mock_redis = MagicMock() | ||
mock_pipeline = MagicMock() | ||
mock_get_redis_interface.return_value = mock_redis | ||
mock_redis.pipeline.return_value = mock_pipeline | ||
|
||
mock_pipeline.execute.return_value = [ | ||
self.v3_results, | ||
self.v4_results, | ||
] | ||
|
||
results = invert_user_logs( | ||
self.start_date, self.end_date, add_usernames=False | ||
) | ||
|
||
for date in self.expected_dates: | ||
mock_pipeline.zrange.assert_any_call( | ||
f"api:v3.user.d:{date}.counts", 0, -1, withscores=True | ||
) | ||
mock_pipeline.zrange.assert_any_call( | ||
f"api:v4.user.d:{date}.counts", 0, -1, withscores=True | ||
) | ||
|
||
self.assertIn(USER_1_ID, results) | ||
self.assertIn(USER_2_ID, results) | ||
|
||
self.assertEqual(results[USER_1_ID]["2023-01-01"], 25) | ||
self.assertEqual(results[USER_1_ID]["total"], 25) | ||
self.assertEqual(results[USER_2_ID]["2023-01-01"], 45) | ||
self.assertEqual(results[USER_2_ID]["total"], 45) |