You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
zabbix/ui/tests/api_json/testAuditlogUserGroups.php

102 lines
3.1 KiB

1 year ago
<?php
/*
** Zabbix
** Copyright (C) 2001-2023 Zabbix SIA
**
** This program is free software; you can redistribute it and/or modify
** it under the terms of the GNU General Public License as published by
** the Free Software Foundation; either version 2 of the License, or
** (at your option) any later version.
**
** This program is distributed in the hope that it will be useful,
** but WITHOUT ANY WARRANTY; without even the implied warranty of
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
** GNU General Public License for more details.
**
** You should have received a copy of the GNU General Public License
** along with this program; if not, write to the Free Software
** Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
**/
require_once dirname(__FILE__).'/common/testAuditlogCommon.php';
/**
* @backup usrgrp
*/
class testAuditlogUserGroups extends testAuditlogCommon {
/**
* Existing User ID.
*/
private const USERID = 2;
/**
* Existing User group ID.
*/
private const USRGRPID = 12;
public function testAuditlogUserGroups_Create() {
$create = $this->call('usergroup.create', [
[
'name' => 'Audit user groups',
'hostgroup_rights' => [
'permission' => 0,
'id' => 2
],
'users' => [
'userid' => self::USERID
]
]
]);
$resourceid = $create['result']['usrgrpids'][0];
$rights = CDBHelper::getRow('SELECT rightid FROM rights WHERE groupid='.zbx_dbstr($resourceid));
$id = CDBHelper::getRow('SELECT id FROM users_groups WHERE usrgrpid='.zbx_dbstr($resourceid));
$this->assertNotFalse($id, 'User group record expected');
$created = json_encode([
'usergroup.name' => ['add', 'Audit user groups'],
'usergroup.hostgroup_rights['.$rights['rightid'].']' => ['add'],
'usergroup.hostgroup_rights['.$rights['rightid'].'].id' => ['add', '2'],
'usergroup.hostgroup_rights['.$rights['rightid'].'].rightid' => ['add', $rights['rightid']],
'usergroup.usrgrpid' => ['add', $resourceid]
]);
$this->getAuditDetails('details', $this->add_actionid, $created, $resourceid);
$updated = json_encode([
'user.usrgrps['.$id['id'].']' => ['add'],
'user.usrgrps['.$id['id'].'].usrgrpid' => ['add', $resourceid],
'user.usrgrps['.$id['id'].'].id' => ['add', $id['id']]
]);
$this->getAuditDetails('details', $this->update_actionid, $updated, self::USERID);
}
public function testAuditlogUserGroups_Update() {
$this->call('usergroup.update', [
[
'usrgrpid' => self::USRGRPID,
'users_status' => 1,
'debug_mode' => 1,
'name' => 'Updated user group name'
]
]);
$updated = json_encode([
'usergroup.users_status' => ['update', '1', '0'],
'usergroup.debug_mode' => ['update', '1', '0'],
'usergroup.name' => ['update', 'Updated user group name', 'No access to the frontend']
]);
$this->getAuditDetails('details', $this->update_actionid, $updated, self::USRGRPID);
}
public function testAuditlogUserGroups_Delete() {
$this->call('usergroup.delete', [self::USRGRPID]);
$this->getAuditDetails('resourcename', $this->delete_actionid, 'Updated user group name', self::USRGRPID);
}
}