Sha256: 983b651273821d4ba563e37e798de27206d594419c550c9db7c5d7b71ef53865

Contents?: true

Size: 1.72 KB

Versions: 21

Compression:

Stored size: 1.72 KB

Contents

require 'spec_helper'

describe ActiveFedora::Base do
  describe "active model methods" do 
    class BarStream < ActiveFedora::OmDatastream 
      set_terminology do |t|
        t.root(:path=>"first", :xmlns=>"urn:foobar")
        t.duck()
      end

      def self.xml_template
            Nokogiri::XML::Document.parse '<first xmlns="urn:foobar"> 
              <duck></duck>
            </first>'
      end
    end

    class BarHistory < ActiveFedora::Base
      has_metadata :type=>ActiveFedora::SimpleDatastream, :name=>"someData" do |m|
        m.field "fubar", :string
        m.field "swank", :text
      end
      has_metadata :type=>ActiveFedora::SimpleDatastream, :name=>"withText" do |m|
        m.field "fubar", :text
      end
      has_metadata :type=>ActiveFedora::SimpleDatastream, :name=>"withText2", :label=>"withLabel" do |m|
        m.field "fubar", :text
      end 

      has_metadata :type=>BarStream, :name=>"xmlish"
      delegate :fubar, to: 'withText', multiple: false
      delegate :duck, to: 'xmlish', multiple: false
    end
    before :each do
      @n = BarHistory.new()
    end
    describe "attributes=" do
      it "should set attributes" do
        @n.attributes = {:fubar=>"baz", :duck=>"Quack"}
        @n.fubar.should == "baz"
        @n.withText.get_values(:fubar).first.should == 'baz'
        @n.duck.should == "Quack"
        @n.xmlish.term_values(:duck).first.should == 'Quack'
      end
    end
    describe "update_attributes" do
      it "should set attributes and save " do
        @n.update_attributes(:fubar=>"baz", :duck=>"Quack")
        @q = BarHistory.find(@n.pid)
        @q.fubar.should == "baz"
        @q.duck.should == "Quack"
      end
      after do
        @n.delete
      end
    end

  end
end

Version data entries

21 entries across 21 versions & 1 rubygems

Version Path
active-fedora-6.7.8 spec/unit/base_active_model_spec.rb
active-fedora-6.7.7 spec/unit/base_active_model_spec.rb
active-fedora-6.7.6 spec/unit/base_active_model_spec.rb
active-fedora-6.7.5 spec/unit/base_active_model_spec.rb
active-fedora-6.7.4 spec/unit/base_active_model_spec.rb
active-fedora-6.7.3 spec/unit/base_active_model_spec.rb
active-fedora-6.7.2 spec/unit/base_active_model_spec.rb
active-fedora-6.7.1 spec/unit/base_active_model_spec.rb
active-fedora-6.7.0 spec/unit/base_active_model_spec.rb
active-fedora-6.7.0.rc1 spec/unit/base_active_model_spec.rb
active-fedora-6.6.1 spec/unit/base_active_model_spec.rb
active-fedora-6.6.0 spec/unit/base_active_model_spec.rb
active-fedora-6.6.0.rc5 spec/unit/base_active_model_spec.rb
active-fedora-6.6.0.rc4 spec/unit/base_active_model_spec.rb
active-fedora-6.6.0.rc3 spec/unit/base_active_model_spec.rb
active-fedora-6.6.0.rc2 spec/unit/base_active_model_spec.rb
active-fedora-6.6.0.rc1 spec/unit/base_active_model_spec.rb
active-fedora-6.6.0.pre4 spec/unit/base_active_model_spec.rb
active-fedora-6.6.0.pre3 spec/unit/base_active_model_spec.rb
active-fedora-6.6.0.pre2 spec/unit/base_active_model_spec.rb