Используя ruby(1.8.7)
, rails(2.3.8)
, rspec(1.3.1)
и rspec-rails(1.3.3)
, как мне протестировать метод, который полон сложных запросов SQL?Есть ли способ использовать заглушки и издевательства.Например, такой метод:
class Bucket << ActiveRecord::Base
attr_accessor :students
def populate_students_subassesmentwise(subassesment, mentor)
student_ids = Mark.find(:all,
:joins => "#{self.student_current_klass} #{self.current_mentors}",
:conditions => ["marks.subject_id = ? AND st.klass_id = ? AND
IF(sub.is_elective IS TRUE,
(se.student_id = st.id AND se.subject_klass_id = marks.klass_id AND se.student_klass_id = st.klass_id AND marks.subject_id = se.subject_id),
(marks.klass_id = st.klass_id))
AND u.account_enabled IS TRUE AND sub.active IS TRUE AND k.active IS TRUE AND marks.markable_id = ? AND marks.markable_type = ?
AND ROUND(marks_obtained/marks_total*100) BETWEEN ? AND ? ",
mentor.subject_id, mentor.klass_id, subassesment.id, "Subassesment", min_range, max_range],
:group => "marks.id").collect(&:student_id)
self.assign_students(student_ids) # This is a call to another instance method that runs a query to find the students having ids equal to student ids and assign it to the students attr_accessor
end
end
Как вы можете видеть, есть много предложений JOIN, IF и WHERE, которые больше говорят в терминах «СУБД», как мне писать тесты в Rspecчто будет издеваться над этим запросом?Или мы должны использовать светильники?