@@ -857,8 +857,8 @@ def tearDown(self):
857
857
def check_abspath (self , is_windows ):
858
858
# the implementation differs in Windows and Posix, so test both
859
859
self .filesystem .is_windows_fs = is_windows
860
- filename = u 'foo'
861
- abspath = u '!%s' % filename
860
+ filename = 'foo'
861
+ abspath = '!%s' % filename
862
862
self .filesystem .create_file (abspath )
863
863
self .assertEqual (abspath , self .path .abspath (abspath ))
864
864
self .assertEqual (abspath , self .path .abspath (filename ))
@@ -914,10 +914,14 @@ def test_abs_path_with_drive_component(self):
914
914
def test_isabs_with_drive_component (self ):
915
915
self .filesystem .is_windows_fs = False
916
916
self .assertFalse (self .path .isabs ('C:!foo' ))
917
+ self .assertFalse (self .path .isabs (b'C:!foo' ))
917
918
self .assertTrue (self .path .isabs ('!' ))
919
+ self .assertTrue (self .path .isabs (b'!' ))
918
920
self .filesystem .is_windows_fs = True
919
921
self .assertTrue (self .path .isabs ('C:!foo' ))
922
+ self .assertTrue (self .path .isabs (b'C:!foo' ))
920
923
self .assertTrue (self .path .isabs ('!' ))
924
+ self .assertTrue (self .path .isabs (b'!' ))
921
925
922
926
def test_relpath (self ):
923
927
path_foo = '!path!to!foo'
@@ -957,46 +961,53 @@ def test_samefile(self):
957
961
self .assertFalse (self .path .samefile (file_path1 , file_path2 ))
958
962
self .assertTrue (
959
963
self .path .samefile (file_path1 , '!foo!..!foo!bar!..!bar!baz' ))
964
+ self .assertTrue (
965
+ self .path .samefile (file_path1 , b'!foo!..!foo!bar!..!bar!baz' ))
960
966
961
967
def test_exists (self ):
962
968
file_path = 'foo!bar!baz'
969
+ file_path_bytes = b'foo!bar!baz'
963
970
self .filesystem .create_file (file_path )
964
971
self .assertTrue (self .path .exists (file_path ))
972
+ self .assertTrue (self .path .exists (file_path_bytes ))
965
973
self .assertFalse (self .path .exists ('!some!other!bogus!path' ))
966
974
967
975
def test_lexists (self ):
968
976
file_path = 'foo!bar!baz'
977
+ file_path_bytes = b'foo!bar!baz'
969
978
self .filesystem .create_dir ('foo!bar' )
970
979
self .filesystem .create_symlink (file_path , 'bogus' )
971
980
self .assertTrue (self .path .lexists (file_path ))
981
+ self .assertTrue (self .path .lexists (file_path_bytes ))
972
982
self .assertFalse (self .path .exists (file_path ))
983
+ self .assertFalse (self .path .exists (file_path_bytes ))
973
984
self .filesystem .create_file ('foo!bar!bogus' )
974
985
self .assertTrue (self .path .exists (file_path ))
975
986
976
987
def test_dirname_with_drive (self ):
977
988
self .filesystem .is_windows_fs = True
978
- self .assertEqual (u 'c:!foo' ,
979
- self .path .dirname (u 'c:!foo!bar' ))
989
+ self .assertEqual ('c:!foo' ,
990
+ self .path .dirname ('c:!foo!bar' ))
980
991
self .assertEqual (b'c:!' ,
981
992
self .path .dirname (b'c:!foo' ))
982
- self .assertEqual (u '!foo' ,
983
- self .path .dirname (u '!foo!bar' ))
993
+ self .assertEqual ('!foo' ,
994
+ self .path .dirname ('!foo!bar' ))
984
995
self .assertEqual (b'!' ,
985
996
self .path .dirname (b'!foo' ))
986
- self .assertEqual (u 'c:foo' ,
987
- self .path .dirname (u 'c:foo!bar' ))
997
+ self .assertEqual ('c:foo' ,
998
+ self .path .dirname ('c:foo!bar' ))
988
999
self .assertEqual (b'c:' ,
989
1000
self .path .dirname (b'c:foo' ))
990
- self .assertEqual (u 'foo' ,
991
- self .path .dirname (u 'foo!bar' ))
1001
+ self .assertEqual ('foo' ,
1002
+ self .path .dirname ('foo!bar' ))
992
1003
993
1004
def test_dirname (self ):
994
1005
dirname = 'foo!bar'
995
1006
self .assertEqual (dirname , self .path .dirname ('%s!baz' % dirname ))
996
1007
997
1008
def test_join_strings (self ):
998
- components = [u 'foo' , u 'bar' , u 'baz' ]
999
- self .assertEqual (u 'foo!bar!baz' , self .path .join (* components ))
1009
+ components = ['foo' , 'bar' , 'baz' ]
1010
+ self .assertEqual ('foo!bar!baz' , self .path .join (* components ))
1000
1011
1001
1012
def test_join_bytes (self ):
1002
1013
components = [b'foo' , b'bar' , b'baz' ]
@@ -1031,8 +1042,10 @@ def test_getsize_file_empty(self):
1031
1042
1032
1043
def test_getsize_file_non_zero_size (self ):
1033
1044
file_path = 'foo!bar!baz'
1045
+ file_path_bytes = b'foo!bar!baz'
1034
1046
self .filesystem .create_file (file_path , contents = '1234567' )
1035
1047
self .assertEqual (7 , self .path .getsize (file_path ))
1048
+ self .assertEqual (7 , self .path .getsize (file_path_bytes ))
1036
1049
1037
1050
def test_getsize_dir_empty (self ):
1038
1051
# For directories, only require that the size is non-negative.
@@ -1053,6 +1066,7 @@ def test_getsize_dir_non_zero_size(self):
1053
1066
def test_isdir (self ):
1054
1067
self .filesystem .create_file ('foo!bar' )
1055
1068
self .assertTrue (self .path .isdir ('foo' ))
1069
+ self .assertTrue (self .path .isdir (b'foo' ))
1056
1070
self .assertFalse (self .path .isdir ('foo!bar' ))
1057
1071
self .assertFalse (self .path .isdir ('it_dont_exist' ))
1058
1072
@@ -1071,6 +1085,7 @@ def test_isfile(self):
1071
1085
self .filesystem .create_file ('foo!bar' )
1072
1086
self .assertFalse (self .path .isfile ('foo' ))
1073
1087
self .assertTrue (self .path .isfile ('foo!bar' ))
1088
+ self .assertTrue (self .path .isfile (b'foo!bar' ))
1074
1089
self .assertFalse (self .path .isfile ('it_dont_exist' ))
1075
1090
1076
1091
def test_get_mtime (self ):
@@ -1079,6 +1094,7 @@ def test_get_mtime(self):
1079
1094
self .assertEqual (10 , test_file .st_mtime )
1080
1095
test_file .st_mtime = 24
1081
1096
self .assertEqual (24 , self .path .getmtime ('foo!bar1.txt' ))
1097
+ self .assertEqual (24 , self .path .getmtime (b'foo!bar1.txt' ))
1082
1098
1083
1099
def test_get_mtime_raises_os_error (self ):
1084
1100
self .assertFalse (self .path .exists ('it_dont_exist' ))
@@ -1095,6 +1111,8 @@ def test_islink(self):
1095
1111
# comments in Python/Lib/posixpath.py.
1096
1112
self .assertTrue (self .path .islink ('foo!link_to_file' ))
1097
1113
self .assertTrue (self .path .isfile ('foo!link_to_file' ))
1114
+ self .assertTrue (self .path .islink (b'foo!link_to_file' ))
1115
+ self .assertTrue (self .path .isfile (b'foo!link_to_file' ))
1098
1116
1099
1117
self .assertTrue (self .path .isfile ('foo!regular_file' ))
1100
1118
self .assertFalse (self .path .islink ('foo!regular_file' ))
@@ -1111,9 +1129,11 @@ def test_is_link_case_sensitive(self):
1111
1129
def test_ismount (self ):
1112
1130
self .assertFalse (self .path .ismount ('' ))
1113
1131
self .assertTrue (self .path .ismount ('!' ))
1132
+ self .assertTrue (self .path .ismount (b'!' ))
1114
1133
self .assertFalse (self .path .ismount ('!mount!' ))
1115
1134
self .filesystem .add_mount_point ('!mount' )
1116
1135
self .assertTrue (self .path .ismount ('!mount' ))
1136
+ self .assertTrue (self .path .ismount (b'!mount' ))
1117
1137
self .assertTrue (self .path .ismount ('!mount!' ))
1118
1138
1119
1139
def test_ismount_with_drive_letters (self ):
0 commit comments