Sha256: 97d3543ec4e8f9227061d3e496152d9dda51b24334ad09864e6900f11515ca4b

Contents?: true

Size: 1.67 KB

Versions: 3

Compression:

Stored size: 1.67 KB

Contents

require 'spec_helper'
require 'orm/models/person'
require 'orm/models/test_class'

describe "Default scope in" do
  include SetUpHbaseConnectionBeforeAll
  include SetTableNamesToTestTable

  describe Person do
    let(:subject) { Person.new "ID1", :name => "Person1", :email => "one@person.com", :age => 11, :points => 111, :status => true }

    before do
      subject.save!

      Person.class_eval do
        default_scope select(:info)
      end
    end

    after do
      Person.class_eval do
        default_scope nil
      end
    end



    it "should be possible to find the a record and use the default scope" do
      Person.find(subject.id).points.should be_nil
    end

    it "should only load column family info as a default with first" do
      Person.first.points.should be_nil # its in :base
    end

    it "should only load column family info as default with all" do
      Person.all.first.points.should be_nil
    end

    it "should be possible to bypass default scope by unscoped" do
      Person.unscoped.first.points.should == 111
    end

    it "should be possible to set default_scope with a hash" do
      Person.class_eval do
        default_scope :select => :base
      end

      person = Person.first
      person.points.should == 111
      person.name.should be_nil
    end

    it "should not share scopes between classes" do
      Person.class_eval { default_scope :select => :base }
      Person.default_scoping.should be_instance_of MassiveRecord::ORM::Finders::Scope
      TestClass.default_scoping.should be_nil
    end

    it "returns a new scope object when default_scope are set" do
      Person.finder_scope.should_not eq Person.finder_scope
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
massive_record-0.2.2 spec/orm/cases/finder_default_scope_spec.rb
massive_record-0.2.2.rc2 spec/orm/cases/finder_default_scope_spec.rb
massive_record-0.2.2.rc1 spec/orm/cases/finder_default_scope_spec.rb