Skip to content

Commit

Permalink
Add tests for Astarte group managment
Browse files Browse the repository at this point in the history
- Add tests for creating and listing groups.

- Add tests for adding, listing, and removing devices from groups.

- Updated resources.py to include mygroup variable for group name.

Signed-off-by: Jusuf <jusuf.avdic@secomind.com>
  • Loading branch information
Jusuf95 committed Nov 18, 2024
1 parent 8114129 commit 3361558
Show file tree
Hide file tree
Showing 2 changed files with 136 additions and 0 deletions.
134 changes: 134 additions & 0 deletions tests/app_engine/device/test_app_engine_groups.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,134 @@
# SPDX-FileCopyrightText: 2024 SECO Mind Srl
#
# SPDX-License-Identifier: Apache-2.0


import subprocess

from resources import mygroup

def test_app_engine_group_create(astarte_env_vars):
astarte_url = astarte_env_vars["astarte_url"]
realm = astarte_env_vars["realm"]
jwt = astarte_env_vars["jwt"]
device_test_1 = astarte_env_vars["device_test_1"]

arg_list = [
"astartectl",
"appengine",
"groups",
"create",
mygroup,
device_test_1,
"-t",
jwt,
"-u",
astarte_url,
"-r",
realm,
]

sample_data_result = subprocess.run(arg_list, capture_output=True, text=True)
assert sample_data_result.stdout.replace("\n", "") == "ok"

def test_app_engine_group_list(astarte_env_vars):
astarte_url = astarte_env_vars["astarte_url"]
realm = astarte_env_vars["realm"]
jwt = astarte_env_vars["jwt"]

arg_list = [
"astartectl",
"appengine",
"groups",
"list",
"-t",
jwt,
"-u",
astarte_url,
"-r",
realm,
]

sample_data_result = subprocess.run(arg_list, capture_output=True, text=True)
sample_data_result.stdout = _replace_brackets_from_string(sample_data_result.stdout)
assert sample_data_result.stdout in mygroup

def test_app_engine_group_devices_list(astarte_env_vars):
astarte_url = astarte_env_vars["astarte_url"]
realm = astarte_env_vars["realm"]
jwt = astarte_env_vars["jwt"]
device_test_1 = astarte_env_vars["device_test_1"]

arg_list = [
"astartectl",
"appengine",
"groups",
"devices",
"list",
mygroup,
"-t",
jwt,
"-u",
astarte_url,
"-r",
realm,
]

sample_data_result = subprocess.run(arg_list, capture_output=True, text=True)
sample_data_result.stdout = _replace_brackets_from_string(sample_data_result.stdout)
assert sample_data_result.stdout in device_test_1

def test_app_engine_group_add_device(astarte_env_vars):
astarte_url = astarte_env_vars["astarte_url"]
realm = astarte_env_vars["realm"]
jwt = astarte_env_vars["jwt"]
device_test_2 = astarte_env_vars["device_test_2"]

arg_list = [
"astartectl",
"appengine",
"groups",
"devices",
"add",
mygroup,
device_test_2,
"-t",
jwt,
"-u",
astarte_url,
"-r",
realm,
]

sample_data_result = subprocess.run(arg_list, capture_output=True, text=True)
print(sample_data_result.stdout)
assert sample_data_result.stdout.replace("\n", "") == "ok"

def test_app_engine_group_remove_device(astarte_env_vars):
astarte_url = astarte_env_vars["astarte_url"]
realm = astarte_env_vars["realm"]
jwt = astarte_env_vars["jwt"]
device_test_2 = astarte_env_vars["device_test_2"]

arg_list = [
"astartectl",
"appengine",
"groups",
"devices",
"remove",
mygroup,
device_test_2,
"-t",
jwt,
"-u",
astarte_url,
"-r",
realm,
]

sample_data_result = subprocess.run(arg_list, capture_output=True, text=True)
print(sample_data_result.stdout)
assert sample_data_result.stdout.replace("\n", "") == "ok"

def _replace_brackets_from_string(input_string):
return input_string.replace("\n", "").replace("[", "").replace("]", "")
2 changes: 2 additions & 0 deletions tests/resources.py
Original file line number Diff line number Diff line change
Expand Up @@ -235,3 +235,5 @@
"test_attribute3": "test_attribute3=attribute3",
"test_attribute4": "test_attribute4=attribute4",
}

mygroup = "test_group"

0 comments on commit 3361558

Please sign in to comment.