summaryrefslogtreecommitdiff
path: root/tests/test_file.py
blob: 456c038885dd4301bf98be5878265013735eac62 (plain)
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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
# Copyright (C) 2003-2009  Robey Pointer <robeypointer@gmail.com>
#
# This file is part of paramiko.
#
# Paramiko is free software; you can redistribute it and/or modify it under the
# terms of the GNU Lesser General Public License as published by the Free
# Software Foundation; either version 2.1 of the License, or (at your option)
# any later version.
#
# Paramiko 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 Lesser General Public License for more
# details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with Paramiko; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301 USA.

"""
Some unit tests for the BufferedFile abstraction.
"""

import unittest
from io import BytesIO

from paramiko.common import linefeed_byte, crlf, cr_byte
from paramiko.file import BufferedFile

from .util import needs_builtin


class LoopbackFile(BufferedFile):
    """
    BufferedFile object that you can write data into, and then read it back.
    """

    def __init__(self, mode="r", bufsize=-1):
        BufferedFile.__init__(self)
        self._set_mode(mode, bufsize)
        self.buffer = BytesIO()
        self.offset = 0

    def _read(self, size):
        data = self.buffer.getvalue()[self.offset : self.offset + size]
        self.offset += len(data)
        return data

    def _write(self, data):
        self.buffer.write(data)
        return len(data)


class BufferedFileTest(unittest.TestCase):
    def test_simple(self):
        f = LoopbackFile("r")
        try:
            f.write(b"hi")
            self.assertTrue(False, "no exception on write to read-only file")
        except:
            pass
        f.close()

        f = LoopbackFile("w")
        try:
            f.read(1)
            self.assertTrue(False, "no exception to read from write-only file")
        except:
            pass
        f.close()

    def test_readline(self):
        f = LoopbackFile("r+U")
        f.write(
            b"First line.\nSecond line.\r\nThird line.\n"
            + b"Fourth line.\nFinal line non-terminated."
        )

        self.assertEqual(f.readline(), "First line.\n")
        # universal newline mode should convert this linefeed:
        self.assertEqual(f.readline(), "Second line.\n")
        # truncated line:
        self.assertEqual(f.readline(7), "Third l")
        self.assertEqual(f.readline(), "ine.\n")
        # newline should be detected and only the fourth line returned
        self.assertEqual(f.readline(39), "Fourth line.\n")
        self.assertEqual(f.readline(), "Final line non-terminated.")
        self.assertEqual(f.readline(), "")
        f.close()
        try:
            f.readline()
            self.assertTrue(False, "no exception on readline of closed file")
        except IOError:
            pass
        self.assertTrue(linefeed_byte in f.newlines)
        self.assertTrue(crlf in f.newlines)
        self.assertTrue(cr_byte not in f.newlines)

    def test_lf(self):
        """
        try to trick the linefeed detector.
        """
        f = LoopbackFile("r+U")
        f.write(b"First line.\r")
        self.assertEqual(f.readline(), "First line.\n")
        f.write(b"\nSecond.\r\n")
        self.assertEqual(f.readline(), "Second.\n")
        f.close()
        self.assertEqual(f.newlines, crlf)

    def test_write(self):
        """
        verify that write buffering is on.
        """
        f = LoopbackFile("r+", 1)
        f.write(b"Complete line.\nIncomplete line.")
        self.assertEqual(f.readline(), "Complete line.\n")
        self.assertEqual(f.readline(), "")
        f.write("..\n")
        self.assertEqual(f.readline(), "Incomplete line...\n")
        f.close()

    def test_flush(self):
        """
        verify that flush will force a write.
        """
        f = LoopbackFile("r+", 512)
        f.write("Not\nquite\n512 bytes.\n")
        self.assertEqual(f.read(1), b"")
        f.flush()
        self.assertEqual(f.read(6), b"Not\nqu")
        self.assertEqual(f.read(4), b"ite\n")
        self.assertEqual(f.read(5), b"512 b")
        self.assertEqual(f.read(9), b"ytes.\n")
        self.assertEqual(f.read(3), b"")
        f.close()

    def test_buffering_flushes(self):
        """
        verify that flushing happens automatically on buffer crossing.
        """
        f = LoopbackFile("r+", 16)
        f.write(b"Too small.")
        self.assertEqual(f.read(4), b"")
        f.write(b"  ")
        self.assertEqual(f.read(4), b"")
        f.write(b"Enough.")
        self.assertEqual(f.read(20), b"Too small.  Enough.")
        f.close()

    def test_read_all(self):
        """
        verify that read(-1) returns everything left in the file.
        """
        f = LoopbackFile("r+", 16)
        f.write(b"The first thing you need to do is open your eyes. ")
        f.write(b"Then, you need to close them again.\n")
        s = f.read(-1)
        self.assertEqual(
            s,
            b"The first thing you need to do is open your eyes. Then, you "
            + b"need to close them again.\n",
        )
        f.close()

    def test_readable(self):
        f = LoopbackFile("r")
        self.assertTrue(f.readable())
        self.assertFalse(f.writable())
        self.assertFalse(f.seekable())
        f.close()

    def test_writable(self):
        f = LoopbackFile("w")
        self.assertTrue(f.writable())
        self.assertFalse(f.readable())
        self.assertFalse(f.seekable())
        f.close()

    def test_readinto(self):
        data = bytearray(5)
        f = LoopbackFile("r+")
        f._write(b"hello")
        f.readinto(data)
        self.assertEqual(data, b"hello")
        f.close()

    def test_write_bad_type(self):
        with LoopbackFile("wb") as f:
            self.assertRaises(TypeError, f.write, object())

    def test_write_unicode_as_binary(self):
        text = "\xa7 why is writing text to a binary file allowed?\n"
        with LoopbackFile("rb+") as f:
            f.write(text)
            self.assertEqual(f.read(), text.encode("utf-8"))

    @needs_builtin("memoryview")
    def test_write_bytearray(self):
        with LoopbackFile("rb+") as f:
            f.write(bytearray(12))
            self.assertEqual(f.read(), 12 * b"\0")

    @needs_builtin("buffer")
    def test_write_buffer(self):
        data = 3 * b"pretend giant block of data\n"
        offsets = range(0, len(data), 8)
        with LoopbackFile("rb+") as f:
            for offset in offsets:
                f.write(buffer(data, offset, 8))  # noqa
            self.assertEqual(f.read(), data)

    @needs_builtin("memoryview")
    def test_write_memoryview(self):
        data = 3 * b"pretend giant block of data\n"
        offsets = range(0, len(data), 8)
        with LoopbackFile("rb+") as f:
            view = memoryview(data)
            for offset in offsets:
                f.write(view[offset : offset + 8])
            self.assertEqual(f.read(), data)


if __name__ == "__main__":
    from unittest import main

    main()