UT: fix test data to contain credential type in capitals
This commit is contained in:
parent
04b217cde5
commit
9d23c3dd62
|
@ -27,7 +27,7 @@ fake_special_username = "$m0nk3y.user"
|
||||||
cred_telem_special_usernames = deepcopy(CREDENTIAL_TELEM_TEMPLATE)
|
cred_telem_special_usernames = deepcopy(CREDENTIAL_TELEM_TEMPLATE)
|
||||||
cred_telem_special_usernames["data"] = [
|
cred_telem_special_usernames["data"] = [
|
||||||
{
|
{
|
||||||
"identities": [{"username": fake_special_username, "credential_type": "username"}],
|
"identities": [{"username": fake_special_username, "credential_type": "USERNAME"}],
|
||||||
"secrets": [],
|
"secrets": [],
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
|
|
@ -17,7 +17,7 @@ fake_monkey_guid = "272405690278083"
|
||||||
fake_ip_address = "192.168.56.1"
|
fake_ip_address = "192.168.56.1"
|
||||||
|
|
||||||
fake_private_key = "-----BEGIN OPENSSH PRIVATE KEY-----\nb3BlbnNzaC1rZXktdjEAAAAACmFlczI1N\n"
|
fake_private_key = "-----BEGIN OPENSSH PRIVATE KEY-----\nb3BlbnNzaC1rZXktdjEAAAAACmFlczI1N\n"
|
||||||
fake_partial_secret = {"private_key": fake_private_key, "credential_type": "ssh_keypair"}
|
fake_partial_secret = {"private_key": fake_private_key, "credential_type": "SSH_KEYPAIR"}
|
||||||
|
|
||||||
fake_username = "ubuntu"
|
fake_username = "ubuntu"
|
||||||
fake_public_key = (
|
fake_public_key = (
|
||||||
|
@ -27,9 +27,9 @@ fake_public_key = (
|
||||||
fake_secret_full = {
|
fake_secret_full = {
|
||||||
"private_key": fake_private_key,
|
"private_key": fake_private_key,
|
||||||
"public_key": fake_public_key,
|
"public_key": fake_public_key,
|
||||||
"credential_type": "ssh_keypair",
|
"credential_type": "SSH_KEYPAIR",
|
||||||
}
|
}
|
||||||
fake_identity = {"username": fake_username, "credential_type": "username"}
|
fake_identity = {"username": fake_username, "credential_type": "USERNAME"}
|
||||||
|
|
||||||
ssh_telem = deepcopy(CREDENTIAL_TELEM_TEMPLATE)
|
ssh_telem = deepcopy(CREDENTIAL_TELEM_TEMPLATE)
|
||||||
ssh_telem["data"] = [{"identities": [fake_identity], "secrets": [fake_secret_full]}]
|
ssh_telem["data"] = [{"identities": [fake_identity], "secrets": [fake_secret_full]}]
|
||||||
|
|
Loading…
Reference in New Issue