Sha256: 9361478ad6314e3e3ec062e10bd0413a528de367aa37c1b4d10dc43e40e3339b

Contents?: true

Size: 1.28 KB

Versions: 3

Compression:

Stored size: 1.28 KB

Contents

require 'spec_helper'

describe ThinkingSphinx::ActiveRecord::DatabaseAdapters::MySQLAdapter do
  let(:adapter) {
    ThinkingSphinx::ActiveRecord::DatabaseAdapters::MySQLAdapter.new(model)
  }
  let(:model)   { double('model') }

  it "returns 1 for true" do
    adapter.boolean_value(true).should == 1
  end

  it "returns 0 for false" do
    adapter.boolean_value(false).should == 0
  end

  describe '#cast_to_string' do
    it "casts the clause to characters" do
      adapter.cast_to_string('foo').should == "CAST(foo AS char)"
    end
  end

  describe '#cast_to_timestamp' do
    it "converts to unix timestamps" do
      adapter.cast_to_timestamp('created_at').
        should == 'UNIX_TIMESTAMP(created_at)'
    end
  end

  describe '#concatenate' do
    it "concatenates with the given separator" do
      adapter.concatenate('foo, bar, baz', ',').
        should == "CONCAT_WS(',', foo, bar, baz)"
    end
  end

  describe '#convert_nulls' do
    it "translates arguments to an IFNULL SQL call" do
      adapter.convert_nulls('id', 5).should == 'IFNULL(id, 5)'
    end
  end

  describe '#group_concatenate' do
    it "group concatenates the clause with the given separator" do
      adapter.group_concatenate('foo', ',').
        should == "GROUP_CONCAT(foo SEPARATOR ',')"
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
thinking-sphinx-3.0.5 spec/thinking_sphinx/active_record/database_adapters/mysql_adapter_spec.rb
thinking-sphinx-3.0.4 spec/thinking_sphinx/active_record/database_adapters/mysql_adapter_spec.rb
thinking-sphinx-3.0.3 spec/thinking_sphinx/active_record/database_adapters/mysql_adapter_spec.rb