• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

pulibrary / tigerdata-app / 085a83f3-f8ba-4ace-b5ad-5cb6d3d55a35

24 Oct 2025 02:47PM UTC coverage: 65.148% (-26.1%) from 91.202%
085a83f3-f8ba-4ace-b5ad-5cb6d3d55a35

Pull #2057

circleci

hectorcorrea
Make test more forgiving
Pull Request #2057: Dashboard displays projects straights from Mediaflux

11 of 87 new or added lines in 4 files covered. (12.64%)

625 existing lines in 35 files now uncovered.

2088 of 3205 relevant lines covered (65.15%)

181.75 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

18.75
/app/jobs/file_inventory_job.rb
1
# frozen_string_literal: true
2
class FileInventoryJob < ApplicationJob
1✔
3
  # Create the FileInventoryRequest as soon as the job is created, not when it is performed
4
  before_enqueue do |job|
1✔
UNCOV
5
    project = Project.find(job.arguments.first[:project_id])
×
UNCOV
6
    FileInventoryRequest.create(user_id: job.arguments.first[:user_id], project_id: job.arguments.first[:project_id], job_id: @job_id, state: UserRequest::PENDING,
×
7
                                request_details: { project_title: project.title })
8
  end
9

10
  # This is required because the before_enqueue does not get called when perform_now is run on a job
11
  # We include both before_perform and before_enqueue so perform_now and perform_later will work as desired
12
  before_perform do |job|
1✔
UNCOV
13
    project = Project.find(job.arguments.first[:project_id])
×
UNCOV
14
    inventory_request = FileInventoryRequest.find_by(user_id: job.arguments.first[:user_id], project_id: job.arguments.first[:project_id], job_id: @job_id)
×
UNCOV
15
    if inventory_request.blank?
×
UNCOV
16
      FileInventoryRequest.create(user_id: job.arguments.first[:user_id], project_id: job.arguments.first[:project_id], job_id: @job_id, state: UserRequest::PENDING,
×
17
                                  request_details: { project_title: project.title })
18
    end
19
  end
20

21
  def perform(user_id:, project_id:, mediaflux_session:)
1✔
UNCOV
22
    project = Project.find(project_id)
×
UNCOV
23
    raise "Invalid project id #{project_id} for job #{job_id}" if project.nil?
×
UNCOV
24
    user = User.find(user_id)
×
UNCOV
25
    raise "Invalid user id #{user_id} for job #{job_id}" if user.nil?
×
UNCOV
26
    Rails.logger.debug inspect
×
27

28
    # set the mediaflux session to the one the user created, do not just utilize the system one
UNCOV
29
    user.mediaflux_from_session({ mediaflux_session: })
×
30

31
    # Queries Mediaflux for the file list and saves it to a CSV file.
UNCOV
32
    filename = filename_for_export
×
UNCOV
33
    Rails.logger.info "Exporting file list to #{filename} for project #{project_id} (session: #{mediaflux_session})"
×
UNCOV
34
    project.file_list_to_file(session_id: mediaflux_session, filename: filename)
×
UNCOV
35
    Rails.logger.info "Export file generated #{filename} for project #{project_id} (session: #{mediaflux_session})"
×
36

37
    # Update the job record as completed
UNCOV
38
    update_inventory_request(user_id: user.id, project: project, job_id: @job_id, filename: filename)
×
39
  rescue Mediaflux::SessionExpired => e
40
    # do not retry we can not continue if the session is expired
UNCOV
41
    fail_inventory_request(user_id: user.id, project: project, job_id: @job_id)
×
42
  end
43

44
  private
1✔
45

46
    def mediaflux_session
1✔
47
      logon_request = Mediaflux::LogonRequest.new
×
48
      logon_request.session_token
×
49
    end
50

51
    def filename_for_export
1✔
UNCOV
52
      raise "Shared location is not configured" if Rails.configuration.mediaflux["shared_files_location"].blank?
×
UNCOV
53
      pathname = Pathname.new(Rails.configuration.mediaflux["shared_files_location"])
×
UNCOV
54
      pathname.join("#{job_id}.csv").to_s
×
55
    end
56

57
    def fail_inventory_request(user_id:, project:, job_id: )
1✔
UNCOV
58
      inventory_request = FileInventoryRequest.find_by(user_id: user_id, project_id: project.id, job_id: job_id)
×
UNCOV
59
      request_details = { project_title: project.title, error: "Mediaflux session expired" }
×
UNCOV
60
      inventory_request.update(state: UserRequest::FAILED, request_details: request_details,
×
61
                                completion_time: Time.current.in_time_zone("America/New_York"))
UNCOV
62
      inventory_request
×
63
    rescue ActiveRecord::StatementInvalid
UNCOV
64
      Rails.logger.info "Export - failing inventory request details for project #{project.id} job_id: #{job_id} failed, about to retry"
×
UNCOV
65
      ActiveRecord::Base.connection_pool.release_connection
×
UNCOV
66
      retry
×
67
    end
68

69
    def update_inventory_request(user_id:, project:, job_id:, filename: )
1✔
UNCOV
70
      Rails.logger.info "Export - updating inventory request details for project #{project.id}"
×
UNCOV
71
      inventory_request = FileInventoryRequest.find_by(user_id: user_id, project_id: project.id, job_id: job_id)
×
UNCOV
72
      request_details = { output_file: filename, project_title: project.title, file_size: File.size(filename) }
×
UNCOV
73
      inventory_request.update(state: UserRequest::COMPLETED, request_details: request_details,
×
74
                                completion_time: Time.current.in_time_zone("America/New_York"))
UNCOV
75
      Rails.logger.info "Export - updated inventory request details for project #{project.id}"
×
UNCOV
76
      inventory_request
×
77
    rescue ActiveRecord::StatementInvalid
UNCOV
78
      Rails.logger.info "Export - updating inventory request details for project #{project.id} failed, about to retry"
×
UNCOV
79
      ActiveRecord::Base.connection_pool.release_connection
×
UNCOV
80
      retry
×
81
    end
82
end
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc