#!/usr/share/ucs-test/runner bash
# shellcheck shell=bash
## desc: "Create and modify AD-Group and verify attributes in write-mode"
## exposure: dangerous
## packages:
## - univention-s4-connector


# shellcheck source=../../lib/base.sh
. "$TESTLIBPATH/base.sh" || exit 137
# shellcheck source=../../lib/udm.sh
. "$TESTLIBPATH/udm.sh" || exit 137
# shellcheck source=../../lib/random.sh
. "$TESTLIBPATH/random.sh" || exit 137


. "s4connector.sh" || exit 137
test -n "$connector_s4_ldap_host" || exit 137
connector_running_on_this_host || exit 137

UDM_groups_group_name="$(random_chars)"
UDM_groups_group_description="$(random_chars)"
AD_DN="CN=$UDM_groups_group_name,CN=groups,$(ad_get_base)"

SYNCMODE="$(ad_get_sync_mode)"

ad_set_sync_mode "write"

ad_group_create "$UDM_groups_group_name" || fail_test 110

UDM_groups_group_description="$(random_chars)"

ad_set_attribute "$AD_DN" "description" "$UDM_groups_group_description" || fail_test 110

ad_wait_for_synchronization; fail_bool 0 110

ad_verify_attribute "$AD_DN" "description" "$UDM_groups_group_description"; fail_bool 0 110

udm_exists "groups/group"; fail_bool 1 110

ad_delete "$AD_DN" || fail_test 110
ad_wait_for_synchronization; fail_bool 0 110

udm_exists "groups/group"; fail_bool 1 110
ad_exists "$AD_DN"; fail_bool 1 110

ad_set_sync_mode "$SYNCMODE"

exit "$RETVAL"
