Class: RunLoop::Environment

Inherits:
Object
  • Object
show all
Defined in:
lib/run_loop/environment.rb

Class Method Summary collapse

Class Method Details

.bundle_idObject

Returns the value of BUNDLE_ID



129
130
131
132
133
134
135
136
# File 'lib/run_loop/environment.rb', line 129

def self.bundle_id
  value = ENV['BUNDLE_ID']
  if !value || value == ''
    nil
  else
    value
  end
end

.ci?Boolean

Returns true if running in a CI environment

Returns:

  • (Boolean)


206
207
208
209
210
211
212
213
214
215
# File 'lib/run_loop/environment.rb', line 206

def self.ci?
  [
    self.ci_var_defined?,
    self.travis?,
    self.jenkins?,
    self.circle_ci?,
    self.teamcity?,
    self.gitlab?
  ].any?
end

.circle_ci?Boolean

Returns true if running in Circle CI

Checks the value of CIRCLECI

Returns:

  • (Boolean)


184
185
186
187
# File 'lib/run_loop/environment.rb', line 184

def self.circle_ci?
  value = ENV["CIRCLECI"]
  !!value && value != ''
end

.debug?Boolean

Returns true if debugging is enabled.

Returns:

  • (Boolean)


26
27
28
# File 'lib/run_loop/environment.rb', line 26

def self.debug?
  ENV['DEBUG'] == '1'
end

.debug_read?Boolean

Returns true if read debugging is enabled.

Returns:

  • (Boolean)


31
32
33
# File 'lib/run_loop/environment.rb', line 31

def self.debug_read?
  ENV['DEBUG_READ'] == '1'
end

.derived_dataObject

Returns the value of DERIVED_DATA which can be used to specify an alternative DerivedData directory.

The default is ~/Library/Xcode/DerivedData, but Xcode allows you to change this value.



85
86
87
88
89
90
91
92
# File 'lib/run_loop/environment.rb', line 85

def self.derived_data
  value = ENV["DERIVED_DATA"]
  if value.nil? || value == ""
    nil
  else
    File.expand_path(value)
  end
end

.developer_dirObject

Note:

Never call this directly. Always create an Xcode instance and allow it to derive the path to the Xcode toolchain.

Returns the value of DEVELOPER_DIR



156
157
158
159
160
161
162
163
# File 'lib/run_loop/environment.rb', line 156

def self.developer_dir
  value = ENV['DEVELOPER_DIR']
  if !value || value == ''
    nil
  else
    value
  end
end

.device_endpointObject

Returns the value of DEVICE_ENDPOINT



51
52
53
54
55
56
57
58
# File 'lib/run_loop/environment.rb', line 51

def self.device_endpoint
  value = ENV["DEVICE_ENDPOINT"]
  if value.nil? || value == ""
    nil
  else
    value
  end
end

.device_targetObject

Returns the value of DEVICE_TARGET



41
42
43
44
45
46
47
48
# File 'lib/run_loop/environment.rb', line 41

def self.device_target
  value = ENV["DEVICE_TARGET"]
  if value.nil? || value == ""
    nil
  else
    value
  end
end

.gitlab?Boolean

Returns true if running in Teamcity

Checks the value of GITLAB_CI

Returns:

  • (Boolean)


200
201
202
203
# File 'lib/run_loop/environment.rb', line 200

def self.gitlab?
  value = ENV["GITLAB_CI"]
  !!value && value != ''
end

.jenkins?Boolean

Returns true if running in Jenkins CI

Checks the value of JENKINS_HOME

Returns:

  • (Boolean)


168
169
170
171
# File 'lib/run_loop/environment.rb', line 168

def self.jenkins?
  value = ENV["JENKINS_HOME"]
  !!value && value != ''
end

.path_to_app_bundleObject

Returns to the path to the app bundle (simulator builds).

Both APP_BUNDLE_PATH and APP are checked and in that order.

Use of APP_BUNDLE_PATH is deprecated and will be removed.



143
144
145
146
147
148
149
150
# File 'lib/run_loop/environment.rb', line 143

