2003-11-03 10:26:30 +03:00
/*
Unix SMB / CIFS implementation .
test suite for echo rpc operations
Copyright ( C ) Andrew Tridgell 2003
2005-01-11 19:53:02 +03:00
Copyright ( C ) Stefan ( metze ) Metzmacher 2005
2005-02-19 02:43:40 +03:00
Copyright ( C ) Jelmer Vernooij 2005
2003-11-03 10:26:30 +03: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
2007-07-10 06:07:03 +04:00
the Free Software Foundation ; either version 3 of the License , or
2003-11-03 10:26:30 +03:00
( 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
2007-07-10 06:07:03 +04:00
along with this program . If not , see < http : //www.gnu.org/licenses/>.
2003-11-03 10:26:30 +03:00
*/
# include "includes.h"
2006-01-03 16:41:17 +03:00
# include "torture/torture.h"
2006-03-14 18:02:05 +03:00
# include "torture/rpc/rpc.h"
2005-02-03 14:56:03 +03:00
# include "lib/events/events.h"
2006-03-15 02:35:30 +03:00
# include "librpc/gen_ndr/ndr_echo_c.h"
2003-11-03 10:26:30 +03:00
2003-11-03 11:37:48 +03:00
/*
test the AddOne interface
*/
2006-10-16 17:06:41 +04:00
# define TEST_ADDONE(tctx, value) do { \
2005-08-01 04:58:33 +04:00
n = i = value ; \
r . in . in_data = n ; \
r . out . out_data = & n ; \
2006-10-16 17:06:41 +04:00
status = dcerpc_echo_AddOne ( p , tctx , & r ) ; \
torture_assert_ntstatus_ok ( tctx , status , talloc_asprintf ( tctx , " AddOne(%d) failed " , i ) ) ; \
torture_assert ( tctx , n = = i + 1 , talloc_asprintf ( tctx , " %d + 1 != %u (should be %u) \n " , i , n , i + 1 ) ) ; \
torture_comment ( tctx , " %d + 1 = %u \n " , i , n ) ; \
2005-08-01 04:58:33 +04:00
} while ( 0 )
2006-10-16 17:06:41 +04:00
static bool test_addone ( struct torture_context * tctx ,
struct dcerpc_pipe * p )
2003-11-03 11:37:48 +03:00
{
2005-08-01 04:58:33 +04:00
uint32_t i ;
2003-11-03 11:37:48 +03:00
NTSTATUS status ;
2005-08-01 04:58:33 +04:00
uint32_t n ;
struct echo_AddOne r ;
2003-11-03 11:37:48 +03:00
for ( i = 0 ; i < 10 ; i + + ) {
2006-10-16 17:06:41 +04:00
TEST_ADDONE ( tctx , i ) ;
2003-11-03 11:37:48 +03:00
}
2006-10-16 17:06:41 +04:00
TEST_ADDONE ( tctx , 0x7FFFFFFE ) ;
TEST_ADDONE ( tctx , 0xFFFFFFFE ) ;
TEST_ADDONE ( tctx , 0xFFFFFFFF ) ;
TEST_ADDONE ( tctx , random ( ) & 0xFFFFFFFF ) ;
return true ;
2003-11-03 11:37:48 +03:00
}
2003-11-03 12:18:38 +03:00
/*
test the EchoData interface
*/
2006-10-16 17:06:41 +04:00
static bool test_echodata ( struct torture_context * tctx ,
struct dcerpc_pipe * p )
2003-11-03 12:18:38 +03:00
{
int i ;
NTSTATUS status ;
2004-11-25 21:01:40 +03:00
uint8_t * data_in , * data_out ;
2006-01-10 06:26:39 +03:00
int len ;
2003-11-09 10:24:06 +03:00
struct echo_EchoData r ;
2003-11-03 12:18:38 +03:00
2006-10-16 17:06:41 +04:00
if ( torture_setting_bool ( tctx , " quick " , false ) & &
2006-01-10 06:26:39 +03:00
( p - > conn - > flags & DCERPC_DEBUG_VALIDATE_BOTH ) ) {
len = 1 + ( random ( ) % 500 ) ;
} else {
len = 1 + ( random ( ) % 5000 ) ;
}
2006-10-16 17:06:41 +04:00
data_in = talloc_size ( tctx , len ) ;
data_out = talloc_size ( tctx , len ) ;
2003-11-03 12:18:38 +03:00
for ( i = 0 ; i < len ; i + + ) {
2003-11-09 10:24:06 +03:00
data_in [ i ] = i ;
2003-11-03 12:18:38 +03:00
}
2003-11-09 10:24:06 +03:00
r . in . len = len ;
2003-11-13 12:26:53 +03:00
r . in . in_data = data_in ;
2003-11-03 12:18:38 +03:00
2006-10-16 17:06:41 +04:00
status = dcerpc_echo_EchoData ( p , tctx , & r ) ;
torture_assert_ntstatus_ok ( tctx , status , talloc_asprintf ( tctx ,
" EchoData(%d) failed \n " , len ) ) ;
2003-11-03 12:18:38 +03:00
2003-11-13 12:26:53 +03:00
data_out = r . out . out_data ;
for ( i = 0 ; i < len ; i + + ) {
if ( data_in [ i ] ! = data_out [ i ] ) {
2006-10-16 17:06:41 +04:00
torture_comment ( tctx , " Bad data returned for len %d at offset %d \n " ,
2003-11-13 12:26:53 +03:00
len , i ) ;
2006-10-16 17:06:41 +04:00
torture_comment ( tctx , " in: \n " ) ;
2003-11-13 13:29:58 +03:00
dump_data ( 0 , data_in + i , MIN ( len - i , 16 ) ) ;
2006-10-16 17:06:41 +04:00
torture_comment ( tctx , " out: \n " ) ;
2003-11-13 13:29:58 +03:00
dump_data ( 0 , data_out + i , MIN ( len - 1 , 16 ) ) ;
2006-10-16 17:06:41 +04:00
return false ;
2003-11-13 12:26:53 +03:00
}
2003-11-03 12:18:38 +03:00
}
2006-10-16 17:06:41 +04:00
return true ;
2003-11-03 12:18:38 +03:00
}
2003-11-03 13:01:20 +03:00
/*
test the SourceData interface
*/
2006-10-16 17:06:41 +04:00
static bool test_sourcedata ( struct torture_context * tctx ,
struct dcerpc_pipe * p )
2003-11-03 13:01:20 +03:00
{
int i ;
NTSTATUS status ;
2006-01-10 06:18:33 +03:00
int len ;
2003-11-09 10:24:06 +03:00
struct echo_SourceData r ;
2003-11-03 13:01:20 +03:00
2006-10-16 17:06:41 +04:00
if ( torture_setting_bool ( tctx , " quick " , false ) & &
2006-01-10 06:18:33 +03:00
( p - > conn - > flags & DCERPC_DEBUG_VALIDATE_BOTH ) ) {
2006-01-10 06:26:39 +03:00
len = 100 + ( random ( ) % 500 ) ;
2006-01-10 06:18:33 +03:00
} else {
len = 200000 + ( random ( ) % 5000 ) ;
}
2003-11-09 10:24:06 +03:00
r . in . len = len ;
2006-10-16 17:06:41 +04:00
status = dcerpc_echo_SourceData ( p , tctx , & r ) ;
torture_assert_ntstatus_ok ( tctx , status , talloc_asprintf ( tctx ,
" SourceData(%d) failed " , len ) ) ;
2003-11-03 13:01:20 +03:00
for ( i = 0 ; i < len ; i + + ) {
2005-06-02 17:21:11 +04:00
uint8_t * v = ( uint8_t * ) r . out . data ;
2006-10-16 17:06:41 +04:00
torture_assert ( tctx , v [ i ] = = ( i & 0xFF ) ,
talloc_asprintf ( tctx ,
" bad data 0x%x at %d \n " , ( uint8_t ) r . out . data [ i ] , i ) ) ;
2003-11-03 13:01:20 +03:00
}
2006-10-16 17:06:41 +04:00
return true ;
2003-11-03 13:01:20 +03:00
}
/*
test the SinkData interface
*/
2006-10-16 17:06:41 +04:00
static bool test_sinkdata ( struct torture_context * tctx ,
struct dcerpc_pipe * p )
2003-11-03 13:01:20 +03:00
{
int i ;
NTSTATUS status ;
2004-11-25 21:01:40 +03:00
uint8_t * data_in ;
2006-01-10 06:18:33 +03:00
int len ;
2003-11-09 10:24:06 +03:00
struct echo_SinkData r ;
2003-11-03 13:01:20 +03:00
2006-10-16 17:06:41 +04:00
if ( torture_setting_bool ( tctx , " quick " , false ) & &
2006-01-10 06:18:33 +03:00
( p - > conn - > flags & DCERPC_DEBUG_VALIDATE_BOTH ) ) {
len = 100 + ( random ( ) % 5000 ) ;
} else {
len = 200000 + ( random ( ) % 5000 ) ;
}
2006-10-16 17:06:41 +04:00
data_in = talloc_size ( tctx , len ) ;
2003-11-03 13:01:20 +03:00
for ( i = 0 ; i < len ; i + + ) {
data_in [ i ] = i + 1 ;
}
2003-11-09 10:24:06 +03:00
r . in . len = len ;
r . in . data = data_in ;
2006-10-16 17:06:41 +04:00
status = dcerpc_echo_SinkData ( p , tctx , & r ) ;
torture_assert_ntstatus_ok ( tctx , status , talloc_asprintf ( tctx ,
" SinkData(%d) failed " ,
len ) ) ;
2003-11-04 12:10:31 +03:00
2006-10-16 17:06:41 +04:00
torture_comment ( tctx , " sunk %d bytes \n " , len ) ;
return true ;
2003-11-03 13:01:20 +03:00
}
2003-11-13 12:26:53 +03:00
/*
test the testcall interface
*/
2006-10-16 17:06:41 +04:00
static bool test_testcall ( struct torture_context * tctx ,
struct dcerpc_pipe * p )
2003-11-13 12:26:53 +03:00
{
NTSTATUS status ;
2003-12-14 16:22:12 +03:00
struct echo_TestCall r ;
2006-10-16 17:06:41 +04:00
const char * s = NULL ;
2003-11-17 12:34:19 +03:00
2003-11-19 15:03:11 +03:00
r . in . s1 = " input string " ;
2006-09-16 00:07:55 +04:00
r . out . s2 = & s ;
2003-11-13 12:26:53 +03:00
2006-10-16 17:06:41 +04:00
status = dcerpc_echo_TestCall ( p , tctx , & r ) ;
torture_assert_ntstatus_ok ( tctx , status , " TestCall failed " ) ;
2003-11-13 12:26:53 +03:00
2006-10-16 17:06:41 +04:00
torture_assert_str_equal ( tctx , s , " input string " , " Didn't receive back same string " ) ;
2006-09-16 00:07:55 +04:00
2006-10-16 17:06:41 +04:00
return true ;
2003-11-13 12:26:53 +03:00
}
2003-11-19 15:03:11 +03:00
/*
test the testcall interface
*/
2006-10-16 17:06:41 +04:00
static bool test_testcall2 ( struct torture_context * tctx ,
struct dcerpc_pipe * p )
2003-11-19 15:03:11 +03:00
{
NTSTATUS status ;
2003-12-14 16:22:12 +03:00
struct echo_TestCall2 r ;
2003-11-19 15:03:11 +03:00
int i ;
for ( i = 1 ; i < = 7 ; i + + ) {
r . in . level = i ;
2006-10-16 17:06:41 +04:00
r . out . info = talloc ( tctx , union echo_Info ) ;
2003-11-19 15:03:11 +03:00
2006-10-16 17:06:41 +04:00
torture_comment ( tctx , " Testing TestCall2 level %d \n " , i ) ;
status = dcerpc_echo_TestCall2 ( p , tctx , & r ) ;
torture_assert_ntstatus_ok ( tctx , status , " TestCall2 failed " ) ;
2003-11-19 15:03:11 +03:00
}
2006-10-16 17:06:41 +04:00
return true ;
2003-11-19 15:03:11 +03:00
}
2004-08-30 11:36:16 +04:00
/*
test the TestSleep interface
*/
2006-10-16 17:06:41 +04:00
static bool test_sleep ( struct torture_context * tctx ,
struct dcerpc_pipe * p )
2004-08-30 11:36:16 +04:00
{
int i ;
NTSTATUS status ;
2005-01-11 19:53:02 +03:00
# define ASYNC_COUNT 3
2004-08-30 11:36:16 +04:00
struct rpc_request * req [ ASYNC_COUNT ] ;
struct echo_TestSleep r [ ASYNC_COUNT ] ;
2005-01-11 19:53:02 +03:00
BOOL done [ ASYNC_COUNT ] ;
struct timeval snd [ ASYNC_COUNT ] ;
struct timeval rcv [ ASYNC_COUNT ] ;
struct timeval diff [ ASYNC_COUNT ] ;
2004-08-30 11:36:16 +04:00
struct event_context * ctx ;
int total_done = 0 ;
2006-10-16 17:06:41 +04:00
if ( torture_setting_bool ( tctx , " quick " , false ) ) {
torture_skip ( tctx , " TestSleep disabled - use \" torture:quick=no \" to enable \n " ) ;
2005-06-08 21:55:58 +04:00
}
2006-10-16 17:06:41 +04:00
torture_comment ( tctx , " Testing TestSleep - use \" torture:quick=no \" to disable \n " ) ;
2004-08-30 11:36:16 +04:00
for ( i = 0 ; i < ASYNC_COUNT ; i + + ) {
2005-01-11 19:53:02 +03:00
done [ i ] = False ;
snd [ i ] = timeval_current ( ) ;
rcv [ i ] = timeval_zero ( ) ;
2004-08-30 11:36:16 +04:00
r [ i ] . in . seconds = ASYNC_COUNT - i ;
2006-10-16 17:06:41 +04:00
req [ i ] = dcerpc_echo_TestSleep_send ( p , tctx , & r [ i ] ) ;
torture_assert ( tctx , req [ i ] , " Failed to send async sleep request \n " ) ;
2004-08-30 11:36:16 +04:00
}
ctx = dcerpc_event_context ( p ) ;
while ( total_done < ASYNC_COUNT ) {
2006-10-16 17:06:41 +04:00
torture_assert ( tctx , event_loop_once ( ctx ) = = 0 ,
" Event context loop failed " ) ;
2004-08-30 11:36:16 +04:00
for ( i = 0 ; i < ASYNC_COUNT ; i + + ) {
2005-01-11 19:53:02 +03:00
if ( done [ i ] = = False & & req [ i ] - > state = = RPC_REQUEST_DONE ) {
2006-10-17 10:07:54 +04:00
int rounded_tdiff ;
2004-08-30 11:36:16 +04:00
total_done + + ;
2005-01-11 19:53:02 +03:00
done [ i ] = True ;
rcv [ i ] = timeval_current ( ) ;
2005-08-01 04:34:39 +04:00
diff [ i ] = timeval_until ( & snd [ i ] , & rcv [ i ] ) ;
2006-10-17 10:07:54 +04:00
rounded_tdiff = ( int ) ( 0.5 + diff [ i ] . tv_sec + ( 1.0e-6 * diff [ i ] . tv_usec ) ) ;
2005-01-11 19:53:02 +03:00
status = dcerpc_ndr_request_recv ( req [ i ] ) ;
2006-10-17 10:07:54 +04:00
printf ( " rounded_tdiff=%d \n " , rounded_tdiff ) ;
2006-10-16 17:06:41 +04:00
torture_assert_ntstatus_ok ( tctx , status ,
talloc_asprintf ( tctx , " TestSleep(%d) failed " , i ) ) ;
torture_assert ( tctx , r [ i ] . out . result = = r [ i ] . in . seconds ,
talloc_asprintf ( tctx , " Failed - Asked to sleep for %u seconds (server replied with %u seconds and the reply takes only %u seconds) " ,
r [ i ] . out . result , r [ i ] . in . seconds , ( uint_t ) diff [ i ] . tv_sec ) ) ;
2006-10-17 10:07:54 +04:00
torture_assert ( tctx , r [ i ] . out . result < = rounded_tdiff ,
2006-10-16 17:06:41 +04:00
talloc_asprintf ( tctx , " Failed - Slept for %u seconds (but reply takes only %u.%06u seconds) " ,
r [ i ] . out . result , ( uint_t ) diff [ i ] . tv_sec , ( uint_t ) diff [ i ] . tv_usec ) ) ;
2006-10-17 10:07:54 +04:00
if ( r [ i ] . out . result + 1 = = rounded_tdiff ) {
2006-10-16 17:06:41 +04:00
torture_comment ( tctx , " Slept for %u seconds (but reply takes %u.%06u seconds - busy server?) \n " ,
r [ i ] . out . result , ( uint_t ) diff [ i ] . tv_sec , ( uint_t ) diff [ i ] . tv_usec ) ;
2006-10-17 10:07:54 +04:00
} else if ( r [ i ] . out . result = = rounded_tdiff ) {
2006-10-16 17:06:41 +04:00
torture_comment ( tctx , " Slept for %u seconds (reply takes %u.%06u seconds - ok) \n " ,
r [ i ] . out . result , ( uint_t ) diff [ i ] . tv_sec , ( uint_t ) diff [ i ] . tv_usec ) ;
2004-08-30 11:36:16 +04:00
} else {
2006-10-16 17:06:41 +04:00
torture_comment ( tctx , " (Failed) - Not async - Slept for %u seconds (but reply takes %u.%06u seconds) " ,
r [ i ] . out . result , ( uint_t ) diff [ i ] . tv_sec , ( uint_t ) diff [ i ] . tv_usec ) ;
/* TODO: let the test fail here, when we support async rpc on ncacn_np */
2004-08-30 11:36:16 +04:00
}
}
}
}
2007-08-26 23:58:40 +04:00
printf ( " \n " ) ;
2006-10-16 17:06:41 +04:00
return true ;
2004-08-30 11:36:16 +04:00
}
2005-01-05 02:27:12 +03:00
/*
test enum handling
*/
2006-10-16 17:06:41 +04:00
static bool test_enum ( struct torture_context * tctx ,
struct dcerpc_pipe * p )
2005-01-05 02:27:12 +03:00
{
NTSTATUS status ;
struct echo_TestEnum r ;
enum echo_Enum1 v = ECHO_ENUM1 ;
struct echo_Enum2 e2 ;
union echo_Enum3 e3 ;
r . in . foo1 = & v ;
r . in . foo2 = & e2 ;
r . in . foo3 = & e3 ;
r . out . foo1 = & v ;
r . out . foo2 = & e2 ;
r . out . foo3 = & e3 ;
e2 . e1 = 76 ;
e2 . e2 = ECHO_ENUM1_32 ;
e3 . e1 = ECHO_ENUM2 ;
2006-10-16 17:06:41 +04:00
status = dcerpc_echo_TestEnum ( p , tctx , & r ) ;
torture_assert_ntstatus_ok ( tctx , status , " TestEnum failed " ) ;
return true ;
2005-01-05 02:27:12 +03:00
}
2005-02-19 02:30:26 +03:00
/*
test surrounding conformant array handling
*/
2006-10-16 17:06:41 +04:00
static bool test_surrounding ( struct torture_context * tctx ,
struct dcerpc_pipe * p )
2005-02-19 02:30:26 +03:00
{
NTSTATUS status ;
struct echo_TestSurrounding r ;
ZERO_STRUCT ( r ) ;
2006-10-16 17:06:41 +04:00
r . in . data = talloc ( tctx , struct echo_Surrounding ) ;
2005-02-19 02:30:26 +03:00
r . in . data - > x = 20 ;
2006-10-16 17:06:41 +04:00
r . in . data - > surrounding = talloc_zero_array ( tctx , uint16_t , r . in . data - > x ) ;
2005-02-19 02:30:26 +03:00
2006-10-16 17:06:41 +04:00
r . out . data = talloc ( tctx , struct echo_Surrounding ) ;
2005-02-19 02:30:26 +03:00
2006-10-16 17:06:41 +04:00
status = dcerpc_echo_TestSurrounding ( p , tctx , & r ) ;
torture_assert_ntstatus_ok ( tctx , status , " TestSurrounding failed " ) ;
2005-02-19 02:30:26 +03:00
2006-10-16 17:06:41 +04:00
torture_assert ( tctx , r . out . data - > x = = 2 * r . in . data - > x ,
" TestSurrounding did not make the array twice as large " ) ;
2005-02-19 02:30:26 +03:00
2006-10-16 17:06:41 +04:00
return true ;
2005-02-19 02:30:26 +03:00
}
2005-02-20 05:57:38 +03:00
/*
test multiple levels of pointers
*/
2006-10-16 17:06:41 +04:00
static bool test_doublepointer ( struct torture_context * tctx ,
struct dcerpc_pipe * p )
2005-02-20 05:57:38 +03:00
{
NTSTATUS status ;
struct echo_TestDoublePointer r ;
uint16_t value = 12 ;
uint16_t * pvalue = & value ;
uint16_t * * ppvalue = & pvalue ;
ZERO_STRUCT ( r ) ;
r . in . data = & ppvalue ;
2006-10-16 17:06:41 +04:00
status = dcerpc_echo_TestDoublePointer ( p , tctx , & r ) ;
torture_assert_ntstatus_ok ( tctx , status , " TestDoublePointer failed " ) ;
2005-02-20 05:57:38 +03:00
2006-10-16 17:06:41 +04:00
torture_assert_int_equal ( tctx , value , r . out . result ,
" TestDoublePointer did not return original value " ) ;
return true ;
2005-02-20 05:57:38 +03:00
}
2005-06-17 03:28:24 +04:00
/*
test request timeouts
*/
2006-10-16 17:06:41 +04:00
static bool test_timeout ( struct torture_context * tctx ,
struct dcerpc_pipe * p )
2005-06-17 03:28:24 +04:00
{
NTSTATUS status ;
struct rpc_request * req ;
struct echo_TestSleep r ;
int timeout_saved = p - > request_timeout ;
2006-10-16 17:06:41 +04:00
if ( torture_setting_bool ( tctx , " quick " , false ) ) {
torture_skip ( tctx , " timeout testing disabled - use \" torture:quick=no \" to enable \n " ) ;
2005-06-17 03:28:24 +04:00
}
2006-10-16 17:06:41 +04:00
torture_comment ( tctx , " testing request timeouts \n " ) ;
2005-06-17 03:28:24 +04:00
r . in . seconds = 2 ;
p - > request_timeout = 1 ;
2007-04-23 16:31:12 +04:00
req = dcerpc_echo_TestSleep_send ( p , tctx , & r ) ;
if ( ! req ) {
torture_comment ( tctx , " Failed to send async sleep request \n " ) ;
goto failed ;
}
req - > ignore_timeout = True ;
2005-06-17 03:28:24 +04:00
status = dcerpc_ndr_request_recv ( req ) ;
2006-10-16 17:06:41 +04:00
torture_assert_ntstatus_equal ( tctx , status , NT_STATUS_IO_TIMEOUT ,
" request should have timed out " ) ;
2005-06-17 03:28:24 +04:00
2006-10-16 17:06:41 +04:00
torture_comment ( tctx , " testing request destruction \n " ) ;
req = dcerpc_echo_TestSleep_send ( p , tctx , & r ) ;
2005-06-17 03:28:24 +04:00
if ( ! req ) {
2006-10-16 17:06:41 +04:00
torture_comment ( tctx , " Failed to send async sleep request \n " ) ;
2005-06-17 03:28:24 +04:00
goto failed ;
}
talloc_free ( req ) ;
2006-10-16 17:06:41 +04:00
req = dcerpc_echo_TestSleep_send ( p , tctx , & r ) ;
2005-06-17 03:28:24 +04:00
if ( ! req ) {
2006-10-16 17:06:41 +04:00
torture_comment ( tctx , " Failed to send async sleep request \n " ) ;
2005-06-17 03:28:24 +04:00
goto failed ;
}
2007-04-23 16:31:12 +04:00
req - > ignore_timeout = True ;
2005-06-17 03:28:24 +04:00
status = dcerpc_ndr_request_recv ( req ) ;
2006-10-16 17:06:41 +04:00
torture_assert_ntstatus_equal ( tctx , status , NT_STATUS_IO_TIMEOUT ,
" request should have timed out " ) ;
2005-06-17 03:28:24 +04:00
p - > request_timeout = timeout_saved ;
2006-10-16 17:06:41 +04:00
return test_addone ( tctx , p ) ;
2005-06-17 03:28:24 +04:00
failed :
p - > request_timeout = timeout_saved ;
2006-10-16 17:06:41 +04:00
return false ;
2005-06-17 03:28:24 +04:00
}
2006-10-16 17:06:41 +04:00
struct torture_suite * torture_rpc_echo ( void )
2003-11-03 10:26:30 +03:00
{
2006-10-16 17:06:41 +04:00
struct torture_suite * suite = torture_suite_create (
2006-11-04 07:48:46 +03:00
talloc_autofree_context ( ) , " ECHO " ) ;
2006-10-16 17:06:41 +04:00
struct torture_tcase * tcase ;
tcase = torture_suite_add_rpc_iface_tcase ( suite , " echo " ,
2007-08-20 01:23:03 +04:00
& ndr_table_rpcecho ) ;
2006-10-16 17:06:41 +04:00
torture_rpc_tcase_add_test ( tcase , " addone " , test_addone ) ;
torture_rpc_tcase_add_test ( tcase , " sinkdata " , test_sinkdata ) ;
torture_rpc_tcase_add_test ( tcase , " echodata " , test_echodata ) ;
torture_rpc_tcase_add_test ( tcase , " sourcedata " , test_sourcedata ) ;
torture_rpc_tcase_add_test ( tcase , " testcall " , test_testcall ) ;
torture_rpc_tcase_add_test ( tcase , " testcall2 " , test_testcall2 ) ;
torture_rpc_tcase_add_test ( tcase , " enum " , test_enum ) ;
torture_rpc_tcase_add_test ( tcase , " surrounding " , test_surrounding ) ;
torture_rpc_tcase_add_test ( tcase , " doublepointer " , test_doublepointer ) ;
torture_rpc_tcase_add_test ( tcase , " sleep " , test_sleep ) ;
torture_rpc_tcase_add_test ( tcase , " timeout " , test_timeout ) ;
return suite ;
2003-11-03 10:26:30 +03:00
}