Sha256: 5eb2329d5842a7b5da7b6541f7e8e227a5f545926b2125dba7845aa3c2d4c6fa

Contents?: true

Size: 1.88 KB

Versions: 2

Compression:

Stored size: 1.88 KB

Contents

require 'spec_helper'

describe Mdm::Ref do
  it_should_behave_like 'Metasploit::Concern.run'

  context 'associations' do
    # shoulda matchers don't have support for :primary_key option, so need to
    # test this association manually
    context 'module_refs' do
      context 'with Mdm::Module::Refs' do
        context 'with same name' do
          let(:name) do
            FactoryGirl.generate :mdm_ref_name
          end

          let!(:module_ref) do
            FactoryGirl.create(:mdm_module_ref, :name => name)
          end

          let!(:ref) do
            FactoryGirl.create(:mdm_ref, :name => name)
          end

          it 'should have module_refs in assocation' do
            expect(ref.module_refs).to match_array([module_ref])
          end
        end
      end
    end

    # @todo https://www.pivotaltracker.com/story/show/48915453
    it { should have_many(:vulns_refs).class_name('Mdm::VulnRef') }
    it { should have_many(:vulns).class_name('Mdm::Vuln').through(:vulns_refs) }
  end

  context 'database' do
    context 'columns' do
      it { should have_db_column(:name).of_type(:string) }
      it { should have_db_column(:ref_id).of_type(:integer) }

      context 'timestamps' do
        it { should have_db_column(:created_at).of_type(:datetime) }
        it { should have_db_column(:updated_at).of_type(:datetime) }
      end
    end

    context 'indices' do
      it { should have_db_index(:name) }
    end
  end

  context 'factories' do
    context 'mdm_ref' do
      subject(:mdm_ref) do
        FactoryGirl.build :mdm_ref
      end

      it { should be_valid }
    end
  end

  context '#destroy' do
    it 'should successfully destroy the object' do
      mdm_ref = FactoryGirl.create(:mdm_ref)
      expect {
        mdm_ref.destroy
      }.to_not raise_error
      expect {
        mdm_ref.reload
      }.to raise_error(ActiveRecord::RecordNotFound)
    end
  end

end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
metasploit_data_models-1.0.0.pre.rails.pre.4.0b spec/app/models/mdm/ref_spec.rb
metasploit_data_models-1.0.0.pre.rails.pre.4.0a spec/app/models/mdm/ref_spec.rb