# Copyright (C) 2014 Kouhei Sutou # # 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 require "pathname" class TestOds < Test::Unit::TestCase include FixtureHelper def setup setup_decomposer end def fixture_path(*components) super("ods", *components) end sub_test_case("target?") do sub_test_case("extension") do def create_data(uri) data = ChupaText::Data.new data.body = "" data.uri = uri data end def test_ods assert_true(@decomposer.target?(create_data("document.ods"))) end end sub_test_case("mime-type") do def create_data(mime_type) data = ChupaText::Data.new data.mime_type = mime_type data end def test_opendocument_spareadsheet mime_type = "application/vnd.oasis.opendocument.spreadsheet" assert_true(@decomposer.target?(create_data(mime_type))) end end end sub_test_case("decompose") do include DecomposeHelper sub_test_case("attributes") do def test_title assert_equal(["Title"], decompose("title")) end def test_author assert_equal([nil], decompose("author")) end def test_subject assert_equal(["Subject"], decompose("subject")) end def test_keywords assert_equal(["Keyword1, Keyword2"], decompose("keywords")) end def test_creator assert_equal(["Calc"], decompose("creator")) end def test_producer assert_equal(["LibreOffice 4.1"], decompose("producer")) end def test_creation_date assert_equal([nil], decompose("creation_date")) end private def decompose(attribute_name) super(fixture_path("attributes.ods")).collect do |data| data[attribute_name] end end end sub_test_case("one sheet") do def test_body assert_equal([<<-BODY.chomp], decompose.collect(&:body)) Sheet1 - A1 Sheet1 - A2 Sheet1 - B1 Sheet1 - B2 BODY end private def decompose super(fixture_path("one-sheet.ods")) end end sub_test_case("multi sheets") do def test_body assert_equal([<<-BODY.chomp], decompose.collect(&:body)) Sheet1 - A1 Sheet1 - A2 Sheet1 - B1 Sheet1 - B2 Sheet2 - A1 Sheet2 - A2 Sheet2 - B1 Sheet2 - B2 Sheet3 - A1 Sheet3 - A2 Sheet3 - B1 Sheet3 - B2 BODY end private def decompose super(fixture_path("multi-sheets.ods")) end end end end