mongo-ruby-driver/test/grid_file_system_test.rb

188 lines
5.0 KiB
Ruby
Raw Normal View History

2010-02-18 21:31:25 +00:00
require 'test/test_helper'
2010-02-20 00:17:38 +00:00
include Mongo
2010-02-18 21:31:25 +00:00
2010-02-22 20:49:04 +00:00
class GridFileSystemTest < Test::Unit::TestCase
context "GridFileSystem:" do
2010-02-18 21:31:25 +00:00
setup do
2010-02-22 20:49:04 +00:00
@con = Connection.new(ENV['MONGO_RUBY_DRIVER_HOST'] || 'localhost',
ENV['MONGO_RUBY_DRIVER_PORT'] || Connection::DEFAULT_PORT)
@db = @con.db('mongo-ruby-test')
2010-02-18 21:31:25 +00:00
end
2010-02-22 20:49:04 +00:00
teardown do
@db['fs.files'].remove
@db['fs.chunks'].remove
2010-02-18 21:31:25 +00:00
end
2010-02-22 20:49:04 +00:00
context "When reading:" do
setup do
@chunks_data = "CHUNKS" * 50000
@grid = GridFileSystem.new(@db)
@grid.open('sample.file', 'w') do |f|
f.write @chunks_data
end
2010-02-18 21:31:25 +00:00
2010-02-22 20:49:04 +00:00
@grid = GridFileSystem.new(@db)
2010-02-18 21:31:25 +00:00
end
2010-02-22 20:49:04 +00:00
should "read sample data" do
data = @grid.open('sample.file', 'r') { |f| f.read }
assert_equal data.length, @chunks_data.length
2010-02-18 21:31:25 +00:00
end
2010-02-22 20:49:04 +00:00
should "return an empty string if length is zero" do
data = @grid.open('sample.file', 'r') { |f| f.read(0) }
assert_equal '', data
end
2010-02-18 21:31:25 +00:00
2010-02-22 20:49:04 +00:00
should "return the first n bytes" do
data = @grid.open('sample.file', 'r') {|f| f.read(288888) }
assert_equal 288888, data.length
assert_equal @chunks_data[0...288888], data
end
2010-02-18 21:31:25 +00:00
2010-02-22 20:49:04 +00:00
should "return the first n bytes even with an offset" do
data = @grid.open('sample.file', 'r') do |f|
f.seek(1000)
f.read(288888)
end
assert_equal 288888, data.length
assert_equal @chunks_data[1000...289888], data
2010-02-18 21:31:25 +00:00
end
end
2010-02-22 20:49:04 +00:00
context "When writing:" do
setup do
@data = "BYTES" * 50
@grid = GridFileSystem.new(@db)
@grid.open('sample', 'w') do |f|
f.write @data
end
end
should "read sample data" do
data = @grid.open('sample', 'r') { |f| f.read }
assert_equal data.length, @data.length
end
should "return the total number of bytes written" do
data = 'a' * 300000
assert_equal 300000, @grid.open('sample', 'w') {|f| f.write(data) }
end
should "more read sample data" do
data = @grid.open('sample', 'r') { |f| f.read }
assert_equal data.length, @data.length
end
should "raise exception if not opened for write" do
assert_raise GridError do
@grid.open('io', 'r') { |f| f.write('hello') }
end
end
context "and when overwriting the file" do
setup do
@old = @grid.open('sample', 'r')
@new_data = "DATA" * 10
sleep(2)
@grid.open('sample', 'w') do |f|
f.write @new_data
end
@new = @grid.open('sample', 'r')
end
should "have a newer upload date" do
assert @new.upload_date > @old.upload_date, "New data is not greater than old date."
end
should "have a different files_id" do
assert_not_equal @new.files_id, @old.files_id
end
should "contain the new data" do
assert_equal @new_data, @new.read, "Expected DATA"
end
end
end
context "When writing chunks:" do
2010-02-18 21:31:25 +00:00
setup do
2010-02-22 20:49:04 +00:00
data = "B" * 50000
@grid = GridFileSystem.new(@db)
@grid.open('sample', 'w', :chunk_size => 1000) do |f|
f.write data
2010-02-18 21:31:25 +00:00
end
end
2010-02-22 20:49:04 +00:00
should "write the correct number of chunks" do
file = @db['fs.files'].find_one({:filename => 'sample'})
chunks = @db['fs.chunks'].find({'files_id' => file['_id']}).to_a
assert_equal 50, chunks.length
2010-02-18 21:31:25 +00:00
end
end
2010-02-22 20:49:04 +00:00
context "Positioning:" do
setup do
data = 'hello, world' + '1' * 5000 + 'goodbye!' + '2' * 1000 + '!'
@grid = GridFileSystem.new(@db)
@grid.open('hello', 'w', :chunk_size => 1000) do |f|
f.write data
end
2010-02-18 21:31:25 +00:00
end
2010-02-22 20:49:04 +00:00
should "seek within chunks" do
@grid.open('hello', 'r') do |f|
f.seek(0)
assert_equal 'h', f.read(1)
f.seek(7)
assert_equal 'w', f.read(1)
f.seek(4)
assert_equal 'o', f.read(1)
f.seek(0)
f.seek(7, IO::SEEK_CUR)
assert_equal 'w', f.read(1)
f.seek(-2, IO::SEEK_CUR)
assert_equal ' ', f.read(1)
f.seek(-4, IO::SEEK_CUR)
assert_equal 'l', f.read(1)
f.seek(3, IO::SEEK_CUR)
assert_equal 'w', f.read(1)
end
2010-02-18 21:31:25 +00:00
end
2010-02-22 20:49:04 +00:00
should "seek between chunks" do
@grid.open('hello', 'r') do |f|
f.seek(1000)
assert_equal '11111', f.read(5)
2010-02-18 21:31:25 +00:00
2010-02-22 20:49:04 +00:00
f.seek(5009)
assert_equal '111goodbye!222', f.read(14)
2010-02-18 21:31:25 +00:00
2010-02-22 20:49:04 +00:00
f.seek(-1, IO::SEEK_END)
assert_equal '!', f.read(1)
f.seek(-6, IO::SEEK_END)
assert_equal '2', f.read(1)
end
2010-02-18 21:31:25 +00:00
end
2010-02-22 20:49:04 +00:00
should "tell the current position" do
@grid.open('hello', 'r') do |f|
assert_equal 0, f.tell
2010-02-18 21:31:25 +00:00
2010-02-22 20:49:04 +00:00
f.seek(999)
assert_equal 999, f.tell
end
2010-02-18 21:31:25 +00:00
end
2010-02-22 20:49:04 +00:00
should "seek only in read mode" do
assert_raise GridError do
@grid.open('hello', 'w') {|f| f.seek(0) }
end
2010-02-18 21:31:25 +00:00
end
end
end
end