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

pulibrary / tigerdata-app / f9562a31-daa0-4ff5-8719-49e56addc432

03 Nov 2025 07:22PM UTC coverage: 91.397% (-0.003%) from 91.4%
f9562a31-daa0-4ff5-8719-49e56addc432

push

circleci

web-flow
Adjusted breadcrumbs on draft request show page (#2138)

Closes #2109

0 of 1 new or added line in 1 file covered. (0.0%)

883 existing lines in 49 files now uncovered.

2826 of 3092 relevant lines covered (91.4%)

488.47 hits per line

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

95.45
/app/models/mediaflux/namespace_describe_request.rb
1
# frozen_string_literal: true
UNCOV
2
module Mediaflux
3✔
3
  # Describes a namespace
4
  # @example
5
  #   namespace = Mediaflux::NamespaceDescribeRequest.new(session_token: session_id).metadata
6
  #   => {:id=>"1", :path=>"/", :name=>"", :description=>"", :store=>"data"}
7
  # @example
8
  #   namespace = Mediaflux::NamespaceDescribeRequest.new(session_token: session_id, path: "/td-test-001/tigerdataNS").metadata
9
  #   => {:id=>"1182", :path=>"/td-test-001/tigerdataNS", :name=>"tigerdataNS", :description=>"TigerData client app root namespace", :store=>"db"}
UNCOV
10
  class NamespaceDescribeRequest < Request
3✔
UNCOV
11
    attr_reader :path, :id
3✔
12

13
    # Constructor
14
    # @param session_token [String] the API token for the authenticated session
15
    # @param path [String] path of the asset to be described
16
    # @param id [Integer] TODO: Define what this is and how to use it.
UNCOV
17
    def initialize(session_token:, path: nil, id: nil)
3✔
UNCOV
18
      super(session_token: session_token)
3✔
UNCOV
19
      @path = path
3✔
UNCOV
20
      @id = id
3✔
UNCOV
21
    end
22

23
    # Specifies the Mediaflux service to use
24
    # @return [String]
UNCOV
25
    def self.service
3✔
UNCOV
26
      "asset.namespace.describe"
6✔
UNCOV
27
    end
28

UNCOV
29
    def metadata
3✔
UNCOV
30
      @metadata ||= begin
3✔
UNCOV
31
                      xml = response_xml
3✔
UNCOV
32
                      node = xml.xpath("/response/reply/result/namespace")
3✔
UNCOV
33
                      {
UNCOV
34
                        id: node.xpath("@id").text,
3✔
UNCOV
35
                        path: node.xpath("./path").text,
UNCOV
36
                        name: node.xpath("./name").text,
UNCOV
37
                        description: node.xpath("./description").text,
UNCOV
38
                        store: node.xpath("./store").text
UNCOV
39
                      }
UNCOV
40
                    end
UNCOV
41
    end
42

UNCOV
43
    def exists?
3✔
44
      metadata[:id].present?
×
UNCOV
45
    end
46

UNCOV
47
    private
3✔
48

UNCOV
49
      def build_http_request_body(name:)
3✔
UNCOV
50
        super do |xml|
6✔
UNCOV
51
          xml.args do
6✔
UNCOV
52
            xml.id id if id.present?
6✔
UNCOV
53
            xml.namespace path if path.present?
6✔
UNCOV
54
          end
UNCOV
55
        end
UNCOV
56
      end
UNCOV
57
  end
UNCOV
58
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