2003-08-13 01:53:07 +00:00
/*
Unix SMB / CIFS implementation .
RAW_MKDIR_ * and RAW_RMDIR_ * individual 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"
# define CHECK_STATUS(status, correct) do { \
if ( ! NT_STATUS_EQUAL ( status , correct ) ) { \
printf ( " (%d) Incorrect status %s - should be %s \n " , \
__LINE__ , nt_errstr ( status ) , nt_errstr ( correct ) ) ; \
ret = False ; \
goto done ; \
} } while ( 0 )
/*
test mkdir ops
*/
static BOOL test_mkdir ( struct cli_state * cli , TALLOC_CTX * mem_ctx )
{
union smb_mkdir md ;
struct smb_rmdir rd ;
const char * path = " \\ test_mkdir.dir " ;
NTSTATUS status ;
BOOL ret = True ;
/* cleanup */
2004-02-08 00:51:07 +00:00
cli_rmdir ( cli - > tree , path ) ;
cli_unlink ( cli - > tree , path ) ;
2003-08-13 01:53:07 +00:00
/*
basic mkdir
*/
md . mkdir . level = RAW_MKDIR_MKDIR ;
md . mkdir . in . path = path ;
status = smb_raw_mkdir ( cli - > tree , & md ) ;
CHECK_STATUS ( status , NT_STATUS_OK ) ;
printf ( " testing mkdir collision \n " ) ;
/* 2nd create */
status = smb_raw_mkdir ( cli - > tree , & md ) ;
CHECK_STATUS ( status , NT_STATUS_OBJECT_NAME_COLLISION ) ;
/* basic rmdir */
rd . in . path = path ;
status = smb_raw_rmdir ( cli - > tree , & rd ) ;
CHECK_STATUS ( status , NT_STATUS_OK ) ;
status = smb_raw_rmdir ( cli - > tree , & rd ) ;
CHECK_STATUS ( status , NT_STATUS_OBJECT_NAME_NOT_FOUND ) ;
printf ( " testing mkdir collision with file \n " ) ;
/* name collision with a file */
2004-02-08 00:51:07 +00:00
cli_close ( cli - > tree , create_complex_file ( cli , mem_ctx , path ) ) ;
2003-08-13 01:53:07 +00:00
status = smb_raw_mkdir ( cli - > tree , & md ) ;
CHECK_STATUS ( status , NT_STATUS_OBJECT_NAME_COLLISION ) ;
printf ( " testing rmdir with file \n " ) ;
/* delete a file with rmdir */
status = smb_raw_rmdir ( cli - > tree , & rd ) ;
CHECK_STATUS ( status , NT_STATUS_NOT_A_DIRECTORY ) ;
2004-02-08 00:51:07 +00:00
cli_unlink ( cli - > tree , path ) ;
2003-08-13 01:53:07 +00:00
printf ( " testing invalid dir \n " ) ;
/* create an invalid dir */
md . mkdir . in . path = " .. \\ .. \\ .. " ;
status = smb_raw_mkdir ( cli - > tree , & md ) ;
CHECK_STATUS ( status , NT_STATUS_OBJECT_PATH_SYNTAX_BAD ) ;
printf ( " testing t2mkdir \n " ) ;
/* try a t2mkdir - need to work out why this fails! */
md . t2mkdir . level = RAW_MKDIR_T2MKDIR ;
md . t2mkdir . in . path = path ;
md . t2mkdir . in . num_eas = 0 ;
status = smb_raw_mkdir ( cli - > tree , & md ) ;
CHECK_STATUS ( status , NT_STATUS_UNSUCCESSFUL ) ;
printf ( " testing t2mkdir with EAs \n " ) ;
/* with EAs */
md . t2mkdir . in . num_eas = 1 ;
md . t2mkdir . in . eas = talloc ( mem_ctx , sizeof ( md . t2mkdir . in . eas [ 0 ] ) ) ;
md . t2mkdir . in . eas [ 0 ] . flags = 0 ;
md . t2mkdir . in . eas [ 0 ] . name . s = " EAONE " ;
md . t2mkdir . in . eas [ 0 ] . value = data_blob_talloc ( mem_ctx , " 1 " , 1 ) ;
status = smb_raw_mkdir ( cli - > tree , & md ) ;
CHECK_STATUS ( status , NT_STATUS_UNSUCCESSFUL ) ;
done :
2004-02-08 00:51:07 +00:00
cli_rmdir ( cli - > tree , path ) ;
cli_unlink ( cli - > tree , path ) ;
2003-08-13 01:53:07 +00:00
return ret ;
}
/*
basic testing of all RAW_MKDIR_ * calls
*/
BOOL torture_raw_mkdir ( int dummy )
{
struct cli_state * cli ;
BOOL ret = True ;
TALLOC_CTX * mem_ctx ;
if ( ! torture_open_connection ( & cli ) ) {
return False ;
}
mem_ctx = talloc_init ( " torture_raw_mkdir " ) ;
if ( ! test_mkdir ( cli , mem_ctx ) ) {
ret = False ;
}
torture_close_connection ( cli ) ;
talloc_destroy ( mem_ctx ) ;
return ret ;
}