0

私はこのようなシナリオを持っています

Given /^initial data$/ do |table|
  @schedule_05 = Factory.build :schedule_05
  @schedule_05.save
  puts "count of rows #{@schedule_05.cycles.count}" - # is 7
end
#....... there are same steps and where filling text fields and so on/

When /^i click a submit button "([^"]*)" in form$/ do |runs|
  click_button(runs) # this is ajax request
end

Then /^count of SchOfWorkInformation is 365$/ do 
  puts "count of rows #{ScheduleOfWorking.count}" # is - 1
  s_c = ScheduleOfWorking.find_by_schedule_code("05") # is too 1
  puts "05 schedule is presents #{s_c.blank?}" # false
  unless s_c.blank?
    puts "05 schedule is presents #{s_c.date_of_countings.blank?}" #false
  end
end

送信をクリックすると、コントローラの ScheduleOfWorkingController の充填アクションが含まれます

def filling
unless request.xhr?
  @classifier_schedule = ScheduleOfWorking.classifiers_numbers
  @schedule_number = ScheduleOfWorking.classifiers_numbers false
else
  if params[:date_begin].blank? || params[:date_end].blank?
    render :js => "alert('date fields is empty !')"
    return
  end
  ScheduleOfWorking.fill_information_for(params[:date_begin].to_date,params[:date_end].to_date)
end

終わり

ScheduleOfWorking#fill_information_for

def self.fill_information_for(date_begin, date_end)
  sch = all
  sch.each do |e_sch|
    e_sch.date_of_countings.each do |d_counting|
      h_calculate = d_counting.roll_cycle(date_begin, date_end)
      transaction do
        SchOfWorkInformation.delete_all("(date >= '#{date_begin}' and date <= '#{date_end}') and schedule_code = #{d_counting.sch_code}")

        SchOfWorkInformation.create! h_calculate 
      end
    end
  end
end

SchOfWorkInformation には、このようなカスタム検証メソッドがあります

def customer_validate
s = SchOfWorkInformation.where(:date => self.date, :schedule_code => self.schedule_code).first

if !s.blank? && (new_record? || s.id != self.id)
  self.errors[:base] = "Запись не уникально!(date=#{self.date.to_s(:db)}, schedule_code=#{self.schedule_code})"
end

sch_number = schedule_code[0..1].blank? ? "0" : schedule_code[0..1]
session_number = schedule_code[2].blank? ? "0" : schedule_code[2]
logger.info "---------------------------------------"
ss_a = ScheduleOfWorking.all

s = ScheduleOfWorking.where("schedule_code='#{sch_number}'").
                      joins(:date_of_countings).
                      where("date_countings.session_number=#{session_number}")
  # In Given section of my step i load the data, but s.balnk? gives true
  if s.blank?
    self.errors[:base] = "Schedule - #{sch_number} with session number #{session_number}), is not exists in DB"
  end
end

検証方法でデータが失われるのはなぜですか? 助けてください!

開発環境で。すべての権利ですが、テストではありません。

..長文すみません..

4

1 に答える 1

1

これらのテストにどのデータベース戦略を使用していますか?トランザクションで実行されている場合、データが実際にデータベースに永続化されることはありません。実行中のスレッドまたはプロセスの数に関係なくデータが保持されることが保証されているため、これらの手順には他の方法を使用する必要があります。ajaxリクエストを行うと、サーバーへの個別のリクエストに含まれ、データベーストランザクションはそのリクエストでのみ使用できます。

私のアプリケーションでは、共有接続を使用するjavascriptテストの設定があります。

Cucumber::Rails::Database.javascript_strategy = :shared_connection
于 2012-04-22T17:26:43.900 に答える