Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test/case: Add authentication/user test #79

Merged
merged 1 commit into from
Jul 4, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
72 changes: 72 additions & 0 deletions test/case/ietf_system/add_delete_user.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
#!/usr/bin/env python3

import infamy
import copy
import crypt
import random
import string
import re

def generate_restrictred_credential():
credential = "".join(random.choices(string.ascii_lowercase, k=64))

while not re.match("^(?![0-9])[\w]+$", credential):
credential = "".join(random.choices(string.ascii_lowercase, k=64))

return credential

with infamy.Test() as test:
with test.step("Initialize"):
env = infamy.Env(infamy.std_topology("1x1"))
target = env.attach("target", "mgmt")

with test.step("Add new user"):
username = generate_restrictred_credential()
password = generate_restrictred_credential()
salt = crypt.mksalt(crypt.METHOD_SHA256)
hashed_password = crypt.crypt(password, salt)
print(f"username: {username}")
print(f"password: {password}")
print(f"hashed_password: {hashed_password}")

target.put_config_dict("ietf-system", {
"system": {
"authentication": {
"user": [
{
"name": username,
"password": hashed_password,
}
]
}
}
})

with test.step(f"Verify user ({username} / {hashed_password})"):
running = target.get_config_dict("/ietf-system:system")
users = running["system"]["authentication"]["user"]
user_found = False
for user in users:
if user["name"] == username:
user_found = True
assert user["password"] == hashed_password
break
assert user_found, f"User {username} not found"

with test.step(f"Delete user ({username} / {hashed_password})"):
running = target.get_config_dict("/ietf-system:system")
new = copy.deepcopy(running)
for userx in new["system"]["authentication"]["user"]:
if userx["name"] == username:
del new["system"]["authentication"]["user"][username]
break
target.put_diff_dicts("ietf-system", running, new)

with test.step(f"Verify erasure of user ({username} / {hashed_password})"):
running = target.get_config_dict("/ietf-system:system")
users = running["system"]["authentication"]["user"]
for user in users:
assert user["name"] != username, f"User {username} not deleted"

test.succeed()

1 change: 1 addition & 0 deletions test/case/ietf_system/all.yaml
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
---
- case: hostname.py
- case: add_delete_user.py