2010-03-23 18:04:30 +03:00
/*
2007-09-27 04:27:26 +04:00
Unix SMB / CIFS implementation .
Test suite for libnet calls .
Copyright ( C ) Rafal Szczesniak 2007
2010-03-23 18:04:30 +03:00
2007-09-27 04:27:26 +04:00
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 .
2010-03-23 18:04:30 +03:00
2007-09-27 04:27:26 +04:00
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 .
2010-03-23 18:04:30 +03:00
2007-09-27 04:27:26 +04:00
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"
2010-04-14 00:06:51 +04:00
# include "torture/rpc/torture_rpc.h"
2007-09-27 04:27:26 +04:00
# include "torture/libnet/grouptest.h"
# include "libnet/libnet.h"
# include "librpc/gen_ndr/ndr_samr_c.h"
# include "param/param.h"
2010-05-28 06:14:47 +04:00
# include "torture/libnet/proto.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 ;
2010-03-23 18:04:30 +03:00
2007-09-27 04:27:26 +04:00
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
}
2010-03-23 18:04:30 +03:00
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 ;
2010-03-15 11:37:42 +03:00
struct dcerpc_binding_handle * b ;
2007-09-27 04:27:26 +04:00
mem_ctx = talloc_init ( " test_groupadd " ) ;
2010-03-23 18:04:30 +03:00
status = torture_rpc_connection ( torture ,
2007-09-27 04:27:26 +04:00
& p ,
& ndr_table_samr ) ;
2010-03-23 18:04:30 +03:00
2008-02-29 02:46:44 +03:00
torture_assert_ntstatus_ok ( torture , status , " RPC connection " ) ;
2010-03-15 11:37:42 +03:00
b = p - > binding_handle ;
2007-09-27 04:27:26 +04:00
2010-07-16 08:32:42 +04:00
domain_name . string = lpcfg_workgroup ( torture - > lp_ctx ) ;
2010-05-28 06:06:55 +04:00
if ( ! test_domain_open ( torture , b , & domain_name , mem_ctx , & h , & 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 ;
}
2010-03-23 17:31:27 +03:00
if ( ! test_group_cleanup ( torture , b , mem_ctx , & h , name ) ) {
2007-10-07 02:28:14 +04:00
ret = false ;
2007-09-27 04:27:26 +04:00
goto done ;
}
2010-03-23 18:04:30 +03:00
2007-09-27 04:27:26 +04:00
done :
talloc_free ( mem_ctx ) ;
return ret ;
}