2016-02-06 19:58:58 +00:00
|
|
|
try:
|
|
|
|
import uos as os
|
|
|
|
except ImportError:
|
|
|
|
import os
|
|
|
|
|
2018-11-26 05:52:18 +00:00
|
|
|
if not hasattr(os, "remove"):
|
2016-02-06 19:58:58 +00:00
|
|
|
print("SKIP")
|
2017-06-10 18:14:16 +01:00
|
|
|
raise SystemExit
|
2016-02-06 19:58:58 +00:00
|
|
|
|
|
|
|
# cleanup in case testfile exists
|
|
|
|
try:
|
2018-11-26 05:52:18 +00:00
|
|
|
os.remove("testfile")
|
2016-02-06 19:58:58 +00:00
|
|
|
except OSError:
|
|
|
|
pass
|
|
|
|
|
|
|
|
try:
|
|
|
|
f = open("testfile", "r+b")
|
|
|
|
print("Unexpectedly opened non-existing file")
|
|
|
|
except OSError:
|
|
|
|
print("Expected OSError")
|
|
|
|
pass
|
|
|
|
|
|
|
|
f = open("testfile", "w+b")
|
|
|
|
f.write(b"1234567890")
|
|
|
|
f.seek(0)
|
|
|
|
print(f.read())
|
|
|
|
f.close()
|
|
|
|
|
|
|
|
# Open with truncation
|
|
|
|
f = open("testfile", "w+b")
|
|
|
|
f.write(b"abcdefg")
|
|
|
|
f.seek(0)
|
|
|
|
print(f.read())
|
|
|
|
f.close()
|
|
|
|
|
|
|
|
# Open without truncation
|
|
|
|
f = open("testfile", "r+b")
|
|
|
|
f.write(b"1234")
|
|
|
|
f.seek(0)
|
|
|
|
print(f.read())
|
|
|
|
f.close()
|
2016-03-17 20:09:33 +00:00
|
|
|
|
|
|
|
# cleanup
|
|
|
|
try:
|
2018-11-26 05:52:18 +00:00
|
|
|
os.remove("testfile")
|
2016-03-17 20:09:33 +00:00
|
|
|
except OSError:
|
|
|
|
pass
|