-
-
Notifications
You must be signed in to change notification settings - Fork 84
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
NLTK proxy - add port if not present
- Loading branch information
1 parent
09a5c2d
commit 3104d28
Showing
2 changed files
with
72 additions
and
9 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
import os | ||
import unittest | ||
from orangecontrib.text.misc.nltk_data_download import _get_proxy_address | ||
|
||
|
||
class TestNLTKDownload(unittest.TestCase): | ||
def setUp(self) -> None: | ||
self.previous_https = os.environ.get("https_proxy") | ||
os.environ.pop("https_proxy", None) | ||
|
||
def tearDown(self) -> None: | ||
os.environ.pop("https_proxy", None) | ||
if self.previous_https is not None: | ||
os.environ["https_proxy"] = self.previous_https | ||
|
||
def test_get_proxy_address(self): | ||
self.assertIsNone(_get_proxy_address()) | ||
|
||
os.environ["https_proxy"] = "https://test.com" | ||
self.assertEqual("https://test.com:443", _get_proxy_address()) | ||
|
||
os.environ["https_proxy"] = "https://test.com:12" | ||
self.assertEqual("https://test.com:12", _get_proxy_address()) | ||
|
||
os.environ["https_proxy"] = "https://test.com/test" | ||
self.assertEqual("https://test.com:443/test", _get_proxy_address()) | ||
|
||
os.environ["https_proxy"] = "https://test.com/test?a=2" | ||
self.assertEqual("https://test.com:443/test?a=2", _get_proxy_address()) | ||
|
||
os.environ["https_proxy"] = "test.com/test?a=2" | ||
self.assertEqual("http://test.com:80/test?a=2", _get_proxy_address()) | ||
|
||
|
||
if __name__ == "__main__": | ||
unittest.main() |