-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add tests for special character handling
- Loading branch information
Showing
2 changed files
with
12 additions
and
2 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 |
---|---|---|
|
@@ -2,12 +2,13 @@ | |
|
||
import unittest | ||
|
||
from frigate.util import clean_camera_user_pass | ||
from frigate.util import clean_camera_user_pass, escape_special_characters | ||
|
||
|
||
class TestUserPassCleanup(unittest.TestCase): | ||
def setUp(self) -> None: | ||
self.rtsp_with_pass = "rtsp://user:[email protected]:554/live" | ||
self.rtsp_with_special_pass = "rtsp://user:password#$@@192.168.0.2:554/live" | ||
self.rtsp_no_pass = "rtsp://192.168.0.3:554/live" | ||
|
||
def test_cleanup(self): | ||
|
@@ -20,3 +21,13 @@ def test_no_cleanup(self): | |
"""Test that nothing changes when no user / pass are defined.""" | ||
clean = clean_camera_user_pass(self.rtsp_no_pass) | ||
assert clean == self.rtsp_no_pass | ||
|
||
def test_special_char_password(self): | ||
"""Test that special characters in pw are escaped, but not others.""" | ||
escaped = escape_special_characters(self.rtsp_with_special_pass) | ||
assert escaped == "rtsp://user:password%23%24%[email protected]:554/live" | ||
|
||
def test_no_special_char_password(self): | ||
"""Test that no change is made to path with no special characters.""" | ||
escaped = escape_special_characters(self.rtsp_with_pass) | ||
assert escaped == self.rtsp_with_pass |
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