mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 02:20:41 +08:00
52 lines
1.3 KiB
Ruby
52 lines
1.3 KiB
Ruby
# encoding: utf-8
|
|
require 'spec_helper'
|
|
require_dependency 'sql_builder'
|
|
|
|
describe SqlBuilder do
|
|
|
|
describe "attached" do
|
|
before do
|
|
@builder = Post.sql_builder("select * from posts /*where*/ /*limit*/")
|
|
end
|
|
|
|
it "should find a post by id" do
|
|
p = Fabricate(:post)
|
|
@builder.where('id = :id and topic_id = :topic_id', id: p.id, topic_id: p.topic_id)
|
|
p2 = @builder.exec.first
|
|
p2.id.should == p.id
|
|
p2.should == p
|
|
end
|
|
end
|
|
|
|
describe "detached" do
|
|
before do
|
|
@builder = SqlBuilder.new("select * from (select :a A union all select :b) as X /*where*/ /*order_by*/ /*limit*/ /*offset*/")
|
|
end
|
|
|
|
it "should allow for 1 param exec" do
|
|
@builder.exec(a: 1, b: 2).values[0][0].should == '1'
|
|
end
|
|
|
|
it "should allow for a single where" do
|
|
@builder.where(":a = 1")
|
|
@builder.exec(a: 1, b: 2).values[0][0].should == '1'
|
|
end
|
|
|
|
it "should allow where chaining" do
|
|
@builder.where(":a = 1")
|
|
@builder.where("2 = 1")
|
|
@builder.exec(a: 1, b: 2).to_a.length.should == 0
|
|
end
|
|
|
|
it "should allow order by" do
|
|
@builder.order_by("A desc").limit(1)
|
|
.exec(a:1, b:2).values[0][0].should == "2"
|
|
end
|
|
it "should allow offset" do
|
|
@builder.order_by("A desc").offset(1)
|
|
.exec(a:1, b:2).values[0][0].should == "1"
|
|
end
|
|
end
|
|
|
|
end
|