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 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227
|
require 'spec_helper'
require 'stringio'
describe Mongo::Grid::File::Chunk do
let(:data) do
BSON::Binary.new('testing')
end
let(:file_id) do
BSON::ObjectId.new
end
let(:file_info) do
Mongo::Grid::File::Info.new(:files_id => file_id)
end
describe '#==' do
let(:chunk) do
described_class.new(:data => data, :files_id => file_id, :n => 5)
end
context 'when the other is not a chunk' do
it 'returns false' do
expect(chunk).to_not eq('test')
end
end
context 'when the other object is a chunk' do
context 'when the documents are equal' do
it 'returns true' do
expect(chunk).to eq(chunk)
end
end
context 'when the documents are not equal' do
let(:other) do
described_class.new(:data => data, :files_id => file_id, :n => 6)
end
it 'returns false' do
expect(chunk).to_not eq(other)
end
end
end
end
describe '.assemble' do
let(:data_size) do
Mongo::Grid::File::Chunk::DEFAULT_SIZE * 3
end
let(:raw_data) do
'testing'
end
let(:data) do
BSON::Binary.new(raw_data)
end
let(:assembled) do
described_class.assemble(chunks)
end
before do
(1..data_size).each{ |i| raw_data << '1' }
end
let(:chunks) do
described_class.split(raw_data, file_info)
end
it 'returns the chunks assembled into the raw data' do
expect(assembled).to eq(raw_data)
end
end
describe '#document' do
let(:chunk) do
described_class.new(:data => data, :files_id => file_id, :n => 5)
end
let(:document) do
chunk.document
end
it 'sets the data' do
expect(document[:data]).to eq(data)
end
it 'sets the files_id' do
expect(document[:files_id]).to eq(file_id)
end
it 'sets the position' do
expect(document[:n]).to eq(5)
end
it 'sets an object id' do
expect(document[:_id]).to be_a(BSON::ObjectId)
end
context 'when asking for the document multiple times' do
it 'returns the same document' do
expect(document[:_id]).to eq(chunk.document[:_id])
end
end
end
describe '#initialize' do
let(:chunk) do
described_class.new(:data => data, :files_id => file_id, :n => 5)
end
it 'sets the document' do
expect(chunk.data).to eq(data)
end
it 'sets a default id' do
expect(chunk.id).to be_a(BSON::ObjectId)
end
end
describe '#to_bson' do
let(:chunk) do
described_class.new(:data => data, :files_id => file_id, :n => 5)
end
let(:document) do
chunk.document
end
it 'returns the document as bson' do
expect(chunk.to_bson.to_s).to eq(document.to_bson.to_s)
end
end
describe '.split' do
context 'when the data is smaller than the default size' do
let(:raw_data) do
'testing'
end
let(:data) do
BSON::Binary.new(raw_data)
end
let(:chunks) do
described_class.split(raw_data, file_info)
end
let(:chunk) do
chunks.first
end
it 'returns a single chunk' do
expect(chunks.size).to eq(1)
end
it 'sets the correct chunk position' do
expect(chunk.n).to eq(0)
end
it 'sets the correct chunk data' do
expect(chunk.data).to eq(data)
end
end
context 'when the data is larger that the default size' do
let(:data_size) do
Mongo::Grid::File::Chunk::DEFAULT_SIZE * 3
end
let(:raw_data) do
'testing'
end
let(:data) do
BSON::Binary.new(raw_data)
end
let(:assembled) do
full_data = ''
chunks.each do |chunk|
full_data << chunk.data.data
end
full_data
end
before do
(1..data_size).each{ |i| raw_data << '1' }
end
let(:chunks) do
described_class.split(raw_data, file_info)
end
it 'returns the correct number of chunks' do
expect(chunks.size).to eq(4)
end
it 'sets the correct chunk positions' do
expect(chunks[0].n).to eq(0)
expect(chunks[1].n).to eq(1)
expect(chunks[2].n).to eq(2)
expect(chunks[3].n).to eq(3)
end
it 'does to miss any bytes' do
expect(assembled).to eq(raw_data)
end
end
end
end
|