Module: Calabash::Cucumber::SimulatorHelper

Defined in:
lib/calabash-cucumber/launch/simulator_helper.rb

Defined Under Namespace

Classes: TimeoutErr

Constant Summary collapse

DERIVED_DATA =
File.expand_path("~/Library/Developer/Xcode/DerivedData")
DEFAULT_DERIVED_DATA_INFO =
File.expand_path("#{DERIVED_DATA}/*/info.plist")
DEFAULT_SIM_WAIT =
30
DEFAULT_SIM_RETRY =
2
FULL_CONSOLE_OUTPUT =

Load environment variable for showing full console output If not env var set then we use true; i.e. output to console in full

ENV['CALABASH_FULL_CONSOLE_OUTPUT'] == '1' ? true : false

Class Method Summary collapse

Class Method Details

.app_bundle_or_raise(path) ⇒ Object



120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
# File 'lib/calabash-cucumber/launch/simulator_helper.rb', line 120

def self.app_bundle_or_raise(path)
  bundle_path = nil
  path = File.expand_path(path) if path

  if path and not File.directory?(path)
    puts "Unable to find .app bundle at #{path}. It should be an .app directory."
    dd_dir = derived_data_dir_for_project
    app_bundles = Dir.glob(File.join(dd_dir, "Build", "Products", "*", "*.app"))
    msg = "Try setting APP_BUNDLE_PATH in features/support/01_launch.rb to one of:\n\n"
    msg << app_bundles.join("\n")
    raise msg
  elsif path
    bundle_path = path
  else
    dd_dir = derived_data_dir_for_project
    sim_dirs = Dir.glob(File.join(dd_dir, "Build", "Products", "*-iphonesimulator", "*.app"))
    if sim_dirs.empty?
      msg = ["Unable to auto detect APP_BUNDLE_PATH."]
      msg << "Have you built your app for simulator?."
      msg << "Searched dir: #{dd_dir}/Build/Products"
      msg << "Please build your app from Xcode"
      msg << "You should build the -cal target."
      msg << ""
      msg << "Alternatively, specify APP_BUNDLE_PATH in features/support/01_launch.rb"
      msg << "This should point to the location of your built app linked with calabash.\n"
      raise msg.join("\n")
    end
    preferred_dir = find_preferred_dir(sim_dirs)
    if preferred_dir.nil?
      msg = ["Error... Unable to find APP_BUNDLE_PATH."]
      msg << "Cannot find a built app that is linked with calabash.framework"
      msg << "Please build your app from Xcode"
      msg << "You should build your calabash target."
      msg << ""
      msg << "Alternatively, specify APP_BUNDLE_PATH in features/support/01_launch.rb"
      msg << "This should point to the location of your built app linked with calabash.\n"
      raise msg.join("\n")
    end
    puts("-"*37)
    puts "Auto detected APP_BUNDLE_PATH:\n\n"

    puts "APP_BUNDLE_PATH=#{preferred_dir || sim_dirs[0]}\n\n"
    puts "Please verify!"
    puts "If this is wrong please set it as APP_BUNDLE_PATH in features/support/01_launch.rb\n"
    puts("-"*37)
    bundle_path = sim_dirs[0]
  end
  bundle_path
end

.derived_data_dir_for_projectObject



39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
# File 'lib/calabash-cucumber/launch/simulator_helper.rb', line 39

