2016-04-26 03:06:38 +00:00
use common ::util ::* ;
use std ::path ::Path ;
use std ::env ;
use std ::io ::Write ;
use std ::fs ::File ;
use std ::fs ::remove_file ;
2016-05-22 20:46:20 +00:00
2016-04-26 03:06:38 +00:00
// octal dump of 'abcdefghijklmnopqrstuvwxyz\n'
static ALPHA_OUT : & 'static str = " 0000000 061141 062143 063145 064147 065151 066153 067155 070157 \n 0000020 071161 072163 073165 074167 075171 000012 \n 0000033 \n " ;
2016-05-22 20:46:20 +00:00
2016-04-26 03:06:38 +00:00
// XXX We could do a better job of ensuring that we have a fresh temp dir to ourself,
2016-05-22 20:46:20 +00:00
// not a general one ful of other proc's leftovers.
// Test that od can read one file and dump with default format
2016-04-26 03:06:38 +00:00
#[ test ]
fn test_file ( ) {
2016-04-30 01:17:51 +00:00
use std ::env ;
let temp = env ::temp_dir ( ) ;
2016-04-26 03:06:38 +00:00
let tmpdir = Path ::new ( & temp ) ;
let file = tmpdir . join ( " test " ) ;
2016-05-22 20:46:20 +00:00
2016-04-26 03:06:38 +00:00
{
let mut f = File ::create ( & file ) . unwrap ( ) ;
match f . write_all ( b " abcdefghijklmnopqrstuvwxyz \n " ) {
Err ( _ ) = > panic! ( " Test setup failed - could not write file " ) ,
_ = > { }
}
}
2016-05-22 20:46:20 +00:00
2016-08-23 11:52:43 +00:00
let result = new_ucmd! ( ) . arg ( file . as_os_str ( ) ) . run ( ) ;
2016-05-22 20:46:20 +00:00
2016-04-26 03:06:38 +00:00
assert_empty_stderr! ( result ) ;
assert! ( result . success ) ;
assert_eq! ( result . stdout , ALPHA_OUT ) ;
2016-05-22 20:46:20 +00:00
2016-04-26 03:06:38 +00:00
let _ = remove_file ( file ) ;
}
2016-05-22 20:46:20 +00:00
2016-04-26 03:06:38 +00:00
// Test that od can read 2 files and concatenate the contents
#[ test ]
fn test_2files ( ) {
2016-04-30 01:17:51 +00:00
let temp = env ::temp_dir ( ) ;
2016-04-26 03:06:38 +00:00
let tmpdir = Path ::new ( & temp ) ;
let file1 = tmpdir . join ( " test1 " ) ;
let file2 = tmpdir . join ( " test2 " ) ;
2016-05-22 20:46:20 +00:00
2016-04-26 03:06:38 +00:00
for & ( n , a ) in [ ( 1 , " a " ) , ( 2 , " b " ) ] . iter ( ) {
println! ( " number: {} letter: {} " , n , a ) ;
}
2016-05-22 20:46:20 +00:00
2016-04-26 03:06:38 +00:00
for & ( path , data ) in & [ ( & file1 , " abcdefghijklmnop " ) , ( & file2 , " qrstuvwxyz \n " ) ] {
let mut f = File ::create ( & path ) . unwrap ( ) ;
match f . write_all ( data . as_bytes ( ) ) {
Err ( _ ) = > panic! ( " Test setup failed - could not write file " ) ,
_ = > { }
}
}
2016-05-22 20:46:20 +00:00
2016-08-23 11:52:43 +00:00
let result = new_ucmd! ( ) . arg ( file1 . as_os_str ( ) ) . arg ( file2 . as_os_str ( ) ) . run ( ) ;
2016-05-22 20:46:20 +00:00
2016-04-26 03:06:38 +00:00
assert_empty_stderr! ( result ) ;
assert! ( result . success ) ;
assert_eq! ( result . stdout , ALPHA_OUT ) ;
2016-05-22 20:46:20 +00:00
2016-04-26 03:06:38 +00:00
let _ = remove_file ( file1 ) ;
let _ = remove_file ( file2 ) ;
}
2016-05-22 20:46:20 +00:00
// Test that od gives non-0 exit val for filename that dosen't exist.
2016-04-26 03:06:38 +00:00
#[ test ]
fn test_no_file ( ) {
2016-04-30 01:17:51 +00:00
let temp = env ::temp_dir ( ) ;
2016-04-26 03:06:38 +00:00
let tmpdir = Path ::new ( & temp ) ;
let file = tmpdir . join ( " }surely'none'would'thus'a'file'name " ) ;
2016-05-22 20:46:20 +00:00
2016-08-23 11:52:43 +00:00
let result = new_ucmd! ( ) . arg ( file . as_os_str ( ) ) . run ( ) ;
2016-05-22 20:46:20 +00:00
2016-04-26 03:06:38 +00:00
assert! ( ! result . success ) ;
2016-04-26 02:05:16 +00:00
}
// Test that od reads from stdin instead of a file
#[ test ]
fn test_from_stdin ( ) {
let input = " abcdefghijklmnopqrstuvwxyz \n " ;
2016-08-23 11:52:43 +00:00
let result = new_ucmd! ( ) . run_piped_stdin ( input . as_bytes ( ) ) ;
2016-05-22 20:46:20 +00:00
2016-04-26 02:05:16 +00:00
assert_empty_stderr! ( result ) ;
assert! ( result . success ) ;
assert_eq! ( result . stdout , ALPHA_OUT ) ;
}
// Test that od reads from stdin and also from files
#[ test ]
fn test_from_mixed ( ) {
2016-04-30 01:17:51 +00:00
let temp = env ::temp_dir ( ) ;
2016-04-26 02:05:16 +00:00
let tmpdir = Path ::new ( & temp ) ;
let file1 = tmpdir . join ( " test-1 " ) ;
let file3 = tmpdir . join ( " test-3 " ) ;
let ( data1 , data2 , data3 ) = ( " abcdefg " , " hijklmnop " , " qrstuvwxyz \n " ) ;
for & ( path , data ) in & [ ( & file1 , data1 ) , ( & file3 , data3 ) ] {
let mut f = File ::create ( & path ) . unwrap ( ) ;
match f . write_all ( data . as_bytes ( ) ) {
Err ( _ ) = > panic! ( " Test setup failed - could not write file " ) ,
_ = > { }
}
}
2016-05-22 20:46:20 +00:00
2016-08-23 11:52:43 +00:00
let result = new_ucmd! ( ) . arg ( file1 . as_os_str ( ) ) . arg ( " -- " ) . arg ( file3 . as_os_str ( ) ) . run_piped_stdin ( data2 . as_bytes ( ) ) ;
2016-05-22 20:46:20 +00:00
2016-04-26 02:05:16 +00:00
assert_empty_stderr! ( result ) ;
assert! ( result . success ) ;
assert_eq! ( result . stdout , ALPHA_OUT ) ;
}
2016-05-22 20:46:20 +00:00
#[ test ]
fn test_multiple_formats ( ) {
let input = " abcdefghijklmnopqrstuvwxyz \n " ;
2016-08-23 11:52:43 +00:00
let result = new_ucmd! ( ) . arg ( " -c " ) . arg ( " -b " ) . run_piped_stdin ( input . as_bytes ( ) ) ;
2016-05-22 20:46:20 +00:00
assert_empty_stderr! ( result ) ;
assert! ( result . success ) ;
assert_eq! ( result . stdout , " 0000000 a b c d e f g h i j k l m n o p \n 141 142 143 144 145 146 147 150 151 152 153 154 155 156 157 160 \n 0000020 q r s t u v w x y z \\ n \n 161 162 163 164 165 166 167 170 171 172 012 \n 0000033 \n " ) ;
}
#[ test ]
fn test_dec ( ) {
let input = [
0 u8 , 0 u8 ,
1 u8 , 0 u8 ,
2 u8 , 0 u8 ,
3 u8 , 0 u8 ,
0xff u8 , 0x7f u8 ,
0x00 u8 , 0x80 u8 ,
0x01 u8 , 0x80 u8 , ] ;
let expected_output = " 0000000 0 1 2 3 32767 -32768 -32767 \n 0000016 \n " ;
2016-08-23 11:52:43 +00:00
let result = new_ucmd! ( ) . arg ( " -i " ) . run_piped_stdin ( & input [ .. ] ) ;
2016-05-22 20:46:20 +00:00
assert_empty_stderr! ( result ) ;
assert! ( result . success ) ;
assert_eq! ( result . stdout , expected_output ) ;
}
// We don't support multibyte chars, so big NEIN to this
/*
#[ test ]
fn mit_die_umlauten_getesten ( ) {
2016-08-23 11:52:43 +00:00
let result = new_ucmd! ( )
2016-07-29 21:26:32 +00:00
. run_piped_stdin ( " Universität Tübingen " . as_bytes ( ) ) ;
2016-05-22 20:46:20 +00:00
assert_empty_stderr! ( result ) ;
assert! ( result . success ) ;
assert_eq! ( result . stdout ,
" 0000000 U n i v e r s i t ä ** t T ü ** \n 0000020 b i n g e n \n 0000026 " )
}
* /