forked from paramiko/paramiko
-
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.
Add an SSHConfig dict to provide type conversion helpers
- Loading branch information
Showing
2 changed files
with
71 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
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,45 @@ | ||
# This file is part of Paramiko and subject to the license in /LICENSE in this | ||
# repository | ||
|
||
import pytest | ||
from paramiko import config | ||
|
||
|
||
def test_SSHConfigDict_construct_empty(): | ||
assert not config.SSHConfigDict() | ||
|
||
|
||
def test_SSHConfigDict_construct_from_list(): | ||
assert config.SSHConfigDict([(1, 2)])[1] == 2 | ||
|
||
|
||
def test_SSHConfigDict_construct_from_dict(): | ||
assert config.SSHConfigDict({1: 2})[1] == 2 | ||
|
||
|
||
@pytest.mark.parametrize("true_ish", ("yes", "YES", "Yes", True)) | ||
def test_SSHConfigDict_as_bool_true_ish(true_ish): | ||
assert config.SSHConfigDict({"key": true_ish}).as_bool("key") is True | ||
|
||
|
||
@pytest.mark.parametrize("false_ish", ("no", "NO", "No", False)) | ||
def test_SSHConfigDict_as_bool(false_ish): | ||
assert config.SSHConfigDict({"key": false_ish}).as_bool("key") is False | ||
|
||
|
||
@pytest.mark.parametrize("int_val", ("42", 42)) | ||
def test_SSHConfigDict_as_int(int_val): | ||
assert config.SSHConfigDict({"key": int_val}).as_int("key") == 42 | ||
|
||
|
||
@pytest.mark.parametrize("non_int", ("not an int", None, object())) | ||
def test_SSHConfigDict_as_int_failures(non_int): | ||
conf = config.SSHConfigDict({"key": non_int}) | ||
|
||
try: | ||
int(non_int) | ||
except Exception as e: | ||
exception_type = type(e) | ||
|
||
with pytest.raises(exception_type): | ||
conf.as_int("key") |