Sha256: a97c2e2c16d4b91e18711a60d70680de44db8053f16ee876422554a7362d2e70
Contents?: true
Size: 1.89 KB
Versions: 6
Compression:
Stored size: 1.89 KB
Contents
# Copyright (C) 2013-2019 Kouhei Sutou <kou@clear-code.com> # # This library 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. # # This library 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 this library; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA class TestDecomposersCSV< Test::Unit::TestCase include Helper def setup @decomposer = ChupaText::Decomposers::CSV.new({}) end sub_test_case("decompose") do def test_valid csv = <<-CSV Hello,World Ruby,ChupaText CSV assert_equal([csv.gsub(/,/, "\t")], decompose(csv).collect(&:body)) end def test_invalid messages = capture_log do assert_equal([], decompose("He\x82\x00llo").collect(&:body)) end assert_equal([ [ :error, "[decomposer][csv] Failed to parse CSV: " + "CSV::MalformedCSVError: " + "Invalid byte sequence in UTF-8 in line 1.", ], ], messages) end private def decompose(csv) data = ChupaText::Data.new data.path = "hello.csv" data.mime_type = "text/csv" data.body = csv decomposed = [] @decomposer.decompose(data) do |decomposed_data| decomposed << decomposed_data end decomposed end end end
Version data entries
6 entries across 6 versions & 1 rubygems