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
|
# Copyright (C) 2014-2019 Ruby-GNOME2 Project Team
#
# 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 TestFile < Test::Unit::TestCase
include GioTestUtils::Fixture
include GioTestUtils::Omissions
sub_test_case(".open") do
sub_test_case(":path") do
def test_string
path = __FILE__
Gio::File.open(path: path) do |file|
file.read do |input|
assert_equal(File.read(__FILE__), input.read)
end
end
end
def test_pathname
path = Pathname(__FILE__)
Gio::File.open(path: path) do |file|
file.read do |input|
assert_equal(File.read(__FILE__), input.read)
end
end
end
end
end
sub_test_case("instance methods") do
def setup
@file = Gio::File.open(path: __FILE__)
end
def test_guess_content_type
omit_on_os_x
path = fixture_path("content-type", "x-content", "unix-software")
dir = Gio::File.open(path: path)
assert_equal(["x-content/unix-software"],
dir.guess_content_types.collect(&:to_s))
end
sub_test_case("#read") do
def test_no_block
input_stream = @file.read
assert_equal(File.read(__FILE__), input_stream.read)
end
def test_with_block
content = @file.read do |input_stream|
input_stream.read
end
assert_equal(File.read(__FILE__), content)
end
end
end
end
|