forked from tensorflow/tensorflow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgfile_test.py
More file actions
168 lines (138 loc) · 5.61 KB
/
gfile_test.py
File metadata and controls
168 lines (138 loc) · 5.61 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
# Copyright 2015 Google Inc. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ==============================================================================
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
import os
import shutil
from tensorflow.python.platform.default import _gfile as gfile
from tensorflow.python.platform.default import _googletest as googletest
from tensorflow.python.platform.default import _logging as logging
class _BaseTest(object):
@property
def tmp(self):
return self._tmp_dir
def setUp(self):
self._orig_dir = os.getcwd()
self._tmp_dir = googletest.GetTempDir() + "/"
try:
os.makedirs(self._tmp_dir)
except OSError:
pass # Directory already exists
def tearDown(self):
try:
shutil.rmtree(self._tmp_dir)
except OSError:
logging.warn("[%s] Post-test directory cleanup failed: %s",
self, self._tmp_dir)
class _GFileBaseTest(_BaseTest):
@property
def gfile(self):
raise NotImplementedError("Do not use _GFileBaseTest directly.")
def testWith(self):
with self.gfile(self.tmp + "test_with", "w") as fh:
fh.write("hi")
with self.gfile(self.tmp + "test_with", "r") as fh:
self.assertEqual(fh.read(), "hi")
def testSizeAndTellAndSeek(self):
with self.gfile(self.tmp + "test_tell", "w") as fh:
fh.write("".join(["0"] * 1000))
with self.gfile(self.tmp + "test_tell", "r") as fh:
self.assertEqual(1000, fh.Size())
self.assertEqual(0, fh.tell())
fh.seek(0, 2)
self.assertEqual(1000, fh.tell())
fh.seek(0)
self.assertEqual(0, fh.tell())
def testReadAndWritelines(self):
with self.gfile(self.tmp + "test_writelines", "w") as fh:
fh.writelines(["%d\n" % d for d in range(10)])
with self.gfile(self.tmp + "test_writelines", "r") as fh:
self.assertEqual(["%d\n" % x for x in range(10)], fh.readlines())
def testWriteAndTruncate(self):
with self.gfile(self.tmp + "test_truncate", "w") as fh:
fh.write("ababab")
with self.gfile(self.tmp + "test_truncate", "a+") as fh:
fh.seek(0, 2)
fh.write("hjhjhj")
with self.gfile(self.tmp + "test_truncate", "a+") as fh:
self.assertEqual(fh.Size(), 12)
fh.truncate(6)
with self.gfile(self.tmp + "test_truncate", "r") as fh:
self.assertEqual(fh.read(), "ababab")
def testErrors(self):
self.assertRaises(
IOError, lambda: self.gfile(self.tmp + "doesnt_exist", "r"))
with self.gfile(self.tmp + "test_error", "w") as fh:
# Raises FileError inside Google and ValueError outside, so we
# can only test for Exception.
self.assertRaises(Exception, lambda: fh.seek(-1))
# test_error now exists, we can read from it:
with self.gfile(self.tmp + "test_error", "r") as fh:
self.assertRaises(IOError, lambda: fh.write("ack"))
fh = self.gfile(self.tmp + "test_error", "w")
self.assertFalse(fh.closed)
fh.close()
self.assertTrue(fh.closed)
self.assertRaises(ValueError, lambda: fh.write("ack"))
def testIteration(self):
with self.gfile(self.tmp + "test_iter", "w") as fh:
fh.writelines(["a\n", "b\n", "c\n"])
with self.gfile(self.tmp + "test_iter", "r") as fh:
lines = list(fh)
self.assertEqual(["a\n", "b\n", "c\n"], lines)
class GFileTest(_GFileBaseTest, googletest.TestCase):
@property
def gfile(self):
return gfile.GFile
class FastGFileTest(_GFileBaseTest, googletest.TestCase):
@property
def gfile(self):
return gfile.FastGFile
class FunctionTests(_BaseTest, googletest.TestCase):
def testExists(self):
self.assertFalse(gfile.Exists(self.tmp + "test_exists"))
with gfile.GFile(self.tmp + "test_exists", "w"):
pass
self.assertTrue(gfile.Exists(self.tmp + "test_exists"))
def testMkDirsGlobAndRmDirs(self):
self.assertFalse(gfile.Exists(self.tmp + "test_dir"))
gfile.MkDir(self.tmp + "test_dir")
self.assertTrue(gfile.Exists(self.tmp + "test_dir"))
gfile.RmDir(self.tmp + "test_dir")
self.assertFalse(gfile.Exists(self.tmp + "test_dir"))
gfile.MakeDirs(self.tmp + "test_dir/blah0")
gfile.MakeDirs(self.tmp + "test_dir/blah1")
self.assertEqual([self.tmp + "test_dir/blah0", self.tmp + "test_dir/blah1"],
sorted(gfile.Glob(self.tmp + "test_dir/*")))
gfile.DeleteRecursively(self.tmp + "test_dir")
self.assertFalse(gfile.Exists(self.tmp + "test_dir"))
def testErrors(self):
self.assertRaises(
OSError, lambda: gfile.RmDir(self.tmp + "dir_doesnt_exist"))
self.assertRaises(
OSError, lambda: gfile.Remove(self.tmp + "file_doesnt_exist"))
gfile.MkDir(self.tmp + "error_dir")
with gfile.GFile(self.tmp + "error_dir/file", "w"):
pass # Create file
self.assertRaises(
OSError, lambda: gfile.Remove(self.tmp + "error_dir"))
self.assertRaises(
OSError, lambda: gfile.RmDir(self.tmp + "error_dir"))
self.assertTrue(gfile.Exists(self.tmp + "error_dir"))
gfile.DeleteRecursively(self.tmp + "error_dir")
self.assertFalse(gfile.Exists(self.tmp + "error_dir"))
if __name__ == "__main__":
googletest.main()