creator_test.py 2.5 KB
Newer Older
1
#   Copyright (c) 2018 PaddlePaddle Authors. All Rights Reserved.
D
dzhwinter 已提交
2 3 4 5 6 7 8 9 10 11 12 13 14
#
# 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.

15
# Copyright PaddlePaddle contributors. All Rights Reservedd
16 17 18 19 20 21 22 23 24 25 26 27
#
# 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.
Y
Yu Yang 已提交
28
import os
29 30
import unittest
import numpy as np
31
import paddle.reader.creator
32 33 34 35 36 37


class TestNumpyArray(unittest.TestCase):
    def test_numpy_array(self):
        l = [[1, 2, 3], [4, 5, 6]]
        x = np.array(l, np.int32)
38
        reader = paddle.reader.creator.np_array(x)
39 40 41 42 43 44 45
        for idx, e in enumerate(reader()):
            self.assertItemsEqual(e, l[idx])


class TestTextFile(unittest.TestCase):
    def test_text_file(self):
        path = os.path.join(os.path.dirname(__file__), "test_data_creator.txt")
46
        reader = paddle.reader.creator.text_file(path)
47 48 49 50
        for idx, e in enumerate(reader()):
            self.assertEqual(e, str(idx * 2) + " " + str(idx * 2 + 1))


H
Helin Wang 已提交
51 52
class TestRecordIO(unittest.TestCase):
    def do_test(self, path):
53
        reader = paddle.reader.creator.recordio(path)
H
Helin Wang 已提交
54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
        idx = 0
        for e in reader():
            if idx == 0:
                self.assertEqual(e, (1, 2, 3))
            elif idx == 1:
                self.assertEqual(e, (4, 5, 6))
            idx += 1
        self.assertEqual(idx, 2)

    def test_recordIO(self):
        self.do_test(
            os.path.join(
                os.path.dirname(__file__), "test_reader_recordio.dat"))
        self.do_test([
            os.path.join(
                os.path.dirname(__file__), "test_reader_recordio.dat")
        ])


73 74
if __name__ == '__main__':
    unittest.main()