Sha256: dda42f04a90907d0c198f3d2a2624b80c3019a9a0c7da1285738ad2b18c5bad4
Contents?: true
Size: 1.94 KB
Versions: 2
Compression:
Stored size: 1.94 KB
Contents
# Copyright (C) 2013 10gen Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. require "spec_helper" describe BSON::CodeWithScope do describe "#as_json" do let(:object) do described_class.new("this.value = val", :val => "test") end it "returns the binary data plus type" do expect(object.as_json).to eq( { "$code" => "this.value = val", "$scope" => { :val => "test" }} ) end it_behaves_like "a JSON serializable object" end describe "#to_bson" do let(:type) { 15.chr } let(:code) { "this.value == name" } let(:scope) do { :name => "test" } end let(:obj) { described_class.new(code, scope) } let(:bson) do "#{47.to_bson}#{(code.length + 1).to_bson}#{code}#{BSON::NULL_BYTE}" + "#{scope.to_bson}" end it_behaves_like "a bson element" it_behaves_like "a serializable bson element" end describe "#from_bson" do let(:type) { 15.chr } let(:code) { "this.value == name" } let(:scope) do { "name" => "test" } end let(:obj) { described_class.new(code, scope) } let(:bson) { StringIO.new(obj.to_bson) } let!(:deserialized) { described_class.from_bson(bson) } it "deserializes the javascript" do expect(deserialized.javascript).to eq(code) end it "deserializes the scope" do expect(deserialized.scope).to eq(scope) end it "does not leave any extra bytes" do expect(bson.read(1)).to be_nil end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
bson-2.0.0.rc2-java | spec/bson/code_with_scope_spec.rb |
bson-2.0.0.rc2 | spec/bson/code_with_scope_spec.rb |