d6f309ce22
Addresses: #412 Co-authored-by: Pranav Raj S <pranav@thoughtwoot.com>
23 lines
1 KiB
Ruby
23 lines
1 KiB
Ruby
# This file is called when a cypress spec fails and allows for extra logging to be captured
|
|
filename = command_options.fetch('runnable_full_title', 'no title').gsub(/[^[:print:]]/, '')
|
|
|
|
# grab last lines until "APPCLEANED" (Make sure in clean.rb to log the text "APPCLEANED")
|
|
system "tail -n 10000 -r log/#{Rails.env}.log | sed \"/APPCLEANED/ q\" | sed 'x;1!H;$!d;x' > 'log/#{filename}.log'"
|
|
|
|
# create a json debug file for server debugging
|
|
json_result = {}
|
|
json_result['error'] = command_options.fetch('error_message', 'no error message')
|
|
|
|
if defined?(ActiveRecord::Base)
|
|
json_result['records'] =
|
|
ActiveRecord::Base.descendants.each_with_object({}) do |record_class, records|
|
|
records[record_class.to_s] = record_class.limit(100).map(&:attributes)
|
|
rescue StandardError => e
|
|
Rails.logger.info e.message
|
|
end
|
|
end
|
|
|
|
filename = command_options.fetch('runnable_full_title', 'no title').gsub(/[^[:print:]]/, '')
|
|
File.open(Rails.root.join("log/#{filename}.json"), 'w+') do |file|
|
|
file << JSON.pretty_generate(json_result)
|
|
end
|