def self.derived_data_dir_for_project
  dir = project_dir
  xcode_workspace_name = ''
  info_plist = Dir.glob(DEFAULT_DERIVED_DATA_INFO).find { |plist_file|
    begin
      plist = CFPropertyList::List.new(:file => plist_file)
      hash = CFPropertyList.native_types(plist.value)
      ws_dir = File.dirname(hash['WorkspacePath']).downcase
      p_dir = dir.downcase
      if (p_dir.include? ws_dir)
        xcode_workspace_name = ws_dir.split('/').last
      end
      ws_dir == p_dir
    rescue
      false
    end
  }

  if not info_plist.nil?
    return File.dirname(info_plist)
  else
    res = Dir.glob("#{dir}/*.xcodeproj")
    if res.empty?
      raise "Unable to find *.xcodeproj in #{dir}"
    elsif res.count > 1
      raise "Unable to found several *.xcodeproj in #{dir}: #{res}"
    end

    xcode_proj_name = res.first.split(".xcodeproj")[0]

    xcode_proj_name = File.basename(xcode_proj_name)

    build_dirs = Dir.glob("#{DERIVED_DATA}/*").find_all do |xc_proj|
      File.basename(xc_proj).start_with?(xcode_proj_name)
    end

    if (build_dirs.count == 0 && !xcode_workspace_name.empty?)
      # check for directory named "workspace-{deriveddirectoryrandomcharacters}"
      build_dirs = Dir.glob("#{DERIVED_DATA}/*").find_all do |xc_proj|
        File.basename(xc_proj).downcase.start_with?(xcode_workspace_name)
      end
    end

    if (build_dirs.count == 0)
      msg = ["Unable to find your built app."]
      msg << "This means that Calabash can't automatically launch iOS simulator."
      msg << "Searched in Xcode 4.x default: #{DEFAULT_DERIVED_DATA_INFO}"
      msg << ""
      msg << "To fix there are a couple of options:\n"
      msg << "Option 1) Make sure you are running this command from your project directory, "
      msg << "i.e., the directory containing your .xcodeproj file."
      msg << "In Xcode, build your calabash target for simulator."
      msg << "Check that your app can be found in\n #{File.expand_path("~/Library/Developer/Xcode/DerivedData")}"
      msg << "\n\nOption 2). In features/support/01_launch.rb set APP_BUNDLE_PATH to"
      msg << "the path where Xcode has built your Calabash target."
      msg << "Alternatively you can use the environment variable APP_BUNDLE_PATH.\n"
      raise msg.join("\n")

    elsif (build_dirs.count > 1)
      msg = ["Unable to auto detect APP_BUNDLE_PATH."]
      msg << "You have several projects with the same name: #{xcode_proj_name} in #{DERIVED_DATA}:\n"
      msg << build_dirs.join("\n")

      msg << "\nThis means that Calabash can't automatically launch iOS simulator."
      msg << "Searched in Xcode 4.x default: #{DEFAULT_DERIVED_DATA_INFO}"
      msg << "\nIn features/support/01_launch.rb set APP_BUNDLE_PATH to"
      msg << "the path where Xcode has built your Calabash target."
      msg << "Alternatively you can use the environment variable APP_BUNDLE_PATH.\n"
      raise msg.join("\n")
    else
      puts "Found potential build dir: #{build_dirs.first}"
      puts "Checking..."
      return build_dirs.first
    end
  end
end

.ensure_connectivity(app_bundle_path, sdk, version, args = nil) ⇒ Object



177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
# File 'lib/calabash-cucumber/launch/simulator_helper.rb', line 177

def self.ensure_connectivity(app_bundle_path, sdk, version, args = nil)
  begin
    max_retry_count = (ENV['MAX_CONNECT_RETRY'] || DEFAULT_SIM_RETRY).to_i
    timeout = (ENV['CONNECT_TIMEOUT'] || DEFAULT_SIM_WAIT).to_i
    retry_count = 0
    connected = false

    if FULL_CONSOLE_OUTPUT
      puts "Waiting at most #{timeout} seconds for simulator (CONNECT_TIMEOUT)"
      puts "Retrying at most #{max_retry_count} times (MAX_CONNECT_RETRY)"
    end

    until connected do
      raise "MAX_RETRIES" if retry_count == max_retry_count
      retry_count += 1
      if FULL_CONSOLE_OUTPUT
        puts "(#{retry_count}.) Start Simulator #{sdk}, #{version}, for #{app_bundle_path}"
      end
      begin
        Timeout::timeout(timeout, TimeoutErr) do
          simulator = launch(app_bundle_path, sdk, version, args)
          until connected
            begin
              connected = (ping_app == '405')
              if connected
                server_version = get_version
                if server_version
                  if FULL_CONSOLE_OUTPUT
                    p server_version
                  end
                  unless version_check(server_version)
                    msgs = ["You're running an older version of Calabash server with a newer client",
                            "Client:#{Calabash::Cucumber::VERSION}",
                            "Server:#{server_version}",
                            "Minimum server version #{Calabash::Cucumber::FRAMEWORK_VERSION}",
                            "Update recommended:",
                            "https://github.com/calabash/calabash-ios/wiki/B1-Updating-your-Calabash-iOS-version"
                    ]
                    raise msgs.join("\n")
                  end
                else
                  connected = false
                end
              end
            rescue Exception => e

            ensure
              sleep 1 unless connected
            end
          end
        end
      rescue TimeoutErr => e
        puts 'Timed out...'
      end
    end
  rescue RuntimeError => e
    p e
    msg = "Unable to make connection to Calabash Server at #{ENV['DEVICE_ENDPOINT']|| "http://localhost:37265/"}\n"
    msg << "Make sure you've' linked correctly with calabash.framework and set Other Linker Flags.\n"
    msg << "Make sure you don't have a firewall blocking traffic to #{ENV['DEVICE_ENDPOINT']|| "http://localhost:37265/"}.\n"
    raise msg
  end
