Skip to content

Commit 8c0a61c

Browse files
committed
[py] get auth header from client config
Signed-off-by: Viet Nguyen Duc <[email protected]>
1 parent 5600cc7 commit 8c0a61c

File tree

3 files changed

+78
-8
lines changed

3 files changed

+78
-8
lines changed

py/selenium/webdriver/remote/client_config.py

+59-8
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
# KIND, either express or implied. See the License for the
1515
# specific language governing permissions and limitations
1616
# under the License.
17+
import base64
1718
import os
1819
from urllib import parse
1920

@@ -26,11 +27,19 @@ def __init__(
2627
self,
2728
remote_server_addr: str,
2829
keep_alive: bool = True,
29-
proxy=None,
30+
proxy: Proxy = Proxy(raw={"proxyType": ProxyType.SYSTEM}),
31+
username: str = None,
32+
password: str = None,
33+
auth_type: str = "Basic",
34+
token: str = None,
3035
) -> None:
3136
self.remote_server_addr = remote_server_addr
3237
self.keep_alive = keep_alive
3338
self.proxy = proxy
39+
self.username = username
40+
self.password = password
41+
self.auth_type = auth_type
42+
self.token = token
3443

3544
@property
3645
def remote_server_addr(self) -> str:
@@ -57,8 +66,6 @@ def keep_alive(self, value: bool) -> None:
5766
@property
5867
def proxy(self) -> Proxy:
5968
""":Returns: The proxy used for communicating to the driver/server."""
60-
61-
self._proxy = self._proxy or Proxy(raw={"proxyType": ProxyType.SYSTEM})
6269
return self._proxy
6370

6471
@proxy.setter
@@ -71,17 +78,49 @@ def proxy(self, proxy: Proxy) -> None:
7178
"""
7279
self._proxy = proxy
7380

74-
def get_proxy_url(self):
81+
@property
82+
def username(self) -> str:
83+
return self._username
84+
85+
@username.setter
86+
def username(self, value: str) -> None:
87+
self._username = value
88+
89+
@property
90+
def password(self) -> str:
91+
return self._password
92+
93+
@password.setter
94+
def password(self, value: str) -> None:
95+
self._password = value
96+
97+
@property
98+
def auth_type(self) -> str:
99+
return self._auth_type
100+
101+
@auth_type.setter
102+
def auth_type(self, value: str) -> None:
103+
self._auth_type = value
104+
105+
@property
106+
def token(self) -> str:
107+
return self._token
108+
109+
@token.setter
110+
def token(self, value: str) -> None:
111+
self._token = value
112+
113+
def get_proxy_url(self) -> str:
75114
if self.proxy.proxy_type == ProxyType.DIRECT:
76115
return None
77116
elif self.proxy.proxy_type == ProxyType.SYSTEM:
78117
_no_proxy = os.environ.get("no_proxy", os.environ.get("NO_PROXY"))
79118
if _no_proxy:
80-
for npu in _no_proxy.split(","):
81-
npu = npu.strip()
82-
if npu == "*":
119+
for entry in _no_proxy.split(","):
120+
entry = entry.strip()
121+
if entry == "*":
83122
return None
84-
n_url = parse.urlparse(npu)
123+
n_url = parse.urlparse(entry)
85124
remote_add = parse.urlparse(self.remote_server_addr)
86125
if n_url.netloc:
87126
if remote_add.netloc == n_url.netloc:
@@ -102,3 +141,15 @@ def get_proxy_url(self):
102141
return None
103142
else:
104143
return None
144+
145+
def get_auth_header(self):
146+
auth_type = self.auth_type.lower()
147+
if auth_type == "basic" and self.username and self.password:
148+
credentials = f"{self.username}:{self.password}"
149+
encoded_credentials = base64.b64encode(credentials.encode()).decode()
150+
return {"Authorization": f"Basic {encoded_credentials}"}
151+
elif auth_type == "bearer" and self.token:
152+
return {"Authorization": f"Bearer {self.token}"}
153+
elif auth_type == "oauth" and self.token:
154+
return {"Authorization": f"OAuth {self.token}"}
155+
return None

py/selenium/webdriver/remote/remote_connection.py

+5
Original file line numberDiff line numberDiff line change
@@ -323,6 +323,11 @@ def _request(self, method, url, body=None):
323323
"""
324324
parsed_url = parse.urlparse(url)
325325
headers = self.get_remote_connection_headers(parsed_url, self._client_config.keep_alive)
326+
auth_header = self._client_config.get_auth_header()
327+
328+
if auth_header:
329+
headers.update(auth_header)
330+
326331
if body and method not in ("POST", "PUT"):
327332
body = None
328333

py/test/unit/selenium/webdriver/remote/remote_connection_tests.py

+14
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
import urllib3
2222

2323
from selenium import __version__
24+
from selenium.webdriver.remote.remote_connection import ClientConfig
2425
from selenium.webdriver.remote.remote_connection import RemoteConnection
2526

2627

@@ -54,6 +55,19 @@ def test_get_proxy_url_http(mock_proxy_settings):
5455
assert proxy_url == proxy
5556

5657

58+
def test_get_auth_header_if_client_config_pass():
59+
custom_config = ClientConfig(
60+
remote_server_addr="http://remote",
61+
keep_alive=True,
62+
username="user",
63+
password="pass",
64+
auth_type="Basic"
65+
)
66+
remote_connection = RemoteConnection(custom_config.remote_server_addr, client_config=custom_config)
67+
headers = remote_connection._client_config.get_auth_header()
68+
assert headers.get("Authorization") == "Basic dXNlcjpwYXNz"
69+
70+
5771
def test_get_proxy_url_https(mock_proxy_settings):
5872
proxy = "http://https_proxy.com:8080"
5973
remote_connection = RemoteConnection("https://remote", keep_alive=False)

0 commit comments

Comments
 (0)