Class: ActiveRecord::TestCase
Overview
Active Record Test Case
Defines some test assertions to test against SQL queries.
Constant Summary
ActiveSupport::TestCase::Assertion
Instance Method Summary
collapse
for_tag
extended, #test
#enlist_fixture_connections, #run_in_transaction?, #setup_fixtures, #teardown_fixtures
#append_features, extended, #included
#pending
#assert_deprecated, #assert_not_deprecated
#assert_blank, #assert_difference, #assert_no_difference, #assert_present
Instance Method Details
#assert_date_from_db(expected, actual, message = nil) ⇒ Object
23
24
25
26
27
28
29
30
31
|
# File 'activerecord/lib/active_record/test_case.rb', line 23
def assert_date_from_db(expected, actual, message = nil)
if current_adapter?(:SybaseAdapter)
assert_equal expected.to_s, actual.to_date.to_s, message
else
assert_equal expected.to_s, actual.to_s, message
end
end
|
#assert_no_queries(&block) ⇒ Object
52
53
54
55
56
57
58
|
# File 'activerecord/lib/active_record/test_case.rb', line 52
def assert_no_queries(&block)
prev_ignored_sql = ActiveRecord::SQLCounter.ignored_sql
ActiveRecord::SQLCounter.ignored_sql = []
assert_queries(0, &block)
ensure
ActiveRecord::SQLCounter.ignored_sql = prev_ignored_sql
end
|
#assert_queries(num = 1) ⇒ Object
45
46
47
48
49
50
|
# File 'activerecord/lib/active_record/test_case.rb', line 45
def assert_queries(num = 1)
ActiveRecord::SQLCounter.log = []
yield
ensure
assert_equal num, ActiveRecord::SQLCounter.log.size, "#{ActiveRecord::SQLCounter.log.size} instead of #{num} queries were executed.#{ActiveRecord::SQLCounter.log.size == 0 ? '' : "\nQueries:\n#{ActiveRecord::SQLCounter.log.join("\n")}"}"
end
|
#assert_sql(*patterns_to_match) ⇒ Object
33
34
35
36
37
38
39
40
41
42
43
|
# File 'activerecord/lib/active_record/test_case.rb', line 33
def assert_sql(*patterns_to_match)
ActiveRecord::SQLCounter.log = []
yield
ActiveRecord::SQLCounter.log
ensure
failed_patterns = []
patterns_to_match.each do |pattern|
failed_patterns << pattern unless ActiveRecord::SQLCounter.log.any?{ |sql| pattern === sql }
end
assert failed_patterns.empty?, "Query pattern(s) #{failed_patterns.map{ |p| p.inspect }.join(', ')} not found.#{ActiveRecord::SQLCounter.log.size == 0 ? '' : "\nQueries:\n#{ActiveRecord::SQLCounter.log.join("\n")}"}"
end
|
#cleanup_identity_map ⇒ Object
8
9
10
|
# File 'activerecord/lib/active_record/test_case.rb', line 8
def setup
cleanup_identity_map
end
|
#skip(message) ⇒ Object
19
20
|
# File 'activerecord/lib/active_record/test_case.rb', line 19
def skip(message)
end
|
#with_kcode(kcode) ⇒ Object
60
61
62
63
64
65
66
67
68
69
70
71
|
# File 'activerecord/lib/active_record/test_case.rb', line 60
def with_kcode(kcode)
if RUBY_VERSION < '1.9'
orig_kcode, $KCODE = $KCODE, kcode
begin
yield
ensure
$KCODE = orig_kcode
end
else
yield
end
end
|