def self.path_to_app_bundle
  value = ENV['APP_BUNDLE_PATH'] || ENV['APP']
  if !value || value == ''
    nil
  else
    File.expand_path(value)
  end
end

.reset_between_scenarios?Boolean

Should the app data be reset between Scenarios?

Returns:

  • (Boolean)


61
62
63
# File 'lib/run_loop/environment.rb', line 61

def self.reset_between_scenarios?
  ENV["RESET_BETWEEN_SCENARIOS"] == "1"
end

.solutionObject

Returns the value of SOLUTION which can be used to specify a Xamarin Studio .sln

This is useful if your project has multiple solutions (.sln) and Calabash cannot detect the correct one.



99
100
101
102
103
104
105
106
# File 'lib/run_loop/environment.rb', line 99

def self.solution
  value = ENV["SOLUTION"]
  if value.nil? || value == ""
    nil
  else
    File.expand_path(value)
  end
end

.teamcity?Boolean

Returns true if running in Teamcity

Checks the value of TEAMCITY_PROJECT_NAME

Returns:

  • (Boolean)


192
193
194
195
# File 'lib/run_loop/environment.rb', line 192

def self.teamcity?
  value = ENV["TEAMCITY_PROJECT_NAME"]
  !!value && value != ''
end

.trace_templateObject

Returns the value of TRACE_TEMPLATE; the Instruments template to use during testing.



110
111
112
113
114
115
116
117
# File 'lib/run_loop/environment.rb', line 110

def self.trace_template
  value = ENV['TRACE_TEMPLATE']
  if value.nil? || value == ""
    nil
  else
    File.expand_path(value)
  end
end

.travis?Boolean

Returns true if running in Travis CI

Checks the value of TRAVIS

Returns:

  • (Boolean)


176
177
178
179
# File 'lib/run_loop/environment.rb', line 176

def self.travis?
  value = ENV["TRAVIS"]
  !!value && value != ''
end

.uia_timeoutObject

Returns the value of UIA_TIMEOUT. Use this control how long to wait for instruments to launch and attach to your application.

Non-empty values are converted to a float.



123
124
125
126
# File 'lib/run_loop/environment.rb', line 123

def self.uia_timeout
  timeout = ENV['UIA_TIMEOUT']
  timeout ? timeout.to_f : nil
end

.user_home_directoryObject

Returns the user home directory



5
6
7
8
9
10
11
12
13
14
# File 'lib/run_loop/environment.rb', line 5

def self.user_home_directory
  if self.xtc?
     home = File.join("./", "tmp", "home")
     FileUtils.mkdir_p(home)
     home
  else
    require 'etc'
    Etc.getpwuid.dir
  end
end

.windows_env?Boolean

Returns true if Windows environment

Returns:

  • (Boolean)


17
18
19
20
21
22
23
# File 'lib/run_loop/environment.rb', line 17

def self.windows_env?
  if @@windows_env.nil?
    @@windows_env = Environment.host_os_is_win?
  end

  @@windows_env
end

.with_debugging(debug, &block) ⇒ Object

!@visibility private



218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
# File 'lib/run_loop/environment.rb', line 218

def self.with_debugging(debug, &block)
  if debug
    original_value = ENV['DEBUG']

    begin
      ENV['DEBUG'] = '1'
      block.call
    ensure
      ENV['DEBUG'] = original_value
    end

  else
    block.call
  end
end

.xcodeprojObject

Returns the value of XCODEPROJ which can be used to specify an Xcode project directory (my.xcodeproj).

This is useful if your project has multiple xcodeproj directories.

Most users should not set this variable.



71
72
73
74
75
76
77
78
# File 'lib/run_loop/environment.rb', line 71

def self.xcodeproj
  value = ENV["XCODEPROJ"]
  if value.nil? || value == ""
    nil
  else
    File.expand_path(value)
  end
end

.xtc?Boolean

Returns true if we are running on the XTC

Returns:

  • (Boolean)


36
37
38
# File 'lib/run_loop/environment.rb', line 36

def self.xtc?
  ENV['XAMARIN_TEST_CLOUD'] == '1'
end