2003-08-13 05:53:07 +04:00
/*
Unix SMB / CIFS implementation .
rename test suite
Copyright ( C ) Andrew Tridgell 2003
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 . , 675 Mass Ave , Cambridge , MA 0213 9 , USA .
*/
# include "includes.h"
2006-01-03 16:41:17 +03:00
# include "torture/torture.h"
2005-12-28 18:38:36 +03:00
# include "libcli/raw/libcliraw.h"
2006-01-03 18:40:05 +03:00
# include "libcli/libcli.h"
2006-03-17 20:59:58 +03:00
# include "torture/util.h"
2003-08-13 05:53:07 +04:00
# define CHECK_STATUS(status, correct) do { \
if ( ! NT_STATUS_EQUAL ( status , correct ) ) { \
2004-12-30 05:22:29 +03:00
printf ( " (%s) Incorrect status %s - should be %s \n " , \
__location__ , nt_errstr ( status ) , nt_errstr ( correct ) ) ; \
2003-08-13 05:53:07 +04:00
ret = False ; \
goto done ; \
} } while ( 0 )
2003-08-13 20:04:21 +04:00
# define CHECK_VALUE(v, correct) do { \
if ( ( v ) ! = ( correct ) ) { \
2004-12-30 05:22:29 +03:00
printf ( " (%s) Incorrect %s %d - should be %d \n " , \
__location__ , # v , ( int ) v , ( int ) correct ) ; \
2003-08-13 20:04:21 +04:00
ret = False ; \
} } while ( 0 )
2003-08-13 05:53:07 +04:00
# define BASEDIR "\\testrename"
/*
test SMBmv ops
*/
2004-08-04 17:23:35 +04:00
static BOOL test_mv ( struct smbcli_state * cli , TALLOC_CTX * mem_ctx )
2003-08-13 05:53:07 +04:00
{
2003-08-13 20:04:21 +04:00
union smb_rename io ;
2003-08-13 05:53:07 +04:00
NTSTATUS status ;
BOOL ret = True ;
2004-12-02 07:51:56 +03:00
int fnum = - 1 ;
2003-08-13 05:53:07 +04:00
const char * fname1 = BASEDIR " \\ test1.txt " ;
const char * fname2 = BASEDIR " \\ test2.txt " ;
2004-11-13 08:47:27 +03:00
union smb_open op ;
2003-08-13 05:53:07 +04:00
2003-08-13 20:04:21 +04:00
printf ( " Testing SMBmv \n " ) ;
2004-11-12 12:37:59 +03:00
if ( ! torture_setup_dir ( cli , BASEDIR ) ) {
2003-08-13 05:53:07 +04:00
return False ;
}
printf ( " Trying simple rename \n " ) ;
2004-11-13 08:47:27 +03:00
op . generic . level = RAW_OPEN_NTCREATEX ;
op . ntcreatex . in . root_fid = 0 ;
op . ntcreatex . in . flags = 0 ;
2004-12-02 07:37:36 +03:00
op . ntcreatex . in . access_mask = SEC_FLAG_MAXIMUM_ALLOWED ;
2004-11-13 08:47:27 +03:00
op . ntcreatex . in . create_options = 0 ;
op . ntcreatex . in . file_attr = FILE_ATTRIBUTE_NORMAL ;
op . ntcreatex . in . share_access =
NTCREATEX_SHARE_ACCESS_READ |
NTCREATEX_SHARE_ACCESS_WRITE ;
op . ntcreatex . in . alloc_size = 0 ;
op . ntcreatex . in . open_disposition = NTCREATEX_DISP_OPEN_IF ;
op . ntcreatex . in . impersonation = NTCREATEX_IMPERSONATION_ANONYMOUS ;
op . ntcreatex . in . security_flags = 0 ;
op . ntcreatex . in . fname = fname1 ;
status = smb_raw_open ( cli - > tree , mem_ctx , & op ) ;
CHECK_STATUS ( status , NT_STATUS_OK ) ;
2006-03-13 01:48:25 +03:00
fnum = op . ntcreatex . out . file . fnum ;
2004-11-13 08:47:27 +03:00
2003-08-13 20:04:21 +04:00
io . generic . level = RAW_RENAME_RENAME ;
io . rename . in . pattern1 = fname1 ;
io . rename . in . pattern2 = fname2 ;
io . rename . in . attrib = 0 ;
2003-08-13 05:53:07 +04:00
2004-11-13 08:47:27 +03:00
printf ( " trying rename while first file open \n " ) ;
2003-08-13 05:53:07 +04:00
status = smb_raw_rename ( cli - > tree , & io ) ;
CHECK_STATUS ( status , NT_STATUS_SHARING_VIOLATION ) ;
2004-11-13 08:47:27 +03:00
smbcli_close ( cli - > tree , fnum ) ;
2004-11-30 07:33:27 +03:00
op . ntcreatex . in . access_mask = SEC_FILE_READ_DATA ;
2004-11-13 08:47:27 +03:00
op . ntcreatex . in . share_access =
NTCREATEX_SHARE_ACCESS_DELETE |
NTCREATEX_SHARE_ACCESS_READ |
NTCREATEX_SHARE_ACCESS_WRITE ;
status = smb_raw_open ( cli - > tree , mem_ctx , & op ) ;
CHECK_STATUS ( status , NT_STATUS_OK ) ;
2006-03-13 01:48:25 +03:00
fnum = op . ntcreatex . out . file . fnum ;
2004-11-13 08:47:27 +03:00
printf ( " trying rename while first file open with SHARE_ACCESS_DELETE \n " ) ;
status = smb_raw_rename ( cli - > tree , & io ) ;
CHECK_STATUS ( status , NT_STATUS_OK ) ;
io . rename . in . pattern1 = fname2 ;
io . rename . in . pattern2 = fname1 ;
status = smb_raw_rename ( cli - > tree , & io ) ;
CHECK_STATUS ( status , NT_STATUS_OK ) ;
io . rename . in . pattern1 = fname1 ;
io . rename . in . pattern2 = fname2 ;
printf ( " trying rename while not open \n " ) ;
2003-08-13 05:53:07 +04:00
smb_raw_exit ( cli - > session ) ;
status = smb_raw_rename ( cli - > tree , & io ) ;
CHECK_STATUS ( status , NT_STATUS_OK ) ;
2003-08-13 20:04:21 +04:00
printf ( " Trying self rename \n " ) ;
io . rename . in . pattern1 = fname2 ;
io . rename . in . pattern2 = fname2 ;
status = smb_raw_rename ( cli - > tree , & io ) ;
CHECK_STATUS ( status , NT_STATUS_OK ) ;
io . rename . in . pattern1 = fname1 ;
io . rename . in . pattern2 = fname1 ;
status = smb_raw_rename ( cli - > tree , & io ) ;
CHECK_STATUS ( status , NT_STATUS_OBJECT_NAME_NOT_FOUND ) ;
2003-08-13 05:53:07 +04:00
printf ( " trying wildcard rename \n " ) ;
2003-08-13 20:04:21 +04:00
io . rename . in . pattern1 = BASEDIR " \\ *.txt " ;
io . rename . in . pattern2 = fname1 ;
2003-08-13 05:53:07 +04:00
status = smb_raw_rename ( cli - > tree , & io ) ;
CHECK_STATUS ( status , NT_STATUS_OK ) ;
printf ( " and again \n " ) ;
status = smb_raw_rename ( cli - > tree , & io ) ;
CHECK_STATUS ( status , NT_STATUS_OK ) ;
printf ( " Trying extension change \n " ) ;
2003-08-13 20:04:21 +04:00
io . rename . in . pattern1 = BASEDIR " \\ *.txt " ;
io . rename . in . pattern2 = BASEDIR " \\ *.bak " ;
2003-08-13 05:53:07 +04:00
status = smb_raw_rename ( cli - > tree , & io ) ;
CHECK_STATUS ( status , NT_STATUS_OK ) ;
status = smb_raw_rename ( cli - > tree , & io ) ;
CHECK_STATUS ( status , NT_STATUS_NO_SUCH_FILE ) ;
printf ( " Checking attrib handling \n " ) ;
torture_set_file_attribute ( cli - > tree , BASEDIR " \\ test1.bak " , FILE_ATTRIBUTE_HIDDEN ) ;
2003-08-13 20:04:21 +04:00
io . rename . in . pattern1 = BASEDIR " \\ test1.bak " ;
io . rename . in . pattern2 = BASEDIR " \\ *.txt " ;
io . rename . in . attrib = 0 ;
2003-08-13 05:53:07 +04:00
status = smb_raw_rename ( cli - > tree , & io ) ;
CHECK_STATUS ( status , NT_STATUS_NO_SUCH_FILE ) ;
2003-08-13 20:04:21 +04:00
io . rename . in . attrib = FILE_ATTRIBUTE_HIDDEN ;
2003-08-13 05:53:07 +04:00
status = smb_raw_rename ( cli - > tree , & io ) ;
CHECK_STATUS ( status , NT_STATUS_OK ) ;
done :
2004-08-04 17:23:35 +04:00
smbcli_close ( cli - > tree , fnum ) ;
2003-08-13 05:53:07 +04:00
smb_raw_exit ( cli - > session ) ;
2004-08-04 17:23:35 +04:00
smbcli_deltree ( cli - > tree , BASEDIR ) ;
2003-08-13 05:53:07 +04:00
return ret ;
}
2003-08-13 20:04:21 +04:00
/*
test SMBntrename ops
*/
2004-08-04 17:23:35 +04:00
static BOOL test_ntrename ( struct smbcli_state * cli , TALLOC_CTX * mem_ctx )
2003-08-13 20:04:21 +04:00
{
union smb_rename io ;
NTSTATUS status ;
BOOL ret = True ;
2003-08-14 00:19:23 +04:00
int fnum , i ;
2003-08-13 20:04:21 +04:00
const char * fname1 = BASEDIR " \\ test1.txt " ;
const char * fname2 = BASEDIR " \\ test2.txt " ;
union smb_fileinfo finfo ;
printf ( " Testing SMBntrename \n " ) ;
2004-11-12 12:37:59 +03:00
if ( ! torture_setup_dir ( cli , BASEDIR ) ) {
2003-08-13 20:04:21 +04:00
return False ;
}
printf ( " Trying simple rename \n " ) ;
fnum = create_complex_file ( cli , mem_ctx , fname1 ) ;
io . generic . level = RAW_RENAME_NTRENAME ;
io . ntrename . in . old_name = fname1 ;
io . ntrename . in . new_name = fname2 ;
io . ntrename . in . attrib = 0 ;
2003-08-31 07:16:52 +04:00
io . ntrename . in . cluster_size = 0 ;
2003-08-13 20:04:21 +04:00
io . ntrename . in . flags = RENAME_FLAG_RENAME ;
status = smb_raw_rename ( cli - > tree , & io ) ;
CHECK_STATUS ( status , NT_STATUS_SHARING_VIOLATION ) ;
smb_raw_exit ( cli - > session ) ;
status = smb_raw_rename ( cli - > tree , & io ) ;
CHECK_STATUS ( status , NT_STATUS_OK ) ;
printf ( " Trying self rename \n " ) ;
io . ntrename . in . old_name = fname2 ;
io . ntrename . in . new_name = fname2 ;
status = smb_raw_rename ( cli - > tree , & io ) ;
CHECK_STATUS ( status , NT_STATUS_OK ) ;
io . ntrename . in . old_name = fname1 ;
io . ntrename . in . new_name = fname1 ;
status = smb_raw_rename ( cli - > tree , & io ) ;
CHECK_STATUS ( status , NT_STATUS_OBJECT_NAME_NOT_FOUND ) ;
printf ( " trying wildcard rename \n " ) ;
io . ntrename . in . old_name = BASEDIR " \\ *.txt " ;
io . ntrename . in . new_name = fname1 ;
status = smb_raw_rename ( cli - > tree , & io ) ;
CHECK_STATUS ( status , NT_STATUS_OBJECT_PATH_SYNTAX_BAD ) ;
printf ( " Checking attrib handling \n " ) ;
torture_set_file_attribute ( cli - > tree , fname2 , FILE_ATTRIBUTE_HIDDEN ) ;
io . ntrename . in . old_name = fname2 ;
io . ntrename . in . new_name = fname1 ;
io . ntrename . in . attrib = 0 ;
status = smb_raw_rename ( cli - > tree , & io ) ;
CHECK_STATUS ( status , NT_STATUS_NO_SUCH_FILE ) ;
io . ntrename . in . attrib = FILE_ATTRIBUTE_HIDDEN ;
status = smb_raw_rename ( cli - > tree , & io ) ;
CHECK_STATUS ( status , NT_STATUS_OK ) ;
torture_set_file_attribute ( cli - > tree , fname1 , FILE_ATTRIBUTE_NORMAL ) ;
printf ( " Checking hard link \n " ) ;
io . ntrename . in . old_name = fname1 ;
io . ntrename . in . new_name = fname2 ;
io . ntrename . in . attrib = 0 ;
io . ntrename . in . flags = RENAME_FLAG_HARD_LINK ;
status = smb_raw_rename ( cli - > tree , & io ) ;
CHECK_STATUS ( status , NT_STATUS_OK ) ;
torture_set_file_attribute ( cli - > tree , fname1 , FILE_ATTRIBUTE_SYSTEM ) ;
finfo . generic . level = RAW_FILEINFO_ALL_INFO ;
2006-03-13 01:48:25 +03:00
finfo . generic . in . file . path = fname2 ;
2003-08-13 20:04:21 +04:00
status = smb_raw_pathinfo ( cli - > tree , mem_ctx , & finfo ) ;
CHECK_STATUS ( status , NT_STATUS_OK ) ;
CHECK_VALUE ( finfo . all_info . out . nlink , 2 ) ;
CHECK_VALUE ( finfo . all_info . out . attrib , FILE_ATTRIBUTE_SYSTEM ) ;
2006-03-13 01:48:25 +03:00
finfo . generic . in . file . path = fname1 ;
2003-08-13 20:04:21 +04:00
status = smb_raw_pathinfo ( cli - > tree , mem_ctx , & finfo ) ;
CHECK_STATUS ( status , NT_STATUS_OK ) ;
CHECK_VALUE ( finfo . all_info . out . nlink , 2 ) ;
CHECK_VALUE ( finfo . all_info . out . attrib , FILE_ATTRIBUTE_SYSTEM ) ;
torture_set_file_attribute ( cli - > tree , fname1 , FILE_ATTRIBUTE_NORMAL ) ;
2004-08-04 17:23:35 +04:00
smbcli_unlink ( cli - > tree , fname2 ) ;
2003-08-13 20:04:21 +04:00
2006-03-13 01:48:25 +03:00
finfo . generic . in . file . path = fname1 ;
2003-08-13 20:04:21 +04:00
status = smb_raw_pathinfo ( cli - > tree , mem_ctx , & finfo ) ;
CHECK_STATUS ( status , NT_STATUS_OK ) ;
CHECK_VALUE ( finfo . all_info . out . nlink , 1 ) ;
2004-12-30 08:48:32 +03:00
CHECK_VALUE ( finfo . all_info . out . attrib , FILE_ATTRIBUTE_NORMAL ) ;
2003-08-13 20:04:21 +04:00
printf ( " Checking copy \n " ) ;
io . ntrename . in . old_name = fname1 ;
io . ntrename . in . new_name = fname2 ;
io . ntrename . in . attrib = 0 ;
io . ntrename . in . flags = RENAME_FLAG_COPY ;
status = smb_raw_rename ( cli - > tree , & io ) ;
CHECK_STATUS ( status , NT_STATUS_OK ) ;
2004-12-30 08:48:32 +03:00
finfo . generic . level = RAW_FILEINFO_ALL_INFO ;
2006-03-13 01:48:25 +03:00
finfo . generic . in . file . path = fname1 ;
2004-12-30 08:48:32 +03:00
status = smb_raw_pathinfo ( cli - > tree , mem_ctx , & finfo ) ;
CHECK_STATUS ( status , NT_STATUS_OK ) ;
CHECK_VALUE ( finfo . all_info . out . nlink , 1 ) ;
2005-06-11 11:01:44 +04:00
CHECK_VALUE ( finfo . all_info . out . attrib , FILE_ATTRIBUTE_NORMAL ) ;
finfo . generic . level = RAW_FILEINFO_ALL_INFO ;
2006-03-13 01:48:25 +03:00
finfo . generic . in . file . path = fname2 ;
2005-06-11 11:01:44 +04:00
status = smb_raw_pathinfo ( cli - > tree , mem_ctx , & finfo ) ;
CHECK_STATUS ( status , NT_STATUS_OK ) ;
CHECK_VALUE ( finfo . all_info . out . nlink , 1 ) ;
2004-12-30 08:48:32 +03:00
CHECK_VALUE ( finfo . all_info . out . attrib , FILE_ATTRIBUTE_NORMAL ) ;
2003-08-13 20:04:21 +04:00
torture_set_file_attribute ( cli - > tree , fname1 , FILE_ATTRIBUTE_SYSTEM ) ;
finfo . generic . level = RAW_FILEINFO_ALL_INFO ;
2006-03-13 01:48:25 +03:00
finfo . generic . in . file . path = fname2 ;
2003-08-13 20:04:21 +04:00
status = smb_raw_pathinfo ( cli - > tree , mem_ctx , & finfo ) ;
CHECK_STATUS ( status , NT_STATUS_OK ) ;
CHECK_VALUE ( finfo . all_info . out . nlink , 1 ) ;
CHECK_VALUE ( finfo . all_info . out . attrib , FILE_ATTRIBUTE_NORMAL ) ;
2006-03-13 01:48:25 +03:00
finfo . generic . in . file . path = fname1 ;
2003-08-13 20:04:21 +04:00
status = smb_raw_pathinfo ( cli - > tree , mem_ctx , & finfo ) ;
CHECK_STATUS ( status , NT_STATUS_OK ) ;
CHECK_VALUE ( finfo . all_info . out . nlink , 1 ) ;
CHECK_VALUE ( finfo . all_info . out . attrib , FILE_ATTRIBUTE_SYSTEM ) ;
torture_set_file_attribute ( cli - > tree , fname1 , FILE_ATTRIBUTE_NORMAL ) ;
2004-08-04 17:23:35 +04:00
smbcli_unlink ( cli - > tree , fname2 ) ;
2003-08-13 20:04:21 +04:00
2006-03-13 01:48:25 +03:00
finfo . generic . in . file . path = fname1 ;
2003-08-13 20:04:21 +04:00
status = smb_raw_pathinfo ( cli - > tree , mem_ctx , & finfo ) ;
CHECK_STATUS ( status , NT_STATUS_OK ) ;
CHECK_VALUE ( finfo . all_info . out . nlink , 1 ) ;
printf ( " Checking invalid flags \n " ) ;
io . ntrename . in . old_name = fname1 ;
io . ntrename . in . new_name = fname2 ;
io . ntrename . in . attrib = 0 ;
io . ntrename . in . flags = 0 ;
status = smb_raw_rename ( cli - > tree , & io ) ;
CHECK_STATUS ( status , NT_STATUS_ACCESS_DENIED ) ;
io . ntrename . in . flags = 300 ;
status = smb_raw_rename ( cli - > tree , & io ) ;
CHECK_STATUS ( status , NT_STATUS_ACCESS_DENIED ) ;
io . ntrename . in . flags = 0x106 ;
status = smb_raw_rename ( cli - > tree , & io ) ;
CHECK_STATUS ( status , NT_STATUS_ACCESS_DENIED ) ;
2003-08-14 00:19:23 +04:00
printf ( " Checking unknown field \n " ) ;
io . ntrename . in . old_name = fname1 ;
io . ntrename . in . new_name = fname2 ;
io . ntrename . in . attrib = 0 ;
io . ntrename . in . flags = RENAME_FLAG_RENAME ;
2003-08-31 07:16:52 +04:00
io . ntrename . in . cluster_size = 0xff ;
2003-08-14 00:19:23 +04:00
status = smb_raw_rename ( cli - > tree , & io ) ;
CHECK_STATUS ( status , NT_STATUS_OK ) ;
2003-08-31 07:16:52 +04:00
printf ( " Trying RENAME_FLAG_MOVE_CLUSTER_INFORMATION \n " ) ;
2003-08-14 00:19:23 +04:00
io . ntrename . in . old_name = fname2 ;
io . ntrename . in . new_name = fname1 ;
io . ntrename . in . attrib = 0 ;
2003-08-31 07:16:52 +04:00
io . ntrename . in . flags = RENAME_FLAG_MOVE_CLUSTER_INFORMATION ;
io . ntrename . in . cluster_size = 1 ;
2003-08-14 00:19:23 +04:00
status = smb_raw_rename ( cli - > tree , & io ) ;
CHECK_STATUS ( status , NT_STATUS_INVALID_PARAMETER ) ;
2003-08-31 07:16:52 +04:00
io . ntrename . in . flags = RENAME_FLAG_COPY ;
status = smb_raw_rename ( cli - > tree , & io ) ;
CHECK_STATUS ( status , NT_STATUS_OK ) ;
#if 0
{
char buf [ 16384 ] ;
2004-08-04 17:23:35 +04:00
fnum = smbcli_open ( cli - > tree , fname1 , O_RDWR , DENY_NONE ) ;
2003-08-31 07:16:52 +04:00
memset ( buf , 1 , sizeof ( buf ) ) ;
2004-08-04 17:23:35 +04:00
smbcli_write ( cli - > tree , fnum , 0 , buf , 0 , sizeof ( buf ) ) ;
smbcli_close ( cli - > tree , fnum ) ;
2003-08-31 07:16:52 +04:00
2004-08-04 17:23:35 +04:00
fnum = smbcli_open ( cli - > tree , fname2 , O_RDWR , DENY_NONE ) ;
2003-08-31 07:16:52 +04:00
memset ( buf , 1 , sizeof ( buf ) ) ;
2004-08-04 17:23:35 +04:00
smbcli_write ( cli - > tree , fnum , 0 , buf , 0 , sizeof ( buf ) - 1 ) ;
smbcli_close ( cli - > tree , fnum ) ;
2003-08-31 07:16:52 +04:00
torture_all_info ( cli - > tree , fname1 ) ;
torture_all_info ( cli - > tree , fname2 ) ;
}
io . ntrename . in . flags = RENAME_FLAG_MOVE_CLUSTER_INFORMATION ;
status = smb_raw_rename ( cli - > tree , & io ) ;
CHECK_STATUS ( status , NT_STATUS_INVALID_PARAMETER ) ;
for ( i = 0 ; i < 20000 ; i + + ) {
io . ntrename . in . cluster_size = i ;
2003-08-14 00:19:23 +04:00
status = smb_raw_rename ( cli - > tree , & io ) ;
if ( ! NT_STATUS_EQUAL ( status , NT_STATUS_INVALID_PARAMETER ) ) {
2003-08-31 07:16:52 +04:00
printf ( " i=%d status=%s \n " , i , nt_errstr ( status ) ) ;
2003-08-14 00:19:23 +04:00
}
}
2003-08-31 07:16:52 +04:00
# endif
2003-08-14 00:19:23 +04:00
printf ( " Checking other flags \n " ) ;
for ( i = 0 ; i < 0xFFF ; i + + ) {
if ( i = = RENAME_FLAG_RENAME | |
i = = RENAME_FLAG_HARD_LINK | |
i = = RENAME_FLAG_COPY ) {
continue ;
}
io . ntrename . in . old_name = fname2 ;
io . ntrename . in . new_name = fname1 ;
io . ntrename . in . flags = i ;
io . ntrename . in . attrib = 0 ;
2003-08-31 07:16:52 +04:00
io . ntrename . in . cluster_size = 0 ;
2003-08-14 00:19:23 +04:00
status = smb_raw_rename ( cli - > tree , & io ) ;
if ( ! NT_STATUS_EQUAL ( status , NT_STATUS_ACCESS_DENIED ) ) {
printf ( " flags=0x%x status=%s \n " , i , nt_errstr ( status ) ) ;
}
}
2003-08-13 20:04:21 +04:00
done :
smb_raw_exit ( cli - > session ) ;
2004-08-04 17:23:35 +04:00
smbcli_deltree ( cli - > tree , BASEDIR ) ;
2003-08-13 20:04:21 +04:00
return ret ;
}
2003-08-13 05:53:07 +04:00
/*
basic testing of rename calls
*/
2006-03-25 19:01:28 +03:00
BOOL torture_raw_rename ( struct torture_context * torture )
2003-08-13 05:53:07 +04:00
{
2004-08-04 17:23:35 +04:00
struct smbcli_state * cli ;
2003-08-13 05:53:07 +04:00
BOOL ret = True ;
TALLOC_CTX * mem_ctx ;
2006-07-10 12:00:06 +04:00
if ( ! torture_open_connection ( & cli , 0 ) ) {
2003-08-13 05:53:07 +04:00
return False ;
}
mem_ctx = talloc_init ( " torture_raw_rename " ) ;
if ( ! test_mv ( cli , mem_ctx ) ) {
ret = False ;
}
2003-08-13 20:04:21 +04:00
if ( ! test_ntrename ( cli , mem_ctx ) ) {
ret = False ;
}
2003-08-13 05:53:07 +04:00
torture_close_connection ( cli ) ;
2005-01-27 10:08:20 +03:00
talloc_free ( mem_ctx ) ;
2003-08-13 05:53:07 +04:00
return ret ;
}