2007-09-27 04:27:26 +04:00
/*
Unix SMB / CIFS implementation .
Test suite for libnet calls .
Copyright ( C ) Rafal Szczesniak 2007
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 3 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 , see < http : //www.gnu.org/licenses/>.
*/
# include "includes.h"
# include "torture/rpc/rpc.h"
# include "torture/libnet/grouptest.h"
# include "libnet/libnet.h"
# include "librpc/gen_ndr/ndr_samr_c.h"
# include "param/param.h"
2007-09-27 19:51:07 +04:00
# include "torture/libnet/utils.h"
2007-09-27 04:27:26 +04:00
2007-10-07 02:28:14 +04:00
static bool test_groupadd ( struct dcerpc_pipe * p , TALLOC_CTX * mem_ctx ,
2007-09-27 04:27:26 +04:00
struct policy_handle * domain_handle ,
const char * name )
{
NTSTATUS status ;
2007-10-07 02:28:14 +04:00
bool ret = true ;
2007-09-27 04:27:26 +04:00
struct libnet_rpc_groupadd group ;
group . in . domain_handle = * domain_handle ;
group . in . groupname = name ;
printf ( " Testing libnet_rpc_groupadd \n " ) ;
status = libnet_rpc_groupadd ( p , mem_ctx , & group ) ;
if ( ! NT_STATUS_IS_OK ( status ) ) {
printf ( " Failed to call sync libnet_rpc_groupadd - %s \n " , nt_errstr ( status ) ) ;
2007-10-07 02:28:14 +04:00
return false ;
2007-09-27 04:27:26 +04:00
}
return ret ;
}
2007-10-07 02:28:14 +04:00
bool torture_groupadd ( struct torture_context * torture )
2007-09-27 04:27:26 +04:00
{
NTSTATUS status ;
struct dcerpc_pipe * p ;
struct policy_handle h ;
struct lsa_String domain_name ;
2007-09-27 19:51:07 +04:00
struct dom_sid2 sid ;
2007-09-27 04:27:26 +04:00
const char * name = TEST_GROUPNAME ;
TALLOC_CTX * mem_ctx ;
2007-10-07 02:28:14 +04:00
bool ret = true ;
2007-09-27 04:27:26 +04:00
mem_ctx = talloc_init ( " test_groupadd " ) ;
status = torture_rpc_connection ( torture ,
& p ,
& ndr_table_samr ) ;
if ( ! NT_STATUS_IS_OK ( status ) ) {
2007-10-07 02:28:14 +04:00
return false ;
2007-09-27 04:27:26 +04:00
}
2007-12-03 02:28:22 +03:00
domain_name . string = lp_workgroup ( torture - > lp_ctx ) ;
2007-09-27 19:51:07 +04:00
if ( ! test_opendomain ( p , mem_ctx , & h , & domain_name , & sid ) ) {
2007-10-07 02:28:14 +04:00
ret = false ;
2007-09-27 04:27:26 +04:00
goto done ;
}
if ( ! test_groupadd ( p , mem_ctx , & h , name ) ) {
2007-10-07 02:28:14 +04:00
ret = false ;
2007-09-27 04:27:26 +04:00
goto done ;
}
2007-09-27 19:51:07 +04:00
if ( ! test_group_cleanup ( p , mem_ctx , & h , name ) ) {
2007-10-07 02:28:14 +04:00
ret = false ;
2007-09-27 04:27:26 +04:00
goto done ;
}
done :
talloc_free ( mem_ctx ) ;
return ret ;
}