require 'factory_girl' require 'json' data = File.read("db/data") data_json = JSON.parse(data) FactoryGirl.define do factory :paper_record, class: "WritingJournal" do |f| f.sequence(:paper_title_translations) do |n| { zh_tw: "tw_#{data_json[n]["paper_title"]}", en: "en_#{data_json[n]["paper_title"]}" } end f.sequence(:journal_title_translations) do |n| {zh_tw: "tw_#{data_json[n]["booktitle"]}", en: "en_#{data_json[n]["booktitle"]}"} end f.sequence(:abstract) do |n| "#{data_json[n]["abstract"]}" end f.sequence(:isbn) do |n| "#{data_json[n]["isbn"]}" end f.sequence(:year) do |n| "#{data_json[n]["year"]}" end f.sequence(:authors) do |n| "#{data_json[n]["author"].map{|m| m.split(",").reverse.join(" ")}.join(",")}" end f.sequence(:form_to_start) do |n| "#{data_json[n]["page_from"]}" end f.sequence(:form_to_end) do |n| "#{data_json[n]["page_to"]}" end f.sequence(:total_pages) do |n| "#{data_json[n]["total_page"]}" end f.sequence(:language) do |n| "#{data_json[n]["language"]}" end f.sequence(:keywords) do |n| "#{data_json[n]["abstract"].split[-3..-1].join(",")}" end f.create_user_id BSON::ObjectId('4f45f3b9e9d02c5db9000067') #user_id, this is Chris' account f.update_user_id BSON::ObjectId('4f45f3b9e9d02c5db9000067') #user_id, this is Chris' account end end 50.times.each do FactoryGirl.create(:paper_record) end