aboutsummaryrefslogblamecommitdiffstats
path: root/spec/arel/engines/sql/unit/relations/insert_spec.rb
blob: dd1995cced17f10891ec38014e0e1f5423087fbf (plain) (tree)
1
2
3
4
5
6
7
8
9
                                                                                      
 
           
                    

                                   
       
 
                         
                                                                      

                                                                                                       
 





                                               
         
 
                                                                        
                                                                                             
 














                                              
         
 

                                                                                           
                                                                        
           
 
                                               














                                                

           
 

                                                                                              
                                                                        
           
 
                                               














                                                

           

       
   
require File.join(File.dirname(__FILE__), '..', '..', '..', '..', '..', 'spec_helper')

module Arel
  describe Insert do
    before do
      @relation = Table.new(:users)
    end

    describe '#to_sql' do
      it 'manufactures sql inserting data when given multiple rows' do
        pending 'it should insert multiple rows' do
          @insertion = Insert.new(@relation, [@relation[:name] => "nick", @relation[:name] => "bryan"])

          @insertion.to_sql.should be_like("
            INSERT
            INTO `users`
            (`name`) VALUES ('nick'), ('bryan')
          ")
        end
      end

      it 'manufactures sql inserting data when given multiple values' do
        @insertion = Insert.new(@relation, @relation[:id] => "1", @relation[:name] => "nick")

        adapter_is :mysql do
          @insertion.to_sql.should be_like(%Q{
            INSERT
            INTO `users`
            (`id`, `name`) VALUES (1, 'nick')
          })
        end

        adapter_is_not :mysql do
          @insertion.to_sql.should be_like(%Q{
            INSERT
            INTO "users"
            ("id", "name") VALUES (1, 'nick')
          })
        end
      end

      describe 'when given values whose types correspond to the types of the attributes' do
        before do
          @insertion = Insert.new(@relation, @relation[:name] => "nick")
        end

        it 'manufactures sql inserting data' do
          adapter_is :mysql do
            @insertion.to_sql.should be_like(%Q{
              INSERT
              INTO `users`
              (`name`) VALUES ('nick')
            })
          end

          adapter_is_not :mysql do
            @insertion.to_sql.should be_like(%Q{
              INSERT
              INTO "users"
              ("name") VALUES ('nick')
            })
          end
        end
      end

      describe 'when given values whose types differ from from the types of the attributes' do
        before do
          @insertion = Insert.new(@relation, @relation[:id] => '1-asdf')
        end

        it 'manufactures sql inserting data' do
          adapter_is :mysql do
            @insertion.to_sql.should be_like(%Q{
              INSERT
              INTO `users`
              (`id`) VALUES (1)
            })
          end

          adapter_is_not :mysql do
            @insertion.to_sql.should be_like(%Q{
              INSERT
              INTO "users"
              ("id") VALUES (1)
            })
          end
        end
      end
    end
  end
end