Sha256: 208c8bd037798a9f0a4b1ff98458dadb86c280e01db6ea4fc90e5be9238fd1ad

Contents?: true

Size: 1.71 KB

Versions: 33

Compression:

Stored size: 1.71 KB

Contents

# Copyright (C) 2009-2020 MongoDB 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::MaxKey do

  describe "#==" do

    context "when the objects are equal" do

      let(:other) { described_class.new }

      it "returns true" do
        expect(subject).to eq(other)
      end
    end

    context "when the other object is not a max_key" do

      it "returns false" do
        expect(subject).to_not eq("test")
      end
    end
  end

  describe "#>" do

    it "always returns true" do
      expect(subject > Integer::MAX_64BIT).to be true
    end
  end

  describe "#<" do

    it "always returns false" do
      expect(subject < Integer::MAX_64BIT).to be false
    end
  end

  describe "#as_json" do

    let(:object) do
      described_class.new
    end

    it "returns the binary data plus type" do
      expect(object.as_json).to eq({ "$maxKey" => 1 })
    end

    it_behaves_like "a JSON serializable object"
  end

  describe "#to_bson/#from_bson" do

    let(:type) { 127.chr }
    let(:obj)  { described_class.new }
    let(:bson) { BSON::NO_VALUE }

    it_behaves_like "a bson element"
    it_behaves_like "a serializable bson element"
    it_behaves_like "a deserializable bson element"
  end
end

Version data entries

33 entries across 33 versions & 2 rubygems

Version Path
bson-4.15.0-java spec/bson/max_key_spec.rb
bson-4.15.0 spec/bson/max_key_spec.rb
bson-4.14.1-java spec/bson/max_key_spec.rb
bson-4.14.1 spec/bson/max_key_spec.rb
bson-4.14.0-java spec/bson/max_key_spec.rb
bson-4.14.0 spec/bson/max_key_spec.rb
bson-4.13.0-java spec/bson/max_key_spec.rb
bson-4.13.0 spec/bson/max_key_spec.rb
tdiary-5.1.6 vendor/bundle/ruby/2.7.0/gems/bson-4.12.0/spec/bson/max_key_spec.rb
bson-4.12.1-java spec/bson/max_key_spec.rb
bson-4.12.1 spec/bson/max_key_spec.rb
bson-4.12.0-java spec/bson/max_key_spec.rb
bson-4.12.0 spec/bson/max_key_spec.rb
bson-4.11.1-java spec/bson/max_key_spec.rb
bson-4.11.1 spec/bson/max_key_spec.rb
bson-4.11.0-java spec/bson/max_key_spec.rb
bson-4.11.0 spec/bson/max_key_spec.rb
bson-4.10.1-java spec/bson/max_key_spec.rb
bson-4.10.1 spec/bson/max_key_spec.rb
bson-4.9.5-java spec/bson/max_key_spec.rb