Skip to content

Commit

Permalink
test_: set proxy creds (#6211)
Browse files Browse the repository at this point in the history
  • Loading branch information
antdanchenko authored Dec 17, 2024
1 parent 2172abe commit 6a5623b
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
5 changes: 5 additions & 0 deletions _assets/ci/Jenkinsfile.tests-rpc
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,11 @@ pipeline {
credentialsId: 'codecov-repository-upload-token',
variable: 'CODECOV_TOKEN'
),
usernamePassword(
credentialsId: "api-proxy-devel",
usernameVariable: 'STATUS_BUILD_PROXY_USER',
passwordVariable: 'STATUS_BUILD_PROXY_PASSWORD'
),
]) {
nix.shell('make test-functional', pure: false)
}
Expand Down
19 changes: 19 additions & 0 deletions tests-functional/clients/status_backend.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,22 @@ def init_status_backend(self, data_dir=USER_DIR):
}
return self.api_valid_request(method, data)

def _set_proxy_credentials(self, data):
if not "STATUS_BUILD_PROXY_USER" in os.environ:
return data

user = os.environ["STATUS_BUILD_PROXY_USER"]
password = os.environ["STATUS_BUILD_PROXY_PASSWORD"]

data["StatusProxyMarketUser"] = user
data["StatusProxyMarketPassword"] = password
data["StatusProxyBlockchainUser"] = user
data["StatusProxyBlockchainPassword"] = password

data["StatusProxyEnabled"] = True
data["StatusProxyStageName"] = "test"
return data

def create_account_and_login(
self,
data_dir=USER_DIR,
Expand All @@ -146,6 +162,7 @@ def create_account_and_login(
"logEnabled": True,
"logLevel": "DEBUG",
}
data = self._set_proxy_credentials(data)
return self.api_valid_request(method, data)

def restore_account_and_login(
Expand Down Expand Up @@ -183,6 +200,7 @@ def restore_account_and_login(
}
],
}
data = self._set_proxy_credentials(data)
return self.api_valid_request(method, data)

def login(self, keyUid, user=user_1):
Expand All @@ -192,6 +210,7 @@ def login(self, keyUid, user=user_1):
"keyUid": keyUid,
"kdfIterations": 256000,
}
data = self._set_proxy_credentials(data)
return self.api_valid_request(method, data)

def logout(self, user=user_1):
Expand Down

0 comments on commit 6a5623b

Please sign in to comment.