-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodule_spec.rb
62 lines (50 loc) · 1.31 KB
/
module_spec.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
require "sequel"
require "sequel/adapters/mysql"
module Sequel
module MySQLPreviewMod
class Database < Sequel::MySQL::Database
def execute(sql, opts={})
if sql.match(/^SELECT/) || sql.match(/^DESCRIBE/)
puts "RUNNING: #{sql}"
super(sql, opts)
else
puts "PREVIEW: #{sql}"
end
end
end
end
end
describe Sequel::MySQLPreviewMod::Database do
module FakeMySQLAdapter
class << self
attr_accessor :last_execute
end
def execute(*args)
FakeMySQLAdapter.last_execute = args
end
end
before :all do
subject.class.instance_eval { include FakeMySQLAdapter }
end
before :each do
FakeMySQLAdapter.last_execute = nil
end
it "should allow SELECTs" do
sql = "SELECT * FROM sometable"
subject.should_receive(:puts).with(/^RUNNING:/)
subject.execute(sql)
FakeMySQLAdapter.last_execute.should == [sql, {}]
end
it "should not allow DELETEs" do
sql = "DELETE FROM sometable"
subject.should_receive(:puts).with(/^PREVIEW:/)
subject.execute(sql)
FakeMySQLAdapter.last_execute.should == nil
end
it "should not allow DROPs" do
sql = "DROP TABLE sometable"
subject.should_receive(:puts).with(/^PREVIEW:/)
subject.execute(sql)
FakeMySQLAdapter.last_execute.should == nil
end
end