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

pulibrary / tigerdata-app / 0fa44f37-9401-471e-84d4-efbabcf424ab

22 Oct 2025 02:10PM UTC coverage: 91.212% (+0.2%) from 91.051%
0fa44f37-9401-471e-84d4-efbabcf424ab

push

circleci

web-flow
Getting rid of the New Project Wizard flipper (#2072)

3 of 4 new or added lines in 1 file covered. (75.0%)

794 existing lines in 41 files now uncovered.

2740 of 3004 relevant lines covered (91.21%)

751.91 hits per line

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

100.0
/app/models/mediaflux/service_execute_request.rb
1
# frozen_string_literal: true
UNCOV
2
module Mediaflux
3✔
UNCOV
3
  class ServiceExecuteRequest < Request
3✔
UNCOV
4
    attr_reader :token, :service_name, :document
3✔
5

6
    # Constructor
7
    # @param session_token [String] the API token for the authenticated session
8
    # @param service_name  [String] Name of the service to run.
9
    #                               Can be any command like asset.namespace.list
10
    # @param token         [String] Optional User token for the person executing the command
11
    # @param document      [String] Optional xml document to pass on to the service.
12
    #                               Used to pass parameters to the command
UNCOV
13
    def initialize(session_token:, service_name:, token: nil, document: nil)
3✔
UNCOV
14
      super(session_token: session_token)
6✔
UNCOV
15
      @service_name = service_name
6✔
UNCOV
16
      @token = token
6✔
UNCOV
17
      @document = document
6✔
UNCOV
18
    end
19

20
    # Specifies the Mediaflux service to use when creating assets
21
    # @return [String]
UNCOV
22
    def self.service
3✔
UNCOV
23
      "service.execute"
12✔
UNCOV
24
    end
25

UNCOV
26
    private
3✔
27

UNCOV
28
      def build_http_request_body(name:)
3✔
UNCOV
29
        super do |xml|
12✔
UNCOV
30
          xml.args do
12✔
UNCOV
31
            xml.token token if token.present?
12✔
UNCOV
32
            xml.service name: service_name do
12✔
UNCOV
33
              xml << document
12✔
UNCOV
34
            end
UNCOV
35
          end
UNCOV
36
        end
UNCOV
37
      end
UNCOV
38
  end
UNCOV
39
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