creator_test.py 1.6 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13
# Copyright PaddlePaddle contributors. 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.
Y
Yu Yang 已提交
14
import os
15 16
import unittest
import numpy as np
Y
Yu Yang 已提交
17
import paddle.v2.reader.creator
18 19 20 21 22 23


class TestNumpyArray(unittest.TestCase):
    def test_numpy_array(self):
        l = [[1, 2, 3], [4, 5, 6]]
        x = np.array(l, np.int32)
Y
Yu Yang 已提交
24
        reader = paddle.v2.reader.creator.np_array(x)
25 26 27 28 29 30 31
        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")
Y
Yu Yang 已提交
32
        reader = paddle.v2.reader.creator.text_file(path)
33 34 35 36
        for idx, e in enumerate(reader()):
            self.assertEqual(e, str(idx * 2) + " " + str(idx * 2 + 1))


G
gongweibao 已提交
37
class TestRecordIO(unittest.TestCase):
G
gongweibao 已提交
38
    def test_recordio(self):
G
gongweibao 已提交
39 40
        path = os.path.join(
            os.path.dirname(__file__), "test_recordio_creator.dat")
G
gongweibao 已提交
41
        reader = paddle.v2.reader.creator.recordio([path])
G
gongweibao 已提交
42 43 44 45
        for idx, r in enumerate(reader()):
            self.assertSequenceEqual(r, str(idx))


46 47
if __name__ == '__main__':
    unittest.main()