UrgentcareCLI 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (308) hide show
  1. checksums.yaml +4 -4
  2. data/Gemfile +3 -0
  3. data/Gemfile.lock +60 -25
  4. data/Notes +1 -1
  5. data/README.md +5 -5
  6. data/Rakefile +2 -0
  7. data/UrgentCare.gemspec +3 -3
  8. data/background.jpg +0 -0
  9. data/lib/UrgentCare.rb +3 -0
  10. data/lib/UrgentCare/CLI.rb +6 -2
  11. data/lib/UrgentCare/version.rb +1 -1
  12. data/lib/Urgentcare/Scraper.rb +65 -23
  13. data/node_modules/.bin/rimraf +1 -0
  14. data/node_modules/.package-lock.json +250 -0
  15. data/node_modules/balanced-match/.github/FUNDING.yml +2 -0
  16. data/node_modules/balanced-match/LICENSE.md +21 -0
  17. data/node_modules/balanced-match/README.md +97 -0
  18. data/node_modules/balanced-match/index.js +62 -0
  19. data/node_modules/balanced-match/package.json +48 -0
  20. data/node_modules/brace-expansion/LICENSE +21 -0
  21. data/node_modules/brace-expansion/README.md +129 -0
  22. data/node_modules/brace-expansion/index.js +201 -0
  23. data/node_modules/brace-expansion/package.json +47 -0
  24. data/node_modules/concat-map/.travis.yml +4 -0
  25. data/node_modules/concat-map/LICENSE +18 -0
  26. data/node_modules/concat-map/README.markdown +62 -0
  27. data/node_modules/concat-map/example/map.js +6 -0
  28. data/node_modules/concat-map/index.js +13 -0
  29. data/node_modules/concat-map/package.json +43 -0
  30. data/node_modules/concat-map/test/map.js +39 -0
  31. data/node_modules/core-util-is/LICENSE +19 -0
  32. data/node_modules/core-util-is/README.md +3 -0
  33. data/node_modules/core-util-is/float.patch +604 -0
  34. data/node_modules/core-util-is/lib/util.js +107 -0
  35. data/node_modules/core-util-is/package.json +32 -0
  36. data/node_modules/core-util-is/test.js +68 -0
  37. data/node_modules/fs.realpath/LICENSE +43 -0
  38. data/node_modules/fs.realpath/README.md +33 -0
  39. data/node_modules/fs.realpath/index.js +66 -0
  40. data/node_modules/fs.realpath/old.js +303 -0
  41. data/node_modules/fs.realpath/package.json +26 -0
  42. data/node_modules/glob/LICENSE +21 -0
  43. data/node_modules/glob/README.md +375 -0
  44. data/node_modules/glob/changelog.md +67 -0
  45. data/node_modules/glob/common.js +234 -0
  46. data/node_modules/glob/glob.js +788 -0
  47. data/node_modules/glob/package.json +51 -0
  48. data/node_modules/glob/sync.js +484 -0
  49. data/node_modules/immediate/LICENSE.txt +20 -0
  50. data/node_modules/immediate/README.md +93 -0
  51. data/node_modules/immediate/dist/immediate.js +75 -0
  52. data/node_modules/immediate/dist/immediate.min.js +1 -0
  53. data/node_modules/immediate/lib/browser.js +69 -0
  54. data/node_modules/immediate/lib/index.js +73 -0
  55. data/node_modules/immediate/package.json +42 -0
  56. data/node_modules/inflight/LICENSE +15 -0
  57. data/node_modules/inflight/README.md +37 -0
  58. data/node_modules/inflight/inflight.js +54 -0
  59. data/node_modules/inflight/package.json +29 -0
  60. data/node_modules/inherits/LICENSE +16 -0
  61. data/node_modules/inherits/README.md +42 -0
  62. data/node_modules/inherits/inherits.js +9 -0
  63. data/node_modules/inherits/inherits_browser.js +27 -0
  64. data/node_modules/inherits/package.json +29 -0
  65. data/node_modules/isarray/.npmignore +1 -0
  66. data/node_modules/isarray/.travis.yml +4 -0
  67. data/node_modules/isarray/Makefile +6 -0
  68. data/node_modules/isarray/README.md +60 -0
  69. data/node_modules/isarray/component.json +19 -0
  70. data/node_modules/isarray/index.js +5 -0
  71. data/node_modules/isarray/package.json +45 -0
  72. data/node_modules/isarray/test.js +20 -0
  73. data/node_modules/jszip/.codeclimate.yml +16 -0
  74. data/node_modules/jszip/.editorconfig +8 -0
  75. data/node_modules/jszip/.jshintignore +1 -0
  76. data/node_modules/jszip/.jshintrc +21 -0
  77. data/node_modules/jszip/.travis.yml +17 -0
  78. data/node_modules/jszip/CHANGES.md +163 -0
  79. data/node_modules/jszip/LICENSE.markdown +651 -0
  80. data/node_modules/jszip/README.markdown +35 -0
  81. data/node_modules/jszip/dist/jszip.js +30 -0
  82. data/node_modules/jszip/dist/jszip.min.js +13 -0
  83. data/node_modules/jszip/index.d.ts +270 -0
  84. data/node_modules/jszip/lib/base64.js +106 -0
  85. data/node_modules/jszip/lib/compressedObject.js +74 -0
  86. data/node_modules/jszip/lib/compressions.js +14 -0
  87. data/node_modules/jszip/lib/crc32.js +77 -0
  88. data/node_modules/jszip/lib/defaults.js +11 -0
  89. data/node_modules/jszip/lib/external.js +19 -0
  90. data/node_modules/jszip/lib/flate.js +85 -0
  91. data/node_modules/jszip/lib/generate/ZipFileWorker.js +540 -0
  92. data/node_modules/jszip/lib/generate/index.js +57 -0
  93. data/node_modules/jszip/lib/index.js +52 -0
  94. data/node_modules/jszip/lib/license_header.js +11 -0
  95. data/node_modules/jszip/lib/load.js +81 -0
  96. data/node_modules/jszip/lib/nodejs/NodejsStreamInputAdapter.js +74 -0
  97. data/node_modules/jszip/lib/nodejs/NodejsStreamOutputAdapter.js +42 -0
  98. data/node_modules/jszip/lib/nodejsUtils.js +57 -0
  99. data/node_modules/jszip/lib/object.js +389 -0
  100. data/node_modules/jszip/lib/readable-stream-browser.js +9 -0
  101. data/node_modules/jszip/lib/reader/ArrayReader.js +57 -0
  102. data/node_modules/jszip/lib/reader/DataReader.js +116 -0
  103. data/node_modules/jszip/lib/reader/NodeBufferReader.js +19 -0
  104. data/node_modules/jszip/lib/reader/StringReader.js +38 -0
  105. data/node_modules/jszip/lib/reader/Uint8ArrayReader.js +22 -0
  106. data/node_modules/jszip/lib/reader/readerFor.js +28 -0
  107. data/node_modules/jszip/lib/signature.js +7 -0
  108. data/node_modules/jszip/lib/stream/ConvertWorker.js +26 -0
  109. data/node_modules/jszip/lib/stream/Crc32Probe.js +24 -0
  110. data/node_modules/jszip/lib/stream/DataLengthProbe.js +29 -0
  111. data/node_modules/jszip/lib/stream/DataWorker.js +116 -0
  112. data/node_modules/jszip/lib/stream/GenericWorker.js +263 -0
  113. data/node_modules/jszip/lib/stream/StreamHelper.js +212 -0
  114. data/node_modules/jszip/lib/support.js +38 -0
  115. data/node_modules/jszip/lib/utf8.js +275 -0
  116. data/node_modules/jszip/lib/utils.js +476 -0
  117. data/node_modules/jszip/lib/zipEntries.js +262 -0
  118. data/node_modules/jszip/lib/zipEntry.js +294 -0
  119. data/node_modules/jszip/lib/zipObject.js +133 -0
  120. data/node_modules/jszip/package.json +63 -0
  121. data/node_modules/jszip/vendor/FileSaver.js +247 -0
  122. data/node_modules/lie/README.md +62 -0
  123. data/node_modules/lie/dist/lie.js +350 -0
  124. data/node_modules/lie/dist/lie.min.js +1 -0
  125. data/node_modules/lie/dist/lie.polyfill.js +358 -0
  126. data/node_modules/lie/dist/lie.polyfill.min.js +1 -0
  127. data/node_modules/lie/lib/browser.js +273 -0
  128. data/node_modules/lie/lib/index.js +298 -0
  129. data/node_modules/lie/license.md +7 -0
  130. data/node_modules/lie/lie.d.ts +244 -0
  131. data/node_modules/lie/package.json +69 -0
  132. data/node_modules/lie/polyfill.js +4 -0
  133. data/node_modules/minimatch/LICENSE +15 -0
  134. data/node_modules/minimatch/README.md +209 -0
  135. data/node_modules/minimatch/minimatch.js +923 -0
  136. data/node_modules/minimatch/package.json +30 -0
  137. data/node_modules/once/LICENSE +15 -0
  138. data/node_modules/once/README.md +79 -0
  139. data/node_modules/once/once.js +42 -0
  140. data/node_modules/once/package.json +33 -0
  141. data/node_modules/pako/CHANGELOG.md +164 -0
  142. data/node_modules/pako/LICENSE +21 -0
  143. data/node_modules/pako/README.md +191 -0
  144. data/node_modules/pako/dist/pako.js +6818 -0
  145. data/node_modules/pako/dist/pako.min.js +1 -0
  146. data/node_modules/pako/dist/pako_deflate.js +3997 -0
  147. data/node_modules/pako/dist/pako_deflate.min.js +1 -0
  148. data/node_modules/pako/dist/pako_inflate.js +3300 -0
  149. data/node_modules/pako/dist/pako_inflate.min.js +1 -0
  150. data/node_modules/pako/index.js +14 -0
  151. data/node_modules/pako/lib/deflate.js +400 -0
  152. data/node_modules/pako/lib/inflate.js +423 -0
  153. data/node_modules/pako/lib/utils/common.js +105 -0
  154. data/node_modules/pako/lib/utils/strings.js +187 -0
  155. data/node_modules/pako/lib/zlib/README +59 -0
  156. data/node_modules/pako/lib/zlib/adler32.js +51 -0
  157. data/node_modules/pako/lib/zlib/constants.js +68 -0
  158. data/node_modules/pako/lib/zlib/crc32.js +59 -0
  159. data/node_modules/pako/lib/zlib/deflate.js +1874 -0
  160. data/node_modules/pako/lib/zlib/gzheader.js +58 -0
  161. data/node_modules/pako/lib/zlib/inffast.js +345 -0
  162. data/node_modules/pako/lib/zlib/inflate.js +1556 -0
  163. data/node_modules/pako/lib/zlib/inftrees.js +343 -0
  164. data/node_modules/pako/lib/zlib/messages.js +32 -0
  165. data/node_modules/pako/lib/zlib/trees.js +1222 -0
  166. data/node_modules/pako/lib/zlib/zstream.js +47 -0
  167. data/node_modules/pako/package.json +44 -0
  168. data/node_modules/path-is-absolute/index.js +20 -0
  169. data/node_modules/path-is-absolute/license +21 -0
  170. data/node_modules/path-is-absolute/package.json +43 -0
  171. data/node_modules/path-is-absolute/readme.md +59 -0
  172. data/node_modules/process-nextick-args/index.js +45 -0
  173. data/node_modules/process-nextick-args/license.md +19 -0
  174. data/node_modules/process-nextick-args/package.json +25 -0
  175. data/node_modules/process-nextick-args/readme.md +18 -0
  176. data/node_modules/readable-stream/.travis.yml +34 -0
  177. data/node_modules/readable-stream/CONTRIBUTING.md +38 -0
  178. data/node_modules/readable-stream/GOVERNANCE.md +136 -0
  179. data/node_modules/readable-stream/LICENSE +47 -0
  180. data/node_modules/readable-stream/README.md +58 -0
  181. data/node_modules/readable-stream/doc/wg-meetings/2015-01-30.md +60 -0
  182. data/node_modules/readable-stream/duplex-browser.js +1 -0
  183. data/node_modules/readable-stream/duplex.js +1 -0
  184. data/node_modules/readable-stream/lib/_stream_duplex.js +131 -0
  185. data/node_modules/readable-stream/lib/_stream_passthrough.js +47 -0
  186. data/node_modules/readable-stream/lib/_stream_readable.js +1019 -0
  187. data/node_modules/readable-stream/lib/_stream_transform.js +214 -0
  188. data/node_modules/readable-stream/lib/_stream_writable.js +687 -0
  189. data/node_modules/readable-stream/lib/internal/streams/BufferList.js +79 -0
  190. data/node_modules/readable-stream/lib/internal/streams/destroy.js +74 -0
  191. data/node_modules/readable-stream/lib/internal/streams/stream-browser.js +1 -0
  192. data/node_modules/readable-stream/lib/internal/streams/stream.js +1 -0
  193. data/node_modules/readable-stream/package.json +52 -0
  194. data/node_modules/readable-stream/passthrough.js +1 -0
  195. data/node_modules/readable-stream/readable-browser.js +7 -0
  196. data/node_modules/readable-stream/readable.js +19 -0
  197. data/node_modules/readable-stream/transform.js +1 -0
  198. data/node_modules/readable-stream/writable-browser.js +1 -0
  199. data/node_modules/readable-stream/writable.js +8 -0
  200. data/node_modules/rimraf/LICENSE +15 -0
  201. data/node_modules/rimraf/README.md +101 -0
  202. data/node_modules/rimraf/bin.js +50 -0
  203. data/node_modules/rimraf/package.json +29 -0
  204. data/node_modules/rimraf/rimraf.js +372 -0
  205. data/node_modules/safe-buffer/LICENSE +21 -0
  206. data/node_modules/safe-buffer/README.md +584 -0
  207. data/node_modules/safe-buffer/index.d.ts +187 -0
  208. data/node_modules/safe-buffer/index.js +62 -0
  209. data/node_modules/safe-buffer/package.json +37 -0
  210. data/node_modules/selenium-webdriver/CHANGES.md +1114 -0
  211. data/node_modules/selenium-webdriver/LICENSE +202 -0
  212. data/node_modules/selenium-webdriver/NOTICE +2 -0
  213. data/node_modules/selenium-webdriver/README.md +229 -0
  214. data/node_modules/selenium-webdriver/chrome.js +295 -0
  215. data/node_modules/selenium-webdriver/chromium.js +829 -0
  216. data/node_modules/selenium-webdriver/devtools/CDPConnection.js +35 -0
  217. data/node_modules/selenium-webdriver/edge.js +224 -0
  218. data/node_modules/selenium-webdriver/example/chrome_android.js +45 -0
  219. data/node_modules/selenium-webdriver/example/chrome_mobile_emulation.js +46 -0
  220. data/node_modules/selenium-webdriver/example/firefox_channels.js +84 -0
  221. data/node_modules/selenium-webdriver/example/google_search.js +50 -0
  222. data/node_modules/selenium-webdriver/example/google_search_test.js +70 -0
  223. data/node_modules/selenium-webdriver/example/headless.js +63 -0
  224. data/node_modules/selenium-webdriver/example/logging.js +64 -0
  225. data/node_modules/selenium-webdriver/firefox.js +789 -0
  226. data/node_modules/selenium-webdriver/http/index.js +324 -0
  227. data/node_modules/selenium-webdriver/http/util.js +172 -0
  228. data/node_modules/selenium-webdriver/ie.js +503 -0
  229. data/node_modules/selenium-webdriver/index.js +825 -0
  230. data/node_modules/selenium-webdriver/io/exec.js +162 -0
  231. data/node_modules/selenium-webdriver/io/index.js +348 -0
  232. data/node_modules/selenium-webdriver/io/zip.js +223 -0
  233. data/node_modules/selenium-webdriver/lib/atoms/find-elements.js +123 -0
  234. data/node_modules/selenium-webdriver/lib/atoms/get-attribute.js +101 -0
  235. data/node_modules/selenium-webdriver/lib/atoms/is-displayed.js +101 -0
  236. data/node_modules/selenium-webdriver/lib/atoms/mutation-listener.js +55 -0
  237. data/node_modules/selenium-webdriver/lib/by.js +415 -0
  238. data/node_modules/selenium-webdriver/lib/capabilities.js +553 -0
  239. data/node_modules/selenium-webdriver/lib/command.js +206 -0
  240. data/node_modules/selenium-webdriver/lib/error.js +605 -0
  241. data/node_modules/selenium-webdriver/lib/http.js +704 -0
  242. data/node_modules/selenium-webdriver/lib/input.js +946 -0
  243. data/node_modules/selenium-webdriver/lib/logging.js +661 -0
  244. data/node_modules/selenium-webdriver/lib/promise.js +285 -0
  245. data/node_modules/selenium-webdriver/lib/proxy.js +212 -0
  246. data/node_modules/selenium-webdriver/lib/session.js +77 -0
  247. data/node_modules/selenium-webdriver/lib/symbols.js +37 -0
  248. data/node_modules/selenium-webdriver/lib/until.js +429 -0
  249. data/node_modules/selenium-webdriver/lib/webdriver.js +2919 -0
  250. data/node_modules/selenium-webdriver/net/index.js +107 -0
  251. data/node_modules/selenium-webdriver/net/portprober.js +75 -0
  252. data/node_modules/selenium-webdriver/opera.js +406 -0
  253. data/node_modules/selenium-webdriver/package.json +54 -0
  254. data/node_modules/selenium-webdriver/proxy.js +32 -0
  255. data/node_modules/selenium-webdriver/remote/index.js +624 -0
  256. data/node_modules/selenium-webdriver/safari.js +168 -0
  257. data/node_modules/selenium-webdriver/testing/index.js +504 -0
  258. data/node_modules/set-immediate-shim/index.js +7 -0
  259. data/node_modules/set-immediate-shim/package.json +34 -0
  260. data/node_modules/set-immediate-shim/readme.md +31 -0
  261. data/node_modules/string_decoder/.travis.yml +50 -0
  262. data/node_modules/string_decoder/LICENSE +48 -0
  263. data/node_modules/string_decoder/README.md +47 -0
  264. data/node_modules/string_decoder/lib/string_decoder.js +296 -0
  265. data/node_modules/string_decoder/package.json +31 -0
  266. data/node_modules/tmp/CHANGELOG.md +288 -0
  267. data/node_modules/tmp/LICENSE +21 -0
  268. data/node_modules/tmp/README.md +365 -0
  269. data/node_modules/tmp/lib/tmp.js +780 -0
  270. data/node_modules/tmp/node_modules/.bin/rimraf +1 -0
  271. data/node_modules/tmp/node_modules/rimraf/CHANGELOG.md +65 -0
  272. data/node_modules/tmp/node_modules/rimraf/LICENSE +15 -0
  273. data/node_modules/tmp/node_modules/rimraf/README.md +101 -0
  274. data/node_modules/tmp/node_modules/rimraf/bin.js +68 -0
  275. data/node_modules/tmp/node_modules/rimraf/package.json +32 -0
  276. data/node_modules/tmp/node_modules/rimraf/rimraf.js +360 -0
  277. data/node_modules/tmp/package.json +58 -0
  278. data/node_modules/util-deprecate/History.md +16 -0
  279. data/node_modules/util-deprecate/LICENSE +24 -0
  280. data/node_modules/util-deprecate/README.md +53 -0
  281. data/node_modules/util-deprecate/browser.js +67 -0
  282. data/node_modules/util-deprecate/node.js +6 -0
  283. data/node_modules/util-deprecate/package.json +27 -0
  284. data/node_modules/wrappy/LICENSE +15 -0
  285. data/node_modules/wrappy/README.md +36 -0
  286. data/node_modules/wrappy/package.json +29 -0
  287. data/node_modules/wrappy/wrappy.js +33 -0
  288. data/node_modules/ws/LICENSE +21 -0
  289. data/node_modules/ws/README.md +496 -0
  290. data/node_modules/ws/browser.js +8 -0
  291. data/node_modules/ws/index.js +10 -0
  292. data/node_modules/ws/lib/buffer-util.js +129 -0
  293. data/node_modules/ws/lib/constants.js +10 -0
  294. data/node_modules/ws/lib/event-target.js +184 -0
  295. data/node_modules/ws/lib/extension.js +223 -0
  296. data/node_modules/ws/lib/limiter.js +55 -0
  297. data/node_modules/ws/lib/permessage-deflate.js +517 -0
  298. data/node_modules/ws/lib/receiver.js +507 -0
  299. data/node_modules/ws/lib/sender.js +405 -0
  300. data/node_modules/ws/lib/stream.js +165 -0
  301. data/node_modules/ws/lib/validation.js +104 -0
  302. data/node_modules/ws/lib/websocket-server.js +418 -0
  303. data/node_modules/ws/lib/websocket.js +942 -0
  304. data/node_modules/ws/package.json +56 -0
  305. data/package-lock.json +458 -0
  306. data/package.json +5 -0
  307. data/selenium.log +1 -0
  308. metadata +314 -19
