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

pulibrary / tigerdata-app / daa13be6-e4d3-462a-b1ba-e93da28f6f4a

07 Nov 2025 09:30PM UTC coverage: 55.013% (-36.2%) from 91.243%
daa13be6-e4d3-462a-b1ba-e93da28f6f4a

Pull #2171

circleci

tpendragon
Add devbox as an option.

Very similar to princeton_ansible!
Pull Request #2171: Add devbox as an option.

1871 of 3401 relevant lines covered (55.01%)

113.42 hits per line

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

28.13
/app/models/mediaflux/asset_create_request.rb
1
# frozen_string_literal: true
2
module Mediaflux
1✔
3
  class AssetCreateRequest < Request
1✔
4
    attr_reader :namespace, :asset_name, :collection
1✔
5

6
    # Constructor
7
    # @param session_token [String] the API token for the authenticated session
8
    # @param name [String] Name of the Asset
9
    # @param namespace [String] Optional Parent namespace for the asset to be created in
10
    # @param pid [String] Optional Parent collection id (use this or a namespace not both)
11
    # @param xml_namespace [String]
12
    def initialize(session_token:, namespace: nil, name:, xml_namespace: nil, xml_namespace_uri: nil, pid: nil)
1✔
13
      super(session_token: session_token)
×
14
      @namespace = namespace
×
15
      @asset_name = name
×
16
      @xml_namespace = xml_namespace || self.class.default_xml_namespace
×
17
      @xml_namespace_uri = xml_namespace_uri || self.class.default_xml_namespace_uri
×
18
      @pid = pid
×
19
    end
20

21
    # Specifies the Mediaflux service to use when creating assets
22
    # @return [String]
23
    def self.service
1✔
24
      "asset.create"
×
25
    end
26

27
    def id
1✔
28
      @id ||= response_xml.xpath("/response/reply/result/id").text
×
29
      @id
×
30
    end
31

32
    private
1✔
33

34
      # The generated XML mimics what we get when we issue an Aterm command as follows:
35
      # > asset.set :id path=/sandbox_ns/rdss_collection
36
      #     :meta <
37
      #       :tigerdata:project <
38
      #         :title "RDSS test project"
39
      #         :description "The description of the project"
40
      #         ...the rest of the fields go here..
41
      #       >
42
      #     >
43
      #
44
      def build_http_request_body(name:)
1✔
45
        super do |xml|
×
46
          xml.args do
×
47
            xml.name asset_name
×
48
            xml.namespace namespace if namespace.present?
×
49
            yield xml if block_given?
×
50
            collection_xml(xml)
×
51
            if @pid.present?
×
52
              xml.pid @pid
×
53
            end
54
          end
55
        end
56
      end
57

58
      def collection_xml(xml)
1✔
59
        xml.collection do
×
60
          xml.parent.set_attribute("cascade-contained-asset-index", true)
×
61
          xml.parent.set_attribute("contained-asset-index", true)
×
62
          xml.parent.set_attribute("unique-name-index", true)
×
63
          xml.text(true)
×
64
        end
65
        xml.type "application/arc-asset-collection"
×
66
      end
67
  end
68
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