end

.find_preferred_dir(sim_dirs) ⇒ Object



170
171
172
173
174
175
# File 'lib/calabash-cucumber/launch/simulator_helper.rb', line 170

def self.find_preferred_dir(sim_dirs)
  sim_dirs.find do |d|
    out = `otool "#{File.expand_path(d)}"/* -o 2> /dev/null | grep CalabashServer`
    /CalabashServer/.match(out)
  end
end

.get_versionObject



266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
# File 'lib/calabash-cucumber/launch/simulator_helper.rb', line 266

def self.get_version
  endpoint = ENV['DEVICE_ENDPOINT']|| "http://localhost:37265"
  endpoint += "/" unless endpoint.end_with? "/"
  url = URI.parse("#{endpoint}version")

  if FULL_CONSOLE_OUTPUT
    puts "Fetch version #{url}..."
  end
  begin
    body = Net::HTTP.get_response(url).body
    res = JSON.parse(body)
    if res['iOS_version']
      @ios_version = res['iOS_version']
    end
    res
  rescue
    nil
  end
end

.ios_major_versionObject



293
294
295
296
297
298
# File 'lib/calabash-cucumber/launch/simulator_helper.rb', line 293

def self.ios_major_version
  v = ios_version
  if v
    v.split(".")[0]
  end
end

.ios_versionObject



286
287
288
289
290
291
# File 'lib/calabash-cucumber/launch/simulator_helper.rb', line 286

def self.ios_version
  unless @ios_version
    get_version
  end
  @ios_version
end

.launch(app_bundle_path, sdk, version, args = nil) ⇒ Object



242
243
244
245
246
# File 'lib/calabash-cucumber/launch/simulator_helper.rb', line 242

def self.launch(app_bundle_path, sdk, version, args = nil)
  simulator = SimLauncher::Simulator.new
  simulator.launch_ios_app(app_bundle_path, sdk, version)
  simulator
end

.ping_appObject



248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
# File 'lib/calabash-cucumber/launch/simulator_helper.rb', line 248

def self.ping_app
  url = URI.parse(ENV['DEVICE_ENDPOINT']|| "http://localhost:37265/")
  if FULL_CONSOLE_OUTPUT
     puts "Ping #{url}..."   
  end
  http = Net::HTTP.new(url.host, url.port)
  res = http.start do |sess|
    sess.request Net::HTTP::Get.new url.path
  end
  status = res.code
  begin
    http.finish if http and http.started?
  rescue

  end
  status
end

.project_dirObject



116
117
118
# File 'lib/calabash-cucumber/launch/simulator_helper.rb', line 116

def self.project_dir
  File.expand_path(ENV['PROJECT_DIR'] || Dir.pwd)
end

.relaunch(path, sdk = nil, version = 'iphone', args = nil) ⇒ Object



26
27
28
29
30
31
# File 'lib/calabash-cucumber/launch/simulator_helper.rb', line 26

def self.relaunch(path, sdk = nil, version = 'iphone', args = nil)

  app_bundle_path = app_bundle_or_raise(path)
  ensure_connectivity(app_bundle_path, sdk, version, args)

end

.stopObject



33
34
35
36
# File 'lib/calabash-cucumber/launch/simulator_helper.rb', line 33

def self.stop
  simulator = SimLauncher::Simulator.new
  simulator.quit_simulator
end

.version_check(version) ⇒ Object



300
301
302
303
# File 'lib/calabash-cucumber/launch/simulator_helper.rb', line 300

def self.version_check(version)
  server_version = version["version"]
  Calabash::Cucumber::FRAMEWORK_VERSION == server_version
end