@@ -0,0 +1,54 @@
1
+ {
2
+ "name": "selenium-webdriver",
3
+ "version": "4.0.0-beta.3",
4
+ "description": "The official WebDriver JavaScript bindings from the Selenium project",
5
+ "license": "Apache-2.0",
6
+ "keywords": [
7
+ "automation",
8
+ "selenium",
9
+ "testing",
10
+ "webdriver",
11
+ "webdriverjs"
12
+ ],
13
+ "homepage": "https://github.com/SeleniumHQ/selenium/tree/trunk/javascript/node/selenium-webdriver#readme",
14
+ "bugs": {
15
+ "url": "https://github.com/SeleniumHQ/selenium/issues"
16
+ },
17
+ "main": "./index",
18
+ "repository": {
19
+ "type": "git",
20
+ "url": "https://github.com/SeleniumHQ/selenium.git"
21
+ },
22
+ "engines": {
23
+ "node": ">= 10.15.0"
24
+ },
25
+ "dependencies": {
26
+ "jszip": "^3.5.0",
27
+ "rimraf": "^2.7.1",
28
+ "tmp": "^0.2.1",
29
+ "ws": "^7.3.1"
30
+ },
31
+ "devDependencies": {
32
+ "eslint": "^7.15.0",
33
+ "eslint-config-prettier": "^7.0.0",
34
+ "eslint-plugin-no-only-tests": "^2.4.0",
35
+ "eslint-plugin-node": "^11.1.0",
36
+ "eslint-plugin-prettier": "^3.2.0",
37
+ "express": "^4.17.1",
38
+ "jasmine": "^3.6.1",
39
+ "mocha": "^8.1.0",
40
+ "multer": "^1.4.2",
41
+ "prettier": "^2.2.1",
42
+ "serve-index": "^1.9.1",
43
+ "sinon": "^7.5.0"
44
+ },
45
+ "scripts": {
46
+ "lint": "eslint --ignore-pattern node_modules --ignore-pattern generator --ext js lib/http.js \"**/*.js\"",
47
+ "test": "npm run lint && mocha -t 600000 --recursive test",
48
+ "test-jasmine": "jasmine JASMINE_CONFIG_PATH=jasmine.json"
49
+ },
50
+ "mocha": {
51
+ "recursive": true,
52
+ "timeout": 600000
53
+ }
54
+ }
@@ -0,0 +1,32 @@
1
+ // Licensed to the Software Freedom Conservancy (SFC) under one
2
+ // or more contributor license agreements. See the NOTICE file
3
+ // distributed with this work for additional information
4
+ // regarding copyright ownership. The SFC licenses this file
5
+ // to you under the Apache License, Version 2.0 (the
6
+ // "License"); you may not use this file except in compliance
7
+ // with the License. You may obtain a copy of the License at
8
+ //
9
+ // http://www.apache.org/licenses/LICENSE-2.0
10
+ //
11
+ // Unless required by applicable law or agreed to in writing,
12
+ // software distributed under the License is distributed on an
13
+ // "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
+ // KIND, either express or implied. See the License for the
15
+ // specific language governing permissions and limitations
16
+ // under the License.
17
+
18
+ /**
19
+ * @fileoverview Proxy module alias.
20
+ *
21
+ * var webdriver = require('selenium-webdriver'),
22
+ * proxy = require('selenium-webdriver/proxy');
23
+ *
24
+ * var driver = new webdriver.Builder()
25
+ * .withCapabilities(webdriver.Capabilities.chrome())
26
+ * .setProxy(proxy.manual({http: 'host:1234'}))
27
+ * .build();
28
+ */
29
+
30
+ 'use strict'
31
+
32
+ module.exports = require('./lib/proxy')
@@ -0,0 +1,624 @@
1
+ // Licensed to the Software Freedom Conservancy (SFC) under one
2
+ // or more contributor license agreements. See the NOTICE file
3
+ // distributed with this work for additional information
4
+ // regarding copyright ownership. The SFC licenses this file
5
+ // to you under the Apache License, Version 2.0 (the
6
+ // "License"); you may not use this file except in compliance
7
+ // with the License. You may obtain a copy of the License at
8
+ //
9
+ // http://www.apache.org/licenses/LICENSE-2.0
10
+ //
11
+ // Unless required by applicable law or agreed to in writing,
12
+ // software distributed under the License is distributed on an
13
+ // "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14
+ // KIND, either express or implied. See the License for the
15
+ // specific language governing permissions and limitations
16
+ // under the License.
17
+
18
+ 'use strict'
19
+
20
+ const fs = require('fs')
21
+ const path = require('path')
22
+ const url = require('url')
23
+
24
+ const httpUtil = require('../http/util')
25
+ const io = require('../io')
26
+ const exec = require('../io/exec')
27
+ const { Zip } = require('../io/zip')
28
+ const cmd = require('../lib/command')
29
+ const input = require('../lib/input')
30
+ const net = require('../net')
31
+ const portprober = require('../net/portprober')
32
+
33
+ /**
34
+ * @typedef {(string|!Array<string|number|!stream.Stream|null|undefined>)}
35
+ */
36
+ var StdIoOptions // eslint-disable-line
37
+
38
+ /**
39
+ * @typedef {(string|!IThenable<string>)}
40
+ */
41
+ var CommandLineFlag // eslint-disable-line
42
+
43
+ /**
44
+ * A record object that defines the configuration options for a DriverService
45
+ * instance.
46
+ *
47
+ * @record
48
+ */
49
+ function ServiceOptions() {}
50
+
51
+ /**
52
+ * Whether the service should only be accessed on this host's loopback address.
53
+ *
54
+ * @type {(boolean|undefined)}
55
+ */
56
+ ServiceOptions.prototype.loopback
57
+
58
+ /**
59
+ * The host name to access the server on. If this option is specified, the
60
+ * {@link #loopback} option will be ignored.
61
+ *
62
+ * @type {(string|undefined)}
63
+ */
64
+ ServiceOptions.prototype.hostname
65
+
66
+ /**
67
+ * The port to start the server on (must be > 0). If the port is provided as a
68
+ * promise, the service will wait for the promise to resolve before starting.
69
+ *
70
+ * @type {(number|!IThenable<number>)}
71
+ */
72
+ ServiceOptions.prototype.port
73
+
74
+ /**
75
+ * The arguments to pass to the service. If a promise is provided, the service
76
+ * will wait for it to resolve before starting.
77
+ *
78
+ * @type {!(Array<CommandLineFlag>|IThenable<!Array<CommandLineFlag>>)}
79
+ */
80
+ ServiceOptions.prototype.args
81
+
82
+ /**
83
+ * The base path on the server for the WebDriver wire protocol (e.g. '/wd/hub').
84
+ * Defaults to '/'.
85
+ *
86
+ * @type {(string|undefined|null)}
87
+ */
88
+ ServiceOptions.prototype.path
89
+
90
+ /**
91
+ * The environment variables that should be visible to the server process.
92
+ * Defaults to inheriting the current process's environment.
93
+ *
94
+ * @type {(Object<string, string>|undefined)}
95
+ */
96
+ ServiceOptions.prototype.env
97
+
98
+ /**
99
+ * IO configuration for the spawned server process. For more information, refer
100
+ * to the documentation of `child_process.spawn`.
101
+ *
102
+ * @type {(StdIoOptions|undefined)}
103
+ * @see https://nodejs.org/dist/latest-v4.x/docs/api/child_process.html#child_process_options_stdio
104
+ */
105
+ ServiceOptions.prototype.stdio
106
+
107
+ /**
108
+ * Manages the life and death of a native executable WebDriver server.
109
+ *
110
+ * It is expected that the driver server implements the
111
+ * https://github.com/SeleniumHQ/selenium/wiki/JsonWireProtocol.
112
+ * Furthermore, the managed server should support multiple concurrent sessions,
113
+ * so that this class may be reused for multiple clients.
114
+ */
115
+ class DriverService {
116
+ /**
117
+ * @param {string} executable Path to the executable to run.
118
+ * @param {!ServiceOptions} options Configuration options for the service.
119
+ */
120
+ constructor(executable, options) {
121
+ /** @private {string} */
122
+ this.executable_ = executable
123
+
124
+ /** @private {boolean} */
125
+ this.loopbackOnly_ = !!options.loopback
126
+
127
+ /** @private {(string|undefined)} */
128
+ this.hostname_ = options.hostname
129
+
130
+ /** @private {(number|!IThenable<number>)} */
131
+ this.port_ = options.port
132
+
133
+ /**
134
+ * @private {!(Array<CommandLineFlag>|
135
+ * IThenable<!Array<CommandLineFlag>>)}
136
+ */
137
+ this.args_ = options.args
138
+
139
+ /** @private {string} */
140
+ this.path_ = options.path || '/'
141
+
142
+ /** @private {!Object<string, string>} */
143
+ this.env_ = options.env || process.env
144
+
145
+ /**
146
+ * @private {(string|!Array<string|number|!stream.Stream|null|undefined>)}
147
+ */
148
+ this.stdio_ = options.stdio || 'ignore'
149
+
150
+ /**
151
+ * A promise for the managed subprocess, or null if the server has not been
152
+ * started yet. This promise will never be rejected.
153
+ * @private {Promise<!exec.Command>}
154
+ */
155
+ this.command_ = null
156
+
157
+ /**
158
+ * Promise that resolves to the server's address or null if the server has
159
+ * not been started. This promise will be rejected if the server terminates
160
+ * before it starts accepting WebDriver requests.
161
+ * @private {Promise<string>}
162
+ */
163
+ this.address_ = null
164
+ }
165
+
166
+ /**
167
+ * @return {!Promise<string>} A promise that resolves to the server's address.
168
+ * @throws {Error} If the server has not been started.
169
+ */
170
+ address() {
171
+ if (this.address_) {
172
+ return this.address_
173
+ }
174
+ throw Error('Server has not been started.')
175
+ }
176
+
177
+ /**
178
+ * Returns whether the underlying process is still running. This does not take
179
+ * into account whether the process is in the process of shutting down.
180
+ * @return {boolean} Whether the underlying service process is running.
181
+ */
182
+ isRunning() {
183
+ return !!this.address_
184
+ }
185
+
186
+ /**
187
+ * Starts the server if it is not already running.
188
+ * @param {number=} opt_timeoutMs How long to wait, in milliseconds, for the
189
+ * server to start accepting requests. Defaults to 30 seconds.
190
+ * @return {!Promise<string>} A promise that will resolve to the server's base
191
+ * URL when it has started accepting requests. If the timeout expires
192
+ * before the server has started, the promise will be rejected.
193
+ */
194
+ start(opt_timeoutMs) {
195
+ if (this.address_) {
196
+ return this.address_
197
+ }
198
+
199
+ var timeout = opt_timeoutMs || DriverService.DEFAULT_START_TIMEOUT_MS
200
+ var self = this
201
+
202
+ let resolveCommand
203
+ this.command_ = new Promise((resolve) => (resolveCommand = resolve))
204
+
205
+ this.address_ = new Promise((resolveAddress, rejectAddress) => {
206
+ resolveAddress(
207
+ Promise.resolve(this.port_).then((port) => {
208
+ if (port <= 0) {
209
+ throw Error('Port must be > 0: ' + port)
210
+ }
211
+
212
+ return resolveCommandLineFlags(this.args_).then((args) => {
213
+ const command = exec(self.executable_, {
214
+ args: args,
215
+ env: self.env_,
216
+ stdio: self.stdio_,
217
+ })
218
+
219
+ resolveCommand(command)
220
+
221
+ const earlyTermination = command.result().then(function (result) {
222
+ const error =
223
+ result.code == null
224
+ ? Error('Server was killed with ' + result.signal)
225
+ : Error('Server terminated early with status ' + result.code)
226
+ rejectAddress(error)
227
+ self.address_ = null
228
+ self.command_ = null
229
+ throw error
230
+ })
231
+
232
+ let hostname = self.hostname_
233
+ if (!hostname) {
234
+ hostname =
235
+ (!self.loopbackOnly_ && net.getAddress()) ||
236
+ net.getLoopbackAddress()
237
+ }
238
+
239
+ var serverUrl = url.format({
240
+ protocol: 'http',
241
+ hostname: hostname,
242
+ port: port + '',
243
+ pathname: self.path_,
244
+ })
245
+
246
+ return new Promise((fulfill, reject) => {
247
+ let cancelToken = earlyTermination.catch((e) =>
248
+ reject(Error(e.message))
249
+ )
250
+
251
+ httpUtil.waitForServer(serverUrl, timeout, cancelToken).then(
252
+ (_) => fulfill(serverUrl),
253
+ (err) => {
254
+ if (err instanceof httpUtil.CancellationError) {
255
+ fulfill(serverUrl)
256
+ } else {
257
+ reject(err)
258
+ }
259
+ }
260
+ )
261
+ })
262
+ })
263
+ })
264
+ )
265
+ })
266
+
267
+ return this.address_
268
+ }
269
+
270
+ /**
271
+ * Stops the service if it is not currently running. This function will kill
272
+ * the server immediately. To synchronize with the active control flow, use
273
+ * {@link #stop()}.
274
+ * @return {!Promise} A promise that will be resolved when the server has been
275
+ * stopped.
276
+ */
277
+ kill() {
278
+ if (!this.address_ || !this.command_) {
279
+ return Promise.resolve() // Not currently running.
280
+ }
281
+ let cmd = this.command_
282
+ this.address_ = null
283
+ this.command_ = null
284
+ return cmd.then((c) => c.kill('SIGTERM'))
285
+ }
286
+ }
287
+
288
+ /**
289
+ * @param {!(Array<CommandLineFlag>|IThenable<!Array<CommandLineFlag>>)} args
290
+ * @return {!Promise<!Array<string>>}
291
+ */
292
+ function resolveCommandLineFlags(args) {
293
+ // Resolve the outer array, then the individual flags.
294
+ return Promise.resolve(args).then(
295
+ /** !Array<CommandLineFlag> */ (args) => Promise.all(args)
296
+ )
297
+ }
298
+
299
+ /**
300
+ * The default amount of time, in milliseconds, to wait for the server to
301
+ * start.
302
+ * @const {number}
303
+ */
304
+ DriverService.DEFAULT_START_TIMEOUT_MS = 30 * 1000
305
+
306
+ /**
307
+ * Creates {@link DriverService} objects that manage a WebDriver server in a
308
+ * child process.
309
+ */
310
+ DriverService.Builder = class {
311
+ /**
312
+ * @param {string} exe Path to the executable to use. This executable must
313
+ * accept the `--port` flag for defining the port to start the server on.
314
+ * @throws {Error} If the provided executable path does not exist.
315
+ */
316
+ constructor(exe) {
317
+ if (!fs.existsSync(exe)) {
318
+ throw Error(`The specified executable path does not exist: ${exe}`)
319
+ }
320
+
321
+ /** @private @const {string} */
322
+ this.exe_ = exe
323
+
324
+ /** @private {!ServiceOptions} */
325
+ this.options_ = {
326
+ args: [],
327
+ port: 0,
328
+ env: null,
329
+ stdio: 'ignore',
330
+ }
331
+ }
332
+
333
+ /**
334
+ * Define additional command line arguments to use when starting the server.
335
+ *
336
+ * @param {...CommandLineFlag} var_args The arguments to include.
337
+ * @return {!THIS} A self reference.
338
+ * @this {THIS}
339
+ * @template THIS
340
+ */
341
+ addArguments(...arguments_) {
342
+ this.options_.args = this.options_.args.concat(arguments_)
343
+ return this
344
+ }
345
+
346
+ /**
347
+ * Sets the host name to access the server on. If specified, the
348
+ * {@linkplain #setLoopback() loopback} setting will be ignored.
349
+ *
350
+ * @param {string} hostname
351
+ * @return {!DriverService.Builder} A self reference.
352
+ */
353
+ setHostname(hostname) {
354
+ this.options_.hostname = hostname
355
+ return this
356
+ }
357
+
358
+ /**
359
+ * Sets whether the service should be accessed at this host's loopback
360
+ * address.
361
+ *
362
+ * @param {boolean} loopback
363
+ * @return {!DriverService.Builder} A self reference.
364
+ */
365
+ setLoopback(loopback) {
366
+ this.options_.loopback = loopback
367
+ return this
368
+ }
369
+
370
+ /**
371
+ * Sets the base path for WebDriver REST commands (e.g. "/wd/hub").
372
+ * By default, the driver will accept commands relative to "/".
373
+ *
374
+ * @param {?string} basePath The base path to use, or `null` to use the
375
+ * default.
376
+ * @return {!DriverService.Builder} A self reference.
377
+ */
378
+ setPath(basePath) {
379
+ this.options_.path = basePath
380
+ return this
381
+ }
382
+
383
+ /**
384
+ * Sets the port to start the server on.
385
+ *
386
+ * @param {number} port The port to use, or 0 for any free port.
387
+ * @return {!DriverService.Builder} A self reference.
388
+ * @throws {Error} If an invalid port is specified.
389
+ */
390
+ setPort(port) {
391
+ if (port < 0) {
392
+ throw Error(`port must be >= 0: ${port}`)
393
+ }
394
+ this.options_.port = port
395
+ return this
396
+ }
397
+
398
+ /**
399
+ * Defines the environment to start the server under. This setting will be
400
+ * inherited by every browser session started by the server. By default, the
401
+ * server will inherit the enviroment of the current process.
402
+ *
403
+ * @param {(Map<string, string>|Object<string, string>|null)} env The desired
404
+ * environment to use, or `null` if the server should inherit the
405
+ * current environment.
406
+ * @return {!DriverService.Builder} A self reference.
407
+ */
408
+ setEnvironment(env) {
409
+ if (env instanceof Map) {
410
+ let tmp = {}
411
+ env.forEach((value, key) => (tmp[key] = value))
412
+ env = tmp
413
+ }
414
+ this.options_.env = env
415
+ return this
416
+ }
417
+
418
+ /**
419
+ * IO configuration for the spawned server process. For more information,
420
+ * refer to the documentation of `child_process.spawn`.
421
+ *
422
+ * @param {StdIoOptions} config The desired IO configuration.
423
+ * @return {!DriverService.Builder} A self reference.
424
+ * @see https://nodejs.org/dist/latest-v4.x/docs/api/child_process.html#child_process_options_stdio
425
+ */
426
+ setStdio(config) {
427
+ this.options_.stdio = config
428
+ return this
429
+ }
430
+
431
+ /**
432
+ * Creates a new DriverService using this instance's current configuration.
433
+ *
434
+ * @return {!DriverService} A new driver service.
435
+ */
436
+ build() {
437
+ let port = this.options_.port || portprober.findFreePort()
438
+ let args = Promise.resolve(port).then((port) => {
439
+ return this.options_.args.concat('--port=' + port)
440
+ })
441
+
442
+ let options =
443
+ /** @type {!ServiceOptions} */
444
+ (Object.assign({}, this.options_, { args, port }))
445
+ return new DriverService(this.exe_, options)
446
+ }
447
+ }
448
+
449
+ /**
450
+ * Manages the life and death of the
451
+ * <a href="http://selenium-release.storage.googleapis.com/index.html">
452
+ * standalone Selenium server</a>.
453
+ */
454
+ class SeleniumServer extends DriverService {
455
+ /**
456
+ * @param {string} jar Path to the Selenium server jar.
457
+ * @param {SeleniumServer.Options=} opt_options Configuration options for the
458
+ * server.
459
+ * @throws {Error} If the path to the Selenium jar is not specified or if an
460
+ * invalid port is specified.
461
+ */
462
+ constructor(jar, opt_options) {
463
+ if (!jar) {
464
+ throw Error('Path to the Selenium jar not specified')
465
+ }
466
+
467
+ var options = opt_options || {}
468
+
469
+ if (options.port < 0) {
470
+ throw Error('Port must be >= 0: ' + options.port)
471
+ }
472
+
473
+ let port = options.port || portprober.findFreePort()
474
+ let args = Promise.all([
475
+ port,
476
+ options.jvmArgs || [],
477
+ options.args || [],
478
+ ]).then((resolved) => {
479
+ let port = resolved[0]
480
+ let jvmArgs = resolved[1]
481
+ let args = resolved[2]
482
+ return jvmArgs.concat('-jar', jar, '-port', port).concat(args)
483
+ })
484
+
485
+ let java = 'java'
486
+ if (process.env['JAVA_HOME']) {
487
+ java = path.join(process.env['JAVA_HOME'], 'bin/java')
488
+ }
489
+
490
+ super(java, {
491
+ loopback: options.loopback,
492
+ port: port,
493
+ args: args,
494
+ path: '/wd/hub',
495
+ env: options.env,
496
+ stdio: options.stdio,
497
+ })
498
+ }
499
+ }
500
+
501
+ /**
502
+ * A record object describing configuration options for a {@link SeleniumServer}
503
+ * instance.
504
+ *
505
+ * @record
506
+ */
507
+ SeleniumServer.Options = class {
508
+ constructor() {
509
+ /**
510
+ * Whether the server should only be accessible on this host's loopback
511
+ * address.
512
+ *
513
+ * @type {(boolean|undefined)}
514
+ */
515
+ this.loopback
516
+
517
+ /**
518
+ * The port to start the server on (must be > 0). If the port is provided as
519
+ * a promise, the service will wait for the promise to resolve before
520
+ * starting.
521
+ *
522
+ * @type {(number|!IThenable<number>)}
523
+ */
524
+ this.port
525
+
526
+ /**
527
+ * The arguments to pass to the service. If a promise is provided,
528
+ * the service will wait for it to resolve before starting.
529
+ *
530
+ * @type {!(Array<string>|IThenable<!Array<string>>)}
531
+ */
532
+ this.args
533
+
534
+ /**
535
+ * The arguments to pass to the JVM. If a promise is provided,
536
+ * the service will wait for it to resolve before starting.
537
+ *
538
+ * @type {(!Array<string>|!IThenable<!Array<string>>|undefined)}
539
+ */
540
+ this.jvmArgs
541
+
542
+ /**
543
+ * The environment variables that should be visible to the server
544
+ * process. Defaults to inheriting the current process's environment.
545
+ *
546
+ * @type {(!Object<string, string>|undefined)}
547
+ */
548
+ this.env
549
+
550
+ /**
551
+ * IO configuration for the spawned server process. If unspecified, IO will
552
+ * be ignored.
553
+ *
554
+ * @type {(string|!Array<string|number|!stream.Stream|null|undefined>|
555
+ * undefined)}
556
+ * @see <https://nodejs.org/dist/latest-v8.x/docs/api/child_process.html#child_process_options_stdio>
557
+ */
558
+ this.stdio
559
+ }
560
+ }
561
+
562
+ /**
563
+ * A {@link webdriver.FileDetector} that may be used when running
564
+ * against a remote
565
+ * [Selenium server](http://selenium-release.storage.googleapis.com/index.html).
566
+ *
567
+ * When a file path on the local machine running this script is entered with
568
+ * {@link webdriver.WebElement#sendKeys WebElement#sendKeys}, this file detector
569
+ * will transfer the specified file to the Selenium server's host; the sendKeys
570
+ * command will be updated to use the transfered file's path.
571
+ *
572
+ * __Note:__ This class depends on a non-standard command supported on the
573
+ * Java Selenium server. The file detector will fail if used with a server that
574
+ * only supports standard WebDriver commands (such as the ChromeDriver).
575
+ *
576
+ * @final
577
+ */
578
+ class FileDetector extends input.FileDetector {
579
+ /**
580
+ * Prepares a `file` for use with the remote browser. If the provided path
581
+ * does not reference a normal file (i.e. it does not exist or is a
582
+ * directory), then the promise returned by this method will be resolved with
583
+ * the original file path. Otherwise, this method will upload the file to the
584
+ * remote server, which will return the file's path on the remote system so
585
+ * it may be referenced in subsequent commands.
586
+ *
587
+ * @override
588
+ */
589
+ handleFile(driver, file) {
590
+ return io.stat(file).then(
591
+ function (stats) {
592
+ if (stats.isDirectory()) {
593
+ return file // Not a valid file, return original input.
594
+ }
595
+
596
+ let zip = new Zip()
597
+ return zip
598
+ .addFile(file)
599
+ .then(() => zip.toBuffer())
600
+ .then((buf) => buf.toString('base64'))
601
+ .then((encodedZip) => {
602
+ let command = new cmd.Command(cmd.Name.UPLOAD_FILE).setParameter(
603
+ 'file',
604
+ encodedZip
605
+ )
606
+ return driver.execute(command)
607
+ })
608
+ },
609
+ function (err) {
610
+ if (err.code === 'ENOENT') {
611
+ return file // Not a file; return original input.
612
+ }
613
+ throw err
614
+ }
615
+ )
616
+ }
617
+ }
618
+
619
+ // PUBLIC API
620
+
621
+ exports.DriverService = DriverService
622
+ exports.FileDetector = FileDetector
623
+ exports.SeleniumServer = SeleniumServer
624
+ exports.ServiceOptions = ServiceOptions // Exported for API docs.