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

pulibrary / tigerdata-app / dca7f983-7828-4892-9134-280c636425aa

10 Nov 2025 08:29PM UTC coverage: 91.275% (-0.1%) from 91.371%
dca7f983-7828-4892-9134-280c636425aa

Pull #2177

circleci

hectorcorrea
Fixes access error bug
Pull Request #2177: Handles access error gracefully

1 of 2 new or added lines in 1 file covered. (50.0%)

1757 existing lines in 75 files now uncovered.

2856 of 3129 relevant lines covered (91.28%)

547.78 hits per line

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

68.75
/app/models/mediaflux/time.rb
1
# frozen_string_literal: true
2
module Mediaflux
2✔
3
  class Time
2✔
4
    # Converts the givin time snippet into local princeton time while accounting for potential time zone of the asset.
5
    #
6
    # @param xml_snip [:nokigiri], response_xml from a mediaflux request
7
    # @return [String] returns a iso8601 Princeton time value.
8
    def convert(xml_snip:)
2✔
9
      xml = xml_snip
1✔
10
      time = xml.text.to_time
1✔
11
      gmt = xml.xpath("./@gmt-offset").text.to_f
1✔
12

13
      if gmt.zero?
1✔
14
        return time.in_time_zone("America/New_York").iso8601
1✔
UNCOV
15
      elsif gmt.positive?
×
16
        time -= gmt.hours
×
17
      else
UNCOV
18
        time += gmt.hours
×
19
      end
20

UNCOV
21
      princeton_time = time.in_time_zone("America/New_York").iso8601
×
UNCOV
22
      princeton_time
×
23
    end
24

25
    # Transform iso8601 dates to MediaFlux expected format
26
    # @example
27
    #   Mediaflux::Time.format_date_for_mediaflux("2024-02-26T10:33:11-05:00") => "22-FEB-2024 13:57:19"
28
    def self.format_date_for_mediaflux(iso8601_date)
2✔
29
      return if iso8601_date.nil?
1✔
30
      Object::Time.zone.parse(iso8601_date).strftime("%e-%b-%Y %H:%M:%S").upcase
1✔
31
    end
32
  end
33
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