Class: Fastlane::Actions::TestmunkAction

Inherits:
Fastlane::Action show all
Defined in:
lib/fastlane/actions/testmunk.rb

Class Method Summary collapse

Methods inherited from Fastlane::Action

action_name, details, output, sh

Class Method Details

.authorObject



63
64
65
# File 'lib/fastlane/actions/testmunk.rb', line 63

def self.author
  "mposchen"
end

.available_optionsObject



34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
# File 'lib/fastlane/actions/testmunk.rb', line 34

def self.available_options
  [
    FastlaneCore::ConfigItem.new(key: :ipa,
                                 env_name: "TESTMUNK_IPA",
                                 description: "Path to IPA",
                                 verify_block: Proc.new do |value|
                                  raise "Please pass to existing ipa" unless File.exists?value
                                 end),
    FastlaneCore::ConfigItem.new(key: :email,
                                 env_name: "TESTMUNK_EMAIL",
                                 description: "Your email address",
                                 verify_block: Proc.new do |value|
                                  raise "Please pass your Testmunk email address using `ENV['TESTMUNK_EMAIL'] = 'value'`" unless value
                                 end),
    FastlaneCore::ConfigItem.new(key: :api,
                                 env_name: "TESTMUNK_API",
                                 description: "Testmunk API Key",
                                 verify_block: Proc.new do |value|
                                    raise "Please pass your Testmunk API Key using `ENV['TESTMUNK_API'] = 'value'`" unless value
                                 end),
    FastlaneCore::ConfigItem.new(key: :app,
                                 env_name: "TESTMUNK_APP",
                                 description: "Testmunk App Name",
                                 verify_block: Proc.new do |value|
                                  raise "Please pass your Testmunk app name using `ENV['TESTMUNK_APP'] = 'value'`" unless value
                                 end),
  ]
end

.descriptionObject



30
31
32
# File 'lib/fastlane/actions/testmunk.rb', line 30

def self.description
  "Run tests on real devices using Testmunk"
end

.is_supported?(platform) ⇒ Boolean

Returns:

  • (Boolean)


67
68
69
# File 'lib/fastlane/actions/testmunk.rb', line 67

def self.is_supported?(platform)
  platform == :ios
end

.run(config) ⇒ Object



15
16
17
18
19
20
21
22
23
24
25
26
27
28
# File 'lib/fastlane/actions/testmunk.rb', line 15

def self.run(config)
  Helper.log.info 'Testmunk: Uploading the .ipa and starting your tests'.green

  response = system("#{"curl -H 'Accept: application/vnd.testmunk.v1+json'" +
      " -F 'file=@#{config[:ipa]}' -F 'autoStart=true'" +
      " -F 'email=#{config[:email]}'" +
      " https://#{config[:api]}@api.testmunk.com/apps/#{config[:app]}/testruns"}")

  if response
    Helper.log.info 'Your tests are being executed right now. Please wait for the mail with results and decide if you want to continue.'.green
  else
    raise 'Something went wrong while uploading your app to Testmunk'.red
  end
end