rhoconnect 3.0.0.beta1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (361) hide show
  1. data/CHANGELOG +208 -0
  2. data/CREDITS +38 -0
  3. data/Gemfile +18 -0
  4. data/Gemfile.lock +97 -0
  5. data/LICENSE +75 -0
  6. data/README.md +10 -0
  7. data/Rakefile +82 -0
  8. data/bench/bench +7 -0
  9. data/bench/bench_runner.rb +112 -0
  10. data/bench/benchapp/Gemfile +21 -0
  11. data/bench/benchapp/Gemfile.lock +76 -0
  12. data/bench/benchapp/Rakefile +22 -0
  13. data/bench/benchapp/application.rb +39 -0
  14. data/bench/benchapp/config.ru +36 -0
  15. data/bench/benchapp/settings/license.key +1 -0
  16. data/bench/benchapp/settings/settings.yml +20 -0
  17. data/bench/benchapp/sources/mock_adapter.rb +55 -0
  18. data/bench/benchapp/sources/queue_mock_adapter.rb +2 -0
  19. data/bench/benchapp/spec/sources/mock_adapter_spec.rb +25 -0
  20. data/bench/benchapp/spec/sources/queue_mock_adapter_spec.rb +25 -0
  21. data/bench/benchapp/spec/spec_helper.rb +42 -0
  22. data/bench/blobapp/Gemfile +31 -0
  23. data/bench/blobapp/Gemfile.lock +103 -0
  24. data/bench/blobapp/Rakefile +25 -0
  25. data/bench/blobapp/application.rb +44 -0
  26. data/bench/blobapp/config.ru +36 -0
  27. data/bench/blobapp/settings/license.key +1 -0
  28. data/bench/blobapp/settings/settings.yml +16 -0
  29. data/bench/blobapp/sources/blob_adapter.rb +71 -0
  30. data/bench/blobapp/spec/sources/blob_adapter_spec.rb +25 -0
  31. data/bench/blobapp/spec/spec_helper.rb +42 -0
  32. data/bench/lib/bench/cli.rb +16 -0
  33. data/bench/lib/bench/logging.rb +13 -0
  34. data/bench/lib/bench/mock_client.rb +41 -0
  35. data/bench/lib/bench/result.rb +50 -0
  36. data/bench/lib/bench/runner.rb +107 -0
  37. data/bench/lib/bench/session.rb +67 -0
  38. data/bench/lib/bench/statistics.rb +56 -0
  39. data/bench/lib/bench/test_data.rb +98 -0
  40. data/bench/lib/bench/timer.rb +10 -0
  41. data/bench/lib/bench/utils.rb +49 -0
  42. data/bench/lib/bench.rb +129 -0
  43. data/bench/lib/testdata/100-data.txt +148 -0
  44. data/bench/lib/testdata/5-data.txt +9 -0
  45. data/bench/lib/testdata/images/icon.ico +0 -0
  46. data/bench/lib/testdata/images/icon.png +0 -0
  47. data/bench/lib/testdata/images/loading-Landscape.png +0 -0
  48. data/bench/lib/testdata/images/loading-LandscapeLeft.png +0 -0
  49. data/bench/lib/testdata/images/loading-LandscapeRight.png +0 -0
  50. data/bench/lib/testdata/images/loading-Portrait.png +0 -0
  51. data/bench/lib/testdata/images/loading-PortraitUpsideDown.png +0 -0
  52. data/bench/lib/testdata/images/loading.png +0 -0
  53. data/bench/lib/testdata/images/loading@2x.png +0 -0
  54. data/bench/run_bench.sh +42 -0
  55. data/bench/run_blob_script.sh +3 -0
  56. data/bench/run_cud_script.sh +3 -0
  57. data/bench/run_query_md_script.sh +3 -0
  58. data/bench/run_query_only_script.sh +3 -0
  59. data/bench/run_query_script.sh +3 -0
  60. data/bench/scripts/blob_cud_script.rb +98 -0
  61. data/bench/scripts/cud_script.rb +92 -0
  62. data/bench/scripts/helpers.rb +101 -0
  63. data/bench/scripts/query_md_script.rb +45 -0
  64. data/bench/scripts/query_only_script.rb +51 -0
  65. data/bench/scripts/query_script.rb +45 -0
  66. data/bench/spec/bench_spec_helper.rb +33 -0
  67. data/bench/spec/logging_spec.rb +15 -0
  68. data/bench/spec/mock_adapter_spec.rb +61 -0
  69. data/bench/spec/mock_client_spec.rb +65 -0
  70. data/bench/spec/result_spec.rb +61 -0
  71. data/bench/spec/utils_spec.rb +36 -0
  72. data/bin/rhoconnect +34 -0
  73. data/bin/rhoconnect-setup +84 -0
  74. data/doc/async-jobs.txt +69 -0
  75. data/doc/authentication.txt +76 -0
  76. data/doc/benchmarks.txt +168 -0
  77. data/doc/blob-sync.txt +130 -0
  78. data/doc/bulk-sync.txt +102 -0
  79. data/doc/client.txt +432 -0
  80. data/doc/command-line.txt +210 -0
  81. data/doc/contributing.txt +60 -0
  82. data/doc/deploying.txt +82 -0
  83. data/doc/install.txt +28 -0
  84. data/doc/introduction.txt +20 -0
  85. data/doc/licensing.txt +18 -0
  86. data/doc/metadata.txt +458 -0
  87. data/doc/migration.txt +182 -0
  88. data/doc/public/css/print.css +29 -0
  89. data/doc/public/css/screen.css +257 -0
  90. data/doc/public/css/style.css +20 -0
  91. data/doc/push.txt +135 -0
  92. data/doc/release.txt +41 -0
  93. data/doc/rest-api.txt +367 -0
  94. data/doc/source-adapters.txt +325 -0
  95. data/doc/stats-middleware.txt +69 -0
  96. data/doc/testing.txt +222 -0
  97. data/doc/tutorial.txt +315 -0
  98. data/doc/web-console.txt +35 -0
  99. data/examples/simple/Rakefile +14 -0
  100. data/examples/simple/application.rb +27 -0
  101. data/examples/simple/config.ru +49 -0
  102. data/examples/simple/settings/license.key +1 -0
  103. data/examples/simple/settings/settings.yml +23 -0
  104. data/examples/simple/sources/sample_adapter.rb +5 -0
  105. data/examples/simple/sources/simple_adapter.rb +5 -0
  106. data/generators/rhoconnect.rb +119 -0
  107. data/generators/templates/application/Gemfile +21 -0
  108. data/generators/templates/application/Rakefile +22 -0
  109. data/generators/templates/application/application.rb +39 -0
  110. data/generators/templates/application/config.ru +36 -0
  111. data/generators/templates/application/settings/license.key +1 -0
  112. data/generators/templates/application/settings/settings.yml +14 -0
  113. data/generators/templates/application/spec/spec_helper.rb +42 -0
  114. data/generators/templates/source/source_adapter.rb +47 -0
  115. data/generators/templates/source/source_spec.rb +25 -0
  116. data/install.sh +408 -0
  117. data/installer/unix-like/rho_connect_install_checkers.rb +140 -0
  118. data/installer/unix-like/rho_connect_install_constants.rb +51 -0
  119. data/installer/unix-like/rho_connect_install_debian.rb +63 -0
  120. data/installer/unix-like/rho_connect_install_dnd.rb +58 -0
  121. data/installer/unix-like/rho_connect_install_get_params.rb +30 -0
  122. data/installer/unix-like/rho_connect_install_installers.rb +142 -0
  123. data/installer/unix-like/rho_connect_install_utilities.rb +85 -0
  124. data/installer/unix-like/rho_connect_install_yum.rb +63 -0
  125. data/installer/unix-like/rhoinstaller.rb +89 -0
  126. data/installer/utils/create_texts.rb +366 -0
  127. data/installer/utils/install_test.rb +140 -0
  128. data/installer/windows/EnvVarUpdate.nsh +328 -0
  129. data/installer/windows/ServiceLib.nsh +369 -0
  130. data/installer/windows/configUi.ini +44 -0
  131. data/installer/windows/icon.ico +0 -0
  132. data/installer/windows/rhosync.nsi +418 -0
  133. data/installer/windows/uninstall.bat +7 -0
  134. data/lib/rhoconnect/api/admin/get_api_token.rb +14 -0
  135. data/lib/rhoconnect/api/admin/get_license_info.rb +8 -0
  136. data/lib/rhoconnect/api/admin/login.rb +6 -0
  137. data/lib/rhoconnect/api/admin/reset.rb +10 -0
  138. data/lib/rhoconnect/api/admin/stats.rb +21 -0
  139. data/lib/rhoconnect/api/application/bulk_data.rb +7 -0
  140. data/lib/rhoconnect/api/application/clientcreate.rb +8 -0
  141. data/lib/rhoconnect/api/application/clientlogin.rb +6 -0
  142. data/lib/rhoconnect/api/application/clientregister.rb +6 -0
  143. data/lib/rhoconnect/api/application/clientreset.rb +6 -0
  144. data/lib/rhoconnect/api/application/query.rb +7 -0
  145. data/lib/rhoconnect/api/application/queue_updates.rb +6 -0
  146. data/lib/rhoconnect/api/application/search.rb +6 -0
  147. data/lib/rhoconnect/api/client/create_client.rb +3 -0
  148. data/lib/rhoconnect/api/client/delete_client.rb +5 -0
  149. data/lib/rhoconnect/api/client/get_client_params.rb +3 -0
  150. data/lib/rhoconnect/api/client/list_client_docs.rb +12 -0
  151. data/lib/rhoconnect/api/client/list_clients.rb +3 -0
  152. data/lib/rhoconnect/api/client/ping.rb +7 -0
  153. data/lib/rhoconnect/api/source/get_adapter.rb +3 -0
  154. data/lib/rhoconnect/api/source/get_db_doc.rb +7 -0
  155. data/lib/rhoconnect/api/source/get_source_params.rb +3 -0
  156. data/lib/rhoconnect/api/source/list_source_docs.rb +10 -0
  157. data/lib/rhoconnect/api/source/list_sources.rb +15 -0
  158. data/lib/rhoconnect/api/source/push_deletes.rb +8 -0
  159. data/lib/rhoconnect/api/source/push_objects.rb +8 -0
  160. data/lib/rhoconnect/api/source/save_adapter.rb +3 -0
  161. data/lib/rhoconnect/api/source/set_db_doc.rb +8 -0
  162. data/lib/rhoconnect/api/source/set_refresh_time.rb +8 -0
  163. data/lib/rhoconnect/api/source/upload_file.rb +4 -0
  164. data/lib/rhoconnect/api/user/create_user.rb +7 -0
  165. data/lib/rhoconnect/api/user/delete_user.rb +9 -0
  166. data/lib/rhoconnect/api/user/list_users.rb +3 -0
  167. data/lib/rhoconnect/api/user/update_user.rb +4 -0
  168. data/lib/rhoconnect/api_token.rb +19 -0
  169. data/lib/rhoconnect/app.rb +76 -0
  170. data/lib/rhoconnect/bulk_data/bulk_data.rb +88 -0
  171. data/lib/rhoconnect/bulk_data/syncdb.index.schema +4 -0
  172. data/lib/rhoconnect/bulk_data/syncdb.schema +41 -0
  173. data/lib/rhoconnect/bulk_data.rb +2 -0
  174. data/lib/rhoconnect/client.rb +96 -0
  175. data/lib/rhoconnect/client_sync.rb +412 -0
  176. data/lib/rhoconnect/console/app/helpers/auth_helper.rb +22 -0
  177. data/lib/rhoconnect/console/app/helpers/extensions.rb +19 -0
  178. data/lib/rhoconnect/console/app/helpers/helpers.rb +57 -0
  179. data/lib/rhoconnect/console/app/public/ThickBox.css +649 -0
  180. data/lib/rhoconnect/console/app/public/home.css +438 -0
  181. data/lib/rhoconnect/console/app/public/images/foot_logo_rhoconnect.png +0 -0
  182. data/lib/rhoconnect/console/app/public/images/header_halo.jpg +0 -0
  183. data/lib/rhoconnect/console/app/public/images/land_separator.gif +0 -0
  184. data/lib/rhoconnect/console/app/public/images/landing_header.jpg +0 -0
  185. data/lib/rhoconnect/console/app/public/images/logo_rhoconnect.png +0 -0
  186. data/lib/rhoconnect/console/app/public/images/rhomobile_rhohub_logo.png +0 -0
  187. data/lib/rhoconnect/console/app/public/images/tabs_separator.png +0 -0
  188. data/lib/rhoconnect/console/app/public/jqplot/excanvas.min.js +35 -0
  189. data/lib/rhoconnect/console/app/public/jqplot/jqplot.barRenderer.min.js +34 -0
  190. data/lib/rhoconnect/console/app/public/jqplot/jqplot.canvasAxisLabelRenderer.js +187 -0
  191. data/lib/rhoconnect/console/app/public/jqplot/jqplot.canvasAxisTickRenderer.js +226 -0
  192. data/lib/rhoconnect/console/app/public/jqplot/jqplot.canvasTextRenderer.js +408 -0
  193. data/lib/rhoconnect/console/app/public/jqplot/jqplot.categoryAxisRenderer.min.js +34 -0
  194. data/lib/rhoconnect/console/app/public/jqplot/jqplot.cursor.js +952 -0
  195. data/lib/rhoconnect/console/app/public/jqplot/jqplot.dateAxisRenderer.js +313 -0
  196. data/lib/rhoconnect/console/app/public/jqplot/jqplot.dateAxisRenderer.min.js +34 -0
  197. data/lib/rhoconnect/console/app/public/jqplot/jqplot.pointLabels.min.js +34 -0
  198. data/lib/rhoconnect/console/app/public/jqplot/jquery-1.4.2.min.js +154 -0
  199. data/lib/rhoconnect/console/app/public/jqplot/jquery.jqplot.min.css +1 -0
  200. data/lib/rhoconnect/console/app/public/jqplot/jquery.jqplot.min.js +34 -0
  201. data/lib/rhoconnect/console/app/public/main.css +7 -0
  202. data/lib/rhoconnect/console/app/public/reset.css +76 -0
  203. data/lib/rhoconnect/console/app/public/style.css +2201 -0
  204. data/lib/rhoconnect/console/app/public/text.txt +0 -0
  205. data/lib/rhoconnect/console/app/routes/adapter.rb +28 -0
  206. data/lib/rhoconnect/console/app/routes/auth.rb +29 -0
  207. data/lib/rhoconnect/console/app/routes/client.rb +31 -0
  208. data/lib/rhoconnect/console/app/routes/docs.rb +145 -0
  209. data/lib/rhoconnect/console/app/routes/heroku.rb +19 -0
  210. data/lib/rhoconnect/console/app/routes/home.rb +63 -0
  211. data/lib/rhoconnect/console/app/routes/timing.rb +242 -0
  212. data/lib/rhoconnect/console/app/routes/user.rb +117 -0
  213. data/lib/rhoconnect/console/app/views/adapter.erb +16 -0
  214. data/lib/rhoconnect/console/app/views/client.erb +30 -0
  215. data/lib/rhoconnect/console/app/views/content.erb +14 -0
  216. data/lib/rhoconnect/console/app/views/doc.erb +8 -0
  217. data/lib/rhoconnect/console/app/views/docdata.erb +28 -0
  218. data/lib/rhoconnect/console/app/views/docs.erb +30 -0
  219. data/lib/rhoconnect/console/app/views/edituser.erb +13 -0
  220. data/lib/rhoconnect/console/app/views/headermenu.erb +40 -0
  221. data/lib/rhoconnect/console/app/views/home.erb +24 -0
  222. data/lib/rhoconnect/console/app/views/index.erb +58 -0
  223. data/lib/rhoconnect/console/app/views/jqplot.erb +52 -0
  224. data/lib/rhoconnect/console/app/views/layout.erb +165 -0
  225. data/lib/rhoconnect/console/app/views/login.erb +26 -0
  226. data/lib/rhoconnect/console/app/views/newuser.erb +17 -0
  227. data/lib/rhoconnect/console/app/views/ping.erb +28 -0
  228. data/lib/rhoconnect/console/app/views/result.erb +11 -0
  229. data/lib/rhoconnect/console/app/views/rightboxlinks.erb +15 -0
  230. data/lib/rhoconnect/console/app/views/select_doc.erb +17 -0
  231. data/lib/rhoconnect/console/app/views/upload_doc.erb +23 -0
  232. data/lib/rhoconnect/console/app/views/user.erb +29 -0
  233. data/lib/rhoconnect/console/app/views/users.erb +12 -0
  234. data/lib/rhoconnect/console/rhoconnect_api.rb +245 -0
  235. data/lib/rhoconnect/console/server.rb +32 -0
  236. data/lib/rhoconnect/console.rb +3 -0
  237. data/lib/rhoconnect/cors.rb +229 -0
  238. data/lib/rhoconnect/credential.rb +9 -0
  239. data/lib/rhoconnect/db_adapter.rb +46 -0
  240. data/lib/rhoconnect/document.rb +49 -0
  241. data/lib/rhoconnect/dynamic_adapter.rb +91 -0
  242. data/lib/rhoconnect/generator.rb +1 -0
  243. data/lib/rhoconnect/jobs/bulk_data_job.rb +203 -0
  244. data/lib/rhoconnect/jobs/ping_job.rb +46 -0
  245. data/lib/rhoconnect/jobs/source_job.rb +16 -0
  246. data/lib/rhoconnect/license.rb +86 -0
  247. data/lib/rhoconnect/lock_ops.rb +11 -0
  248. data/lib/rhoconnect/model.rb +414 -0
  249. data/lib/rhoconnect/ping/android.rb +56 -0
  250. data/lib/rhoconnect/ping/apple.rb +52 -0
  251. data/lib/rhoconnect/ping/blackberry.rb +56 -0
  252. data/lib/rhoconnect/ping.rb +3 -0
  253. data/lib/rhoconnect/read_state.rb +31 -0
  254. data/lib/rhoconnect/rho_indifferent_access.rb +88 -0
  255. data/lib/rhoconnect/server/views/index.erb +13 -0
  256. data/lib/rhoconnect/server.rb +286 -0
  257. data/lib/rhoconnect/source.rb +289 -0
  258. data/lib/rhoconnect/source_adapter.rb +123 -0
  259. data/lib/rhoconnect/source_sync.rb +302 -0
  260. data/lib/rhoconnect/stats/middleware.rb +20 -0
  261. data/lib/rhoconnect/stats/record.rb +108 -0
  262. data/lib/rhoconnect/store.rb +232 -0
  263. data/lib/rhoconnect/tasks.rb +350 -0
  264. data/lib/rhoconnect/test_methods.rb +220 -0
  265. data/lib/rhoconnect/user.rb +95 -0
  266. data/lib/rhoconnect/version.rb +3 -0
  267. data/lib/rhoconnect/x_domain_session_wrapper.rb +53 -0
  268. data/lib/rhoconnect.rb +285 -0
  269. data/rhoconnect.gemspec +67 -0
  270. data/spec/api/admin/api_token_spec.rb +14 -0
  271. data/spec/api/admin/get_api_token_spec.rb +36 -0
  272. data/spec/api/admin/get_license_info_spec.rb +38 -0
  273. data/spec/api/admin/reset_spec.rb +22 -0
  274. data/spec/api/admin/stats_spec.rb +66 -0
  275. data/spec/api/api_helper.rb +21 -0
  276. data/spec/api/application/rhoconnect_api_spec.rb +548 -0
  277. data/spec/api/client/create_client_spec.rb +13 -0
  278. data/spec/api/client/delete_client_spec.rb +13 -0
  279. data/spec/api/client/get_client_params_spec.rb +18 -0
  280. data/spec/api/client/list_client_docs_spec.rb +32 -0
  281. data/spec/api/client/list_clients_spec.rb +22 -0
  282. data/spec/api/client/ping_spec.rb +23 -0
  283. data/spec/api/rhosync_api_spec.rb.orig +606 -0
  284. data/spec/api/source/adapter_spec.rb +29 -0
  285. data/spec/api/source/get_db_doc_spec.rb +21 -0
  286. data/spec/api/source/get_source_params_spec.rb +32 -0
  287. data/spec/api/source/list_source_docs_spec.rb +25 -0
  288. data/spec/api/source/list_sources_spec.rb +26 -0
  289. data/spec/api/source/push_deletes_spec.rb +18 -0
  290. data/spec/api/source/push_objects_spec.rb +27 -0
  291. data/spec/api/source/set_db_doc_spec.rb +19 -0
  292. data/spec/api/source/set_refresh_time_spec.rb +43 -0
  293. data/spec/api/source/upload_file_spec.rb +26 -0
  294. data/spec/api/user/create_user_spec.rb +16 -0
  295. data/spec/api/user/delete_user_spec.rb +36 -0
  296. data/spec/api/user/list_users_spec.rb +30 -0
  297. data/spec/api/user/update_user_spec.rb +31 -0
  298. data/spec/api_token_spec.rb +14 -0
  299. data/spec/app_spec.rb +18 -0
  300. data/spec/apps/emptyapp/application.rb +27 -0
  301. data/spec/apps/emptyapp/settings/license.key +1 -0
  302. data/spec/apps/emptyapp/settings/settings.yml +14 -0
  303. data/spec/apps/rhotestapp/Rakefile +1 -0
  304. data/spec/apps/rhotestapp/application.rb +19 -0
  305. data/spec/apps/rhotestapp/config.ru +1 -0
  306. data/spec/apps/rhotestapp/settings/apple_fake_cert.pem +1 -0
  307. data/spec/apps/rhotestapp/settings/license.key +1 -0
  308. data/spec/apps/rhotestapp/settings/settings.yml +36 -0
  309. data/spec/apps/rhotestapp/sources/base_adapter.rb +9 -0
  310. data/spec/apps/rhotestapp/sources/fixed_schema_adapter.rb +28 -0
  311. data/spec/apps/rhotestapp/sources/sample_adapter.rb +71 -0
  312. data/spec/apps/rhotestapp/sources/simple_adapter.rb +41 -0
  313. data/spec/apps/rhotestapp/sources/sub_adapter.rb +7 -0
  314. data/spec/apps/rhotestapp/vendor/mygem-0.1.0/lib/mygem/mygem.rb +8 -0
  315. data/spec/apps/rhotestapp/vendor/mygem-0.1.0/lib/mygem.rb +1 -0
  316. data/spec/bulk_data/bulk_data_spec.rb +97 -0
  317. data/spec/client_spec.rb +124 -0
  318. data/spec/client_sync_spec.rb +774 -0
  319. data/spec/doc/base.html +72 -0
  320. data/spec/doc/doc_spec.rb +376 -0
  321. data/spec/doc/footer.html +4 -0
  322. data/spec/doc/header.html +30 -0
  323. data/spec/document_spec.rb +31 -0
  324. data/spec/dynamic_adapter_spec.rb +43 -0
  325. data/spec/factories/factories.rb +17 -0
  326. data/spec/generator/generator_spec.rb +58 -0
  327. data/spec/generator/generator_spec_helper.rb +9 -0
  328. data/spec/jobs/bulk_data_job_spec.rb +125 -0
  329. data/spec/jobs/ping_job_spec.rb +102 -0
  330. data/spec/jobs/source_job_spec.rb +29 -0
  331. data/spec/license_spec.rb +66 -0
  332. data/spec/model_spec.rb +273 -0
  333. data/spec/perf/bulk_data_perf_spec.rb +32 -0
  334. data/spec/perf/perf_spec_helper.rb +50 -0
  335. data/spec/perf/store_perf_spec.rb +27 -0
  336. data/spec/ping/android_spec.rb +91 -0
  337. data/spec/ping/apple_spec.rb +70 -0
  338. data/spec/ping/blackberry_spec.rb +62 -0
  339. data/spec/read_state_spec.rb +35 -0
  340. data/spec/rhosync_spec.rb +75 -0
  341. data/spec/server/cors_spec.rb +287 -0
  342. data/spec/server/server_spec.rb +470 -0
  343. data/spec/server/x_domain_session_wrapper_spec.rb +150 -0
  344. data/spec/source_adapter_spec.rb +125 -0
  345. data/spec/source_spec.rb +114 -0
  346. data/spec/source_sync_spec.rb +328 -0
  347. data/spec/spec.opts +4 -0
  348. data/spec/spec_helper.rb +231 -0
  349. data/spec/stats/middleware_spec.rb +53 -0
  350. data/spec/stats/record_spec.rb +92 -0
  351. data/spec/store_spec.rb +251 -0
  352. data/spec/support/shared_examples.rb +168 -0
  353. data/spec/sync_states_spec.rb +72 -0
  354. data/spec/test_methods_spec.rb +134 -0
  355. data/spec/testdata/1000-data.txt +1414 -0
  356. data/spec/testdata/compressed/compress-data.txt +1 -0
  357. data/spec/testdata/upload1.txt +1 -0
  358. data/spec/testdata/upload2.txt +1 -0
  359. data/spec/user_spec.rb +139 -0
  360. data/tasks/redis.rake +206 -0
  361. metadata +706 -0
@@ -0,0 +1,23 @@
1
+ require File.join(File.dirname(__FILE__),'..','api_helper')
2
+
3
+ describe "RhoconnectApiPing" do
4
+ it_should_behave_like "ApiHelper" do
5
+ it "should do ping synchronously" do
6
+ params = {"user_id" => @u.id, "api_token" => @api_token,
7
+ "sources" => [@s.name], "message" => 'hello world',
8
+ "vibrate" => '5', "badge" => '5', "sound" => 'hello.mp3'}
9
+ PingJob.should_receive(:perform).once.with(params)
10
+ post "/api/client/ping", params
11
+ last_response.should be_ok
12
+ end
13
+
14
+ it "should do ping asynchronously" do
15
+ params = {"user_id" => @u.id, "api_token" => @api_token,
16
+ "async" => "true","sources" => [@s.name], "message" => 'hello world',
17
+ "vibrate" => '5', "badge" => '5', "sound" => 'hello.mp3'}
18
+ PingJob.should_receive(:enqueue).once.with(params)
19
+ post "/api/client/ping", params
20
+ last_response.should be_ok
21
+ end
22
+ end
23
+ end
@@ -0,0 +1,606 @@
1
+ require File.join(File.dirname(__FILE__),'..','..','lib','rhosync','console','rhosync_api.rb')
2
+ require File.join(File.dirname(__FILE__),'api_helper')
3
+
4
+ describe "RhoconnectApi" do
5
+ it_should_behave_like "ApiHelper" do
6
+
7
+ before(:each) do
8
+ @s = Source.load(@s_fields[:name],@s_params)
9
+ end
10
+
11
+ it "should return api token using direct api call" do
12
+ RhoconnectApi::get_token('','rhoadmin','').should == @api_token
13
+ end
14
+
15
+ <<<<<<< HEAD
16
+ it "should return api token using rest call" do
17
+ response = {'set-cookie'=>"rhosync_session=c21...42b64; path=/; expires=Tue, 02-Aug-2011 23:55:19 GMT"}
18
+ res = mock('HttpResponse')
19
+ res.stub!(:response).and_return(response)
20
+ http = mock('NetHttp')
21
+ http.stub!(:post).and_return(res)
22
+ Net::HTTP.stub!(:new).and_return(http)
23
+ RestClient.stub(:post).and_return(@api_token)
24
+ =======
25
+ it "should get adapter using direct api call" do
26
+ RhoconnectApi::get_adapter('',@api_token)
27
+ Rhoconnect.appserver.should == "http://test.rhosync.com"
28
+ end
29
+
30
+ it "should get adapter using rest call" do
31
+ res = mock('HttpResponse')
32
+ res.stub!(:body).and_return(["http://test.rhosync.com"].to_json)
33
+ RestClient.stub(:post).and_return(res)
34
+ RestClient.should_receive(:post).once
35
+ RhoconnectApi::get_adapter('some_url',@api_token).should == ["http://test.rhosync.com"]
36
+ end
37
+
38
+ it "should save adapter using direct api call" do
39
+ RhoconnectApi::save_adapter('',@api_token,'http://test.com')
40
+ Rhoconnect.appserver.should == 'http://test.com'
41
+ end
42
+
43
+ it "should save adapter using rest call" do
44
+ RestClient.stub(:post).and_return("adpater url saved")
45
+ RestClient.should_receive(:post).once
46
+ RhoconnectApi::save_adapter('some_url',@api_token,'http://test.com').should == "adpater url saved"
47
+ end
48
+
49
+ it "should return api token using rest call" do
50
+ response = {'set-cookie'=>"rhosync_session=c21...42b64; path=/; expires=Tue, 02-Aug-2011 23:55:19 GMT"}
51
+ res = mock('HttpResponse')
52
+ res.stub!(:response).and_return(response)
53
+ http = mock('NetHttp')
54
+ http.stub!(:post).and_return(res)
55
+ Net::HTTP.stub!(:new).and_return(http)
56
+ RestClient.stub(:post).and_return(@api_token)
57
+ >>>>>>> dynamic_adapter
58
+
59
+ Net::HTTP.should_receive(:new).once
60
+ RestClient.should_receive(:post).once
61
+ RhoconnectApi::get_token('some_url','rhoadmin','').should == @api_token
62
+ end
63
+
64
+ it "should list users using direct api call" do
65
+ RhoconnectApi::list_users('',@api_token).should == ['testuser']
66
+ end
67
+
68
+ it "should list users using rect call" do
69
+ res = mock('HttpResponse')
70
+ res.stub!(:body).and_return(['testuser'].to_json)
71
+ RestClient.stub(:post).and_return(res)
72
+ RestClient.should_receive(:post).once
73
+ RhoconnectApi::list_users('some_url',@api_token).should == ['testuser']
74
+ end
75
+
76
+ it "should create user using direct api call" do
77
+ RhoconnectApi::create_user('',@api_token,'testuser1','testpass1')
78
+ User.load('testuser1').login.should == 'testuser1'
79
+ User.authenticate('testuser1','testpass1').login.should == 'testuser1'
80
+ @a.users.members.sort.should == [@u.login, 'testuser1']
81
+ end
82
+
83
+ <<<<<<< HEAD
84
+ it "should create user using rect call" do
85
+ RestClient.stub(:post).and_return("User created")
86
+ RestClient.should_receive(:post).once
87
+ RhoconnectApi::create_user('some_url',@api_token,'testuser1','testpass1').should == "User created"
88
+ end
89
+ =======
90
+ it "should create user using rest call" do
91
+ RestClient.stub(:post).and_return("User created")
92
+ RestClient.should_receive(:post).once
93
+ RhoconnectApi::create_user('some_url',@api_token,'testuser1','testpass1').should == "User created"
94
+ end
95
+ >>>>>>> dynamic_adapter
96
+
97
+ it "should update user using direct api call" do
98
+ RhoconnectApi::update_user('',@api_token, {:new_password => '123'})
99
+ User.authenticate('rhoadmin','123').login.should == 'rhoadmin'
100
+ end
101
+
102
+ <<<<<<< HEAD
103
+ it "should return api token using rest call" do
104
+ response = {'set-cookie'=>"rhosync_session=c21...42b64; path=/; expires=Tue, 02-Aug-2011 23:55:19 GMT"}
105
+ res = mock('HttpResponse')
106
+ res.stub!(:response).and_return(response)
107
+ http = mock('NetHttp')
108
+ http.stub!(:post).and_return(res)
109
+ Net::HTTP.stub!(:new).and_return(http)
110
+ RestClient.stub(:post).and_return(@api_token)
111
+
112
+ Net::HTTP.should_receive(:new).once
113
+ RestClient.should_receive(:post).once
114
+ RhoconnectApi::get_token('some_url','rhoadmin','').should == @api_token
115
+ end
116
+
117
+ it "should delete user using rect call" do
118
+ RestClient.stub(:post).and_return("User deleted")
119
+ RestClient.should_receive(:post).once
120
+ RhoconnectApi::delete_user('some_url',@api_token,'testuser1').should == "User deleted"
121
+ end
122
+ =======
123
+ it "should return api token using rest call" do
124
+ response = {'set-cookie'=>"rhosync_session=c21...42b64; path=/; expires=Tue, 02-Aug-2011 23:55:19 GMT"}
125
+ res = mock('HttpResponse')
126
+ res.stub!(:response).and_return(response)
127
+ http = mock('NetHttp')
128
+ http.stub!(:post).and_return(res)
129
+ Net::HTTP.stub!(:new).and_return(http)
130
+ RestClient.stub(:post).and_return(@api_token)
131
+
132
+ Net::HTTP.should_receive(:new).once
133
+ RestClient.should_receive(:post).once
134
+ RhoconnectApi::get_token('some_url','rhoadmin','').should == @api_token
135
+ end
136
+
137
+ it "should delete user using rest call" do
138
+ RestClient.stub(:post).and_return("User deleted")
139
+ RestClient.should_receive(:post).once
140
+ RhoconnectApi::delete_user('some_url',@api_token,'testuser1').should == "User deleted"
141
+ end
142
+ >>>>>>> dynamic_adapter
143
+
144
+ it "should list clients using direct api call" do
145
+ res = RhoconnectApi::list_clients('',@api_token,@u_fields[:login])
146
+ res.is_a?(Array).should == true
147
+ res.size.should == 1
148
+ res[0].is_a?(String) == true
149
+ res[0].length.should == 32
150
+ end
151
+
152
+ it "should handle empty client's list" do
153
+ @u.clients.delete(@c.id)
154
+ RhoconnectApi::list_clients('',@api_token,@u_fields[:login]).should == []
155
+ end
156
+
157
+ it "should create user using rect call" do
158
+ res = mock('HttpResponse')
159
+ res.stub!(:body).and_return(["21325fd9911044c6ad974785bf23c173"].to_json)
160
+ RestClient.stub(:post).and_return(res)
161
+ RestClient.should_receive(:post).once
162
+ RhoconnectApi::list_clients('some_url',@api_token,'testuser1').should == ["21325fd9911044c6ad974785bf23c173"]
163
+ end
164
+
165
+ it "should create client for a user using direct api call" do
166
+ RhoconnectApi::create_client('',@api_token,@u_fields[:login])
167
+ clients = User.load(@u_fields[:login]).clients.members
168
+ clients.size.should == 2
169
+ end
170
+
171
+ it "should create client using rect call" do
172
+ res = mock('HttpResponse')
173
+ res.stub!(:body).and_return("")
174
+ RestClient.stub(:post).and_return(res)
175
+ RestClient.should_receive(:post).once
176
+ RhoconnectApi::create_client('some_url',@api_token,'testuser1')
177
+ end
178
+
179
+ it "should delete client using direct api call" do
180
+ RhoconnectApi::delete_client('',@api_token,@u_fields[:login],@c.id).should == "Client deleted"
181
+ Client.is_exist?(@c.id).should == false
182
+ User.load(@u_fields[:login]).clients.members.should == []
183
+ end
184
+
185
+ it "should delete client using rect call" do
186
+ RestClient.stub(:post).and_return("Client deleted")
187
+ RestClient.should_receive(:post).once
188
+ RhoconnectApi::delete_client('some_url',@api_token,@u_fields[:login],@c.id).should == "Client deleted"
189
+ end
190
+
191
+ it "should list client attributes using direct api call" do
192
+ res = RhoconnectApi::get_client_params('',@api_token,@c.id)
193
+ res.delete_if { |attrib| attrib['name'] == 'rho__id' }
194
+ res.sort{|x,y| x['name']<=>y['name']}.should == [
195
+ {"name"=>"device_type", "value"=>"Apple", "type"=>"string"},
196
+ {"name"=>"device_pin", "value"=>"abcd", "type"=>"string"},
197
+ {"name"=>"device_port", "value"=>"3333", "type"=>"string"},
198
+ {"name"=>"user_id", "value"=>"testuser", "type"=>"string"},
199
+ {"name"=>"app_id", "value"=>"application", "type"=>"string"}].sort{|x,y| x['name']<=>y['name']}
200
+ end
201
+
202
+ it "should list client attributes using rest call" do
203
+ res = mock('HttpResponse')
204
+ res.stub!(:body).and_return(["blah"].to_json)
205
+ RestClient.stub(:post).and_return(res)
206
+ RestClient.should_receive(:post).once
207
+ RhoconnectApi::get_client_params('some_url',@api_token,'client_id')
208
+ end
209
+
210
+ it "should list all application sources using direct api call" do
211
+ RhoconnectApi::list_sources('',@api_token).sort.should ==
212
+ ["SimpleAdapter", "SampleAdapter", "FixedSchemaAdapter"].sort
213
+ end
214
+
215
+ it "should list all application sources using rest call" do
216
+ res = mock('HttpResponse')
217
+ res.stub!(:body).and_return(["SimpleAdapter", "SampleAdapter", "FixedSchemaAdapter"].to_json)
218
+ RestClient.stub(:post).and_return(res)
219
+ RestClient.should_receive(:post).once
220
+ RhoconnectApi::list_sources('some_url',@api_token)
221
+ end
222
+
223
+ it "should list source attributes using direct api call" do
224
+ result = RhoconnectApi::get_source_params(
225
+ '',@api_token,"SampleAdapter").sort {|x,y| x["name"] <=> y["name"] }
226
+ result.should == [
227
+ {"name"=>"rho__id", "value"=>"SampleAdapter", "type"=>"string"},
228
+ {"name"=>"source_id", "value"=>nil, "type"=>"integer"},
229
+ {"name"=>"name", "value"=>"SampleAdapter", "type"=>"string"},
230
+ {"name"=>"url", "value"=>"http://example.com", "type"=>"string"},
231
+ {"name"=>"login", "value"=>"testuser", "type"=>"string"},
232
+ {"name"=>"password", "value"=>"testpass", "type"=>"string"},
233
+ {"name"=>"priority", "value"=>3, "type"=>"integer"},
234
+ {"name"=>"callback_url", "value"=>nil, "type"=>"string"},
235
+ {"name"=>"poll_interval", "value"=>300, "type"=>"integer"},
236
+ {"name"=>"partition_type", "value"=>"user", "type"=>"string"},
237
+ {"name"=>"sync_type", "value"=>"incremental", "type"=>"string"},
238
+ {"name"=>"belongs_to", "type"=>"string", "value"=>nil},
239
+ {"name"=>"has_many", "type"=>"string", "value"=>"FixedSchemaAdapter,brand"},
240
+ {"name"=>"id", "value"=>"SampleAdapter", "type"=>"string"},
241
+ {"name"=>"queue", "value"=>nil, "type"=>"string"},
242
+ {"name"=>"query_queue", "value"=>nil, "type"=>"string"},
243
+ {"name"=>"cud_queue", "value"=>nil, "type"=>"string"},
244
+ {"name"=>"pass_through", "value"=>nil, "type"=>"string"}].sort {|x,y| x["name"] <=> y["name"] }
245
+ end
246
+
247
+ it "should list source attributes using rest call" do
248
+ res = mock('HttpResponse')
249
+ res.stub!(:body).and_return(["SimpleAdapter"].to_json)
250
+ RestClient.stub(:post).and_return(res)
251
+ RestClient.should_receive(:post).once
252
+ RhoconnectApi::get_source_params('some_url',@api_token,"SimpleAdapter")
253
+ end
254
+
255
+ it "should list of shared source documents using direct api call" do
256
+ RhoconnectApi::list_source_docs('',@api_token,"SimpleAdapter","*").sort.should == {
257
+ "md"=>"source:application:__shared__:SimpleAdapter:md",
258
+ "errors"=>"source:application:__shared__:SimpleAdapter:errors",
259
+ "md_size"=>"source:application:__shared__:SimpleAdapter:md_size",
260
+ "md_copy"=>"source:application:__shared__:SimpleAdapter:md_copy"}.sort
261
+ end
262
+
263
+ it "should list of shared source documents using rest call" do
264
+ res = mock('HttpResponse')
265
+ res.stub!(:body).and_return(["SimpleAdapter"].to_json)
266
+ RestClient.stub(:post).and_return(res)
267
+ RestClient.should_receive(:post).once
268
+ RhoconnectApi::list_source_docs('some_url',@api_token,"SimpleAdapter",'*')
269
+ end
270
+
271
+ it "should list client documents using direct api call" do
272
+ RhoconnectApi::list_client_docs('',@api_token,"SimpleAdapter",@c.id).should == {
273
+ "cd"=>"client:application:testuser:#{@c.id}:SimpleAdapter:cd",
274
+ "cd_size"=>"client:application:testuser:#{@c.id}:SimpleAdapter:cd_size",
275
+ "create"=>"client:application:testuser:#{@c.id}:SimpleAdapter:create",
276
+ "update"=>"client:application:testuser:#{@c.id}:SimpleAdapter:update",
277
+ "delete"=>"client:application:testuser:#{@c.id}:SimpleAdapter:delete",
278
+
279
+ "page"=>"client:application:testuser:#{@c.id}:SimpleAdapter:page",
280
+ "page_token"=>"client:application:testuser:#{@c.id}:SimpleAdapter:page_token",
281
+ "delete_page"=>"client:application:testuser:#{@c.id}:SimpleAdapter:delete_page",
282
+ "create_links"=>"client:application:testuser:#{@c.id}:SimpleAdapter:create_links",
283
+ "create_links_page"=>"client:application:testuser:#{@c.id}:SimpleAdapter:create_links_page",
284
+
285
+ "delete_errors"=>"client:application:testuser:#{@c.id}:SimpleAdapter:delete_errors",
286
+ "login_error"=>"client:application:testuser:#{@c.id}:SimpleAdapter:login_error",
287
+ "create_errors"=>"client:application:testuser:#{@c.id}:SimpleAdapter:create_errors",
288
+ "update_errors"=>"client:application:testuser:#{@c.id}:SimpleAdapter:update_errors",
289
+ "logoff_error"=>"client:application:testuser:#{@c.id}:SimpleAdapter:logoff_error",
290
+
291
+ "search"=>"client:application:testuser:#{@c.id}:SimpleAdapter:search",
292
+ "search_token"=>"client:application:testuser:#{@c.id}:SimpleAdapter:search_token",
293
+ "search_errors"=>"client:application:testuser:#{@c.id}:SimpleAdapter:search_errors"}
294
+ end
295
+
296
+ it "should list users using direct api call" do
297
+ RhoconnectApi::list_users('',@api_token).should == ['testuser']
298
+ end
299
+
300
+ it "should list users using rect call" do
301
+ res = mock('HttpResponse')
302
+ res.stub!(:body).and_return(['testuser'].to_json)
303
+ RestClient.stub(:post).and_return(res)
304
+ RestClient.should_receive(:post).once
305
+ RhoconnectApi::list_users('some_url',@api_token).should == ['testuser']
306
+ end
307
+
308
+ it "should create user using direct api call" do
309
+ RhoconnectApi::create_user('',@api_token,'testuser1','testpass1')
310
+ User.load('testuser1').login.should == 'testuser1'
311
+ User.authenticate('testuser1','testpass1').login.should == 'testuser1'
312
+ @a.users.members.sort.should == [@u.login, 'testuser1']
313
+ end
314
+
315
+ it "should create user using rect call" do
316
+ RestClient.stub(:post).and_return("User created")
317
+ RestClient.should_receive(:post).once
318
+ RhoconnectApi::create_user('some_url',@api_token,'testuser1','testpass1').should == "User created"
319
+ end
320
+
321
+ it "should update user using direct api call" do
322
+ RhoconnectApi::update_user('',@api_token, {:new_password => '123'})
323
+ User.authenticate('rhoadmin','123').login.should == 'rhoadmin'
324
+ end
325
+
326
+ it "should update user using rest call" do
327
+ RestClient.stub(:post)
328
+ RestClient.should_receive(:post).once
329
+ RhoconnectApi::update_user('some_url',@api_token, {:new_password => '123'})
330
+ end
331
+
332
+ it "should delete user direct api call" do
333
+ RhoconnectApi::create_user('',@api_token,'testuser1','testpass1').should == "User created"
334
+ User.is_exist?('testuser1').should == true
335
+ RhoconnectApi::delete_user('',@api_token,'testuser1').should == "User deleted"
336
+ User.is_exist?('testuser1').should == false
337
+ App.load(test_app_name).users.members.should == ["testuser"]
338
+ end
339
+
340
+ it "should delete user using rect call" do
341
+ RestClient.stub(:post).and_return("User deleted")
342
+ RestClient.should_receive(:post).once
343
+ RhoconnectApi::delete_user('some_url',@api_token,'testuser1').should == "User deleted"
344
+ end
345
+
346
+ it "should list clients using direct api call" do
347
+ res = RhoconnectApi::list_clients('',@api_token,@u_fields[:login])
348
+ res.is_a?(Array).should == true
349
+ res.size.should == 1
350
+ res[0].is_a?(String) == true
351
+ res[0].length.should == 32
352
+ end
353
+
354
+ it "should handle empty client's list" do
355
+ @u.clients.delete(@c.id)
356
+ RhoconnectApi::list_clients('',@api_token,@u_fields[:login]).should == []
357
+ end
358
+
359
+ it "should create user using rect call" do
360
+ res = mock('HttpResponse')
361
+ res.stub!(:body).and_return(["21325fd9911044c6ad974785bf23c173"].to_json)
362
+ RestClient.stub(:post).and_return(res)
363
+ RestClient.should_receive(:post).once
364
+ RhoconnectApi::list_clients('some_url',@api_token,'testuser1').should == ["21325fd9911044c6ad974785bf23c173"]
365
+ end
366
+
367
+ it "should create client for a user using direct api call" do
368
+ RhoconnectApi::create_client('',@api_token,@u_fields[:login])
369
+ clients = User.load(@u_fields[:login]).clients.members
370
+ clients.size.should == 2
371
+ end
372
+
373
+ it "should create client using rect call" do
374
+ res = mock('HttpResponse')
375
+ res.stub!(:body).and_return("")
376
+ RestClient.stub(:post).and_return(res)
377
+ RestClient.should_receive(:post).once
378
+ RhoconnectApi::create_client('some_url',@api_token,'testuser1')
379
+ end
380
+
381
+ it "should delete client using direct api call" do
382
+ RhoconnectApi::delete_client('',@api_token,@u_fields[:login],@c.id).should == "Client deleted"
383
+ Client.is_exist?(@c.id).should == false
384
+ User.load(@u_fields[:login]).clients.members.should == []
385
+ end
386
+
387
+ it "should delete client using rect call" do
388
+ RestClient.stub(:post).and_return("Client deleted")
389
+ RestClient.should_receive(:post).once
390
+ RhoconnectApi::delete_client('some_url',@api_token,@u_fields[:login],@c.id).should == "Client deleted"
391
+ end
392
+
393
+ it "should list client attributes using direct api call" do
394
+ res = RhoconnectApi::get_client_params('',@api_token,@c.id)
395
+ res.delete_if { |attrib| attrib['name'] == 'rho__id' }
396
+ res.sort{|x,y| x['name']<=>y['name']}.should == [
397
+ {"name"=>"device_type", "value"=>"Apple", "type"=>"string"},
398
+ {"name"=>"device_pin", "value"=>"abcd", "type"=>"string"},
399
+ {"name"=>"device_port", "value"=>"3333", "type"=>"string"},
400
+ {"name"=>"user_id", "value"=>"testuser", "type"=>"string"},
401
+ {"name"=>"app_id", "value"=>"application", "type"=>"string"}].sort{|x,y| x['name']<=>y['name']}
402
+ end
403
+
404
+ it "should list client attributes using rest call" do
405
+ res = mock('HttpResponse')
406
+ res.stub!(:body).and_return(["blah"].to_json)
407
+ RestClient.stub(:post).and_return(res)
408
+ RestClient.should_receive(:post).once
409
+ RhoconnectApi::get_client_params('some_url',@api_token,'client_id')
410
+ end
411
+
412
+ it "should list all application sources using direct api call" do
413
+ RhoconnectApi::list_sources('',@api_token).sort.should ==
414
+ ["SimpleAdapter", "SampleAdapter", "FixedSchemaAdapter"].sort
415
+ end
416
+
417
+ it "should list all application sources using rest call" do
418
+ res = mock('HttpResponse')
419
+ res.stub!(:body).and_return(["SimpleAdapter", "SampleAdapter", "FixedSchemaAdapter"].to_json)
420
+ RestClient.stub(:post).and_return(res)
421
+ RestClient.should_receive(:post).once
422
+ RhoconnectApi::list_sources('some_url',@api_token)
423
+ end
424
+
425
+ it "should list source attributes using direct api call" do
426
+ result = RhoconnectApi::get_source_params(
427
+ '',@api_token,"SampleAdapter").sort{|x,y| x['name']<=>y['name']}
428
+ result.should == [
429
+ {"name"=>"rho__id", "value"=>"SampleAdapter", "type"=>"string"},
430
+ {"name"=>"source_id", "value"=>nil, "type"=>"integer"},
431
+ {"name"=>"name", "value"=>"SampleAdapter", "type"=>"string"},
432
+ {"name"=>"url", "value"=>"http://example.com", "type"=>"string"},
433
+ {"name"=>"login", "value"=>"testuser", "type"=>"string"},
434
+ {"name"=>"password", "value"=>"testpass", "type"=>"string"},
435
+ {"name"=>"priority", "value"=>3, "type"=>"integer"},
436
+ {"name"=>"callback_url", "value"=>nil, "type"=>"string"},
437
+ {"name"=>"poll_interval", "value"=>300, "type"=>"integer"},
438
+ {"name"=>"partition_type", "value"=>"user", "type"=>"string"},
439
+ {"name"=>"sync_type", "value"=>"incremental", "type"=>"string"},
440
+ {"name"=>"belongs_to", "type"=>"string", "value"=>nil},
441
+ {"name"=>"has_many", "type"=>"string", "value"=>"FixedSchemaAdapter,brand"},
442
+ {"name"=>"id", "value"=>"SampleAdapter", "type"=>"string"},
443
+ {"name"=>"queue", "value"=>nil, "type"=>"string"},
444
+ {"name"=>"query_queue", "value"=>nil, "type"=>"string"},
445
+ {"name"=>"cud_queue", "value"=>nil, "type"=>"string"},
446
+ {"name"=>"pass_through", "value"=>nil, "type"=>"string"}].sort {|x,y| x["name"] <=> y["name"] }
447
+ end
448
+
449
+ it "should list source attributes using rest call" do
450
+ res = mock('HttpResponse')
451
+ res.stub!(:body).and_return(["SimpleAdapter"].to_json)
452
+ RestClient.stub(:post).and_return(res)
453
+ RestClient.should_receive(:post).once
454
+ RhoconnectApi::get_source_params('some_url',@api_token,"SimpleAdapter")
455
+ end
456
+
457
+ it "should list of shared source documents using direct api call" do
458
+ RhoconnectApi::list_source_docs('',@api_token,"SimpleAdapter","*").sort.should == {
459
+ "md"=>"source:application:__shared__:SimpleAdapter:md",
460
+ "errors"=>"source:application:__shared__:SimpleAdapter:errors",
461
+ "md_size"=>"source:application:__shared__:SimpleAdapter:md_size",
462
+ "md_copy"=>"source:application:__shared__:SimpleAdapter:md_copy"}.sort
463
+ end
464
+
465
+ it "should list of shared source documents using rest call" do
466
+ res = mock('HttpResponse')
467
+ res.stub!(:body).and_return(["SimpleAdapter"].to_json)
468
+ RestClient.stub(:post).and_return(res)
469
+ RestClient.should_receive(:post).once
470
+ RhoconnectApi::list_source_docs('some_url',@api_token,"SimpleAdapter",'*')
471
+ end
472
+
473
+ it "should list client documents using direct api call" do
474
+ RhoconnectApi::list_client_docs('',@api_token,"SimpleAdapter",@c.id).should == {
475
+ "cd"=>"client:application:testuser:#{@c.id}:SimpleAdapter:cd",
476
+ "cd_size"=>"client:application:testuser:#{@c.id}:SimpleAdapter:cd_size",
477
+ "create"=>"client:application:testuser:#{@c.id}:SimpleAdapter:create",
478
+ "update"=>"client:application:testuser:#{@c.id}:SimpleAdapter:update",
479
+ "delete"=>"client:application:testuser:#{@c.id}:SimpleAdapter:delete",
480
+
481
+ "page"=>"client:application:testuser:#{@c.id}:SimpleAdapter:page",
482
+ "page_token"=>"client:application:testuser:#{@c.id}:SimpleAdapter:page_token",
483
+ "delete_page"=>"client:application:testuser:#{@c.id}:SimpleAdapter:delete_page",
484
+ "create_links"=>"client:application:testuser:#{@c.id}:SimpleAdapter:create_links",
485
+ "create_links_page"=>"client:application:testuser:#{@c.id}:SimpleAdapter:create_links_page",
486
+
487
+ "delete_errors"=>"client:application:testuser:#{@c.id}:SimpleAdapter:delete_errors",
488
+ "login_error"=>"client:application:testuser:#{@c.id}:SimpleAdapter:login_error",
489
+ "create_errors"=>"client:application:testuser:#{@c.id}:SimpleAdapter:create_errors",
490
+ "update_errors"=>"client:application:testuser:#{@c.id}:SimpleAdapter:update_errors",
491
+ "logoff_error"=>"client:application:testuser:#{@c.id}:SimpleAdapter:logoff_error",
492
+
493
+ "search"=>"client:application:testuser:#{@c.id}:SimpleAdapter:search",
494
+ "search_token"=>"client:application:testuser:#{@c.id}:SimpleAdapter:search_token",
495
+ "search_errors"=>"client:application:testuser:#{@c.id}:SimpleAdapter:search_errors"}
496
+ end
497
+
498
+ it "should list client documents using rest call" do
499
+ res = mock('HttpResponse')
500
+ res.stub!(:body).and_return(["SimpleAdapter"].to_json)
501
+ RestClient.stub(:post).and_return(res)
502
+ RestClient.should_receive(:post).once
503
+ RhoconnectApi::list_client_docs('some_url',@api_token,"SimpleAdapter",'*')
504
+ end
505
+
506
+ it "should return db document by name using direct api call" do
507
+ data = {'1' => {'foo' => 'bar'}}
508
+ set_state('abc:abc' => data)
509
+ RhoconnectApi::get_db_doc('',@api_token,'abc:abc').should == data
510
+ end
511
+
512
+ it "should return db document by name and data_type using direct api call" do
513
+ data = 'some string'
514
+ set_state('abc:abc' => data)
515
+ RhoconnectApi::get_db_doc('',@api_token,'abc:abc','string').should == data
516
+ end
517
+
518
+ it "should return db document using rest call" do
519
+ data = 'some string'
520
+ res = mock('HttpResponse')
521
+ res.stub!(:body).and_return(data)
522
+ RestClient.stub(:post).and_return(res)
523
+ RestClient.should_receive(:post).once
524
+ RhoconnectApi::get_db_doc('some_url',@api_token,'abc:abc','string').should == data
525
+ end
526
+
527
+ it "should set db document by doc name and data using direct api call" do
528
+ data = {'1' => {'foo' => 'bar'}}
529
+ RhoconnectApi::set_db_doc('',@api_token,'abc:abc',data)
530
+ verify_result('abc:abc' => data)
531
+ end
532
+
533
+ it "should set db document by doc name, data type, and data using direct api call" do
534
+ data = 'some string'
535
+ RhoconnectApi::set_db_doc('',@api_token,'abc:abc:str',data,'string')
536
+ verify_result('abc:abc:str' => data)
537
+ end
538
+
539
+ it "should set db document using rest call" do
540
+ data = 'some string'
541
+ RestClient.stub(:post)
542
+ RestClient.should_receive(:post).once
543
+ RhoconnectApi::set_db_doc('some_url',@api_token,'abc:abc:str',data,'string')
544
+ end
545
+
546
+ it "should reset and re-create rhoadmin user with bootstrap using direct api call" do
547
+ Store.put_data('somedoc',{'foo'=>'bar'})
548
+ RhoconnectApi::reset('',@api_token).should == "DB reset"
549
+ App.is_exist?(test_app_name).should == true
550
+ Store.get_data('somedoc').should == {}
551
+ User.authenticate('rhoadmin','').should_not be_nil
552
+ end
553
+
554
+ it "should reset db using rest call" do
555
+ RestClient.stub(:post).and_return("DB reset")
556
+ RestClient.should_receive(:post).once
557
+ RhoconnectApi::reset('some_url',@api_token).should == "DB reset"
558
+ end
559
+
560
+ it "should do ping asynchronously using direct api call" do
561
+ params = {"user_id" => @u.id, "api_token" => @api_token,
562
+ "async" => "true","sources" => [@s.name], "message" => 'hello world',
563
+ "vibrate" => '5', "badge" => '5', "sound" => 'hello.mp3'}
564
+ PingJob.should_receive(:enqueue).once.with(params)
565
+ RhoconnectApi::ping('',@api_token,@u.id,params)
566
+ end
567
+
568
+ it "should do ping using rest call" do
569
+ RestClient.stub(:post)
570
+ RestClient.should_receive(:post).once
571
+ RhoconnectApi::ping('some_url',@api_token,@u.id,{})
572
+ end
573
+
574
+ it "should get license info using direct api call" do
575
+ RhoconnectApi::get_license_info('',@api_token).should == {
576
+ "available" => 9,
577
+ "issued" => "Fri Apr 23 17:20:13 -0700 2010",
578
+ "seats" => 10,
579
+ "rhosync_version" => "Version 1",
580
+ "licensee" => "Rhomobile" }
581
+ end
582
+
583
+ it "should get license info using rest call" do
584
+ res = mock('HttpResponse')
585
+ res.stub!(:body).and_return(['data'].to_json)
586
+ RestClient.stub(:post).and_return(res)
587
+ RestClient.should_receive(:post).once
588
+ RhoconnectApi::get_license_info('some_url',@api_token)
589
+ end
590
+
591
+ it "should get stats using direct api call" do
592
+ Rhoconnect.stats = true
593
+ Store.set_value('stat:foo','bar')
594
+ RhoconnectApi::stats('',@api_token,:metric => 'foo').should == 'bar'
595
+ Rhoconnect.stats = false
596
+ end
597
+
598
+ it "should get stats using rest call" do
599
+ res = mock('HttpResponse')
600
+ res.stub!(:body).and_return('bar')
601
+ RestClient.stub(:post).and_return(res)
602
+ RestClient.should_receive(:post).once.and_return(res)
603
+ RhoconnectApi::stats('some_url',@api_token,:metric => 'foo')
604
+ end
605
+ end
606
+ end
@@ -0,0 +1,29 @@
1
+ require File.join(File.dirname(__FILE__),'..','api_helper')
2
+
3
+ describe "RhoconnectApiDeleteUser" do
4
+ it_should_behave_like "ApiHelper" do
5
+
6
+ it "should save adapter url" do
7
+ params = {:api_token => @api_token,
8
+ :attributes => {:adapter_url => 'http://test.com'}}
9
+ post "/api/source/save_adapter", params
10
+ last_response.should be_ok
11
+ end
12
+
13
+ it "should get adapter url" do
14
+ params = {:api_token => @api_token,
15
+ :attributes => {:adapter_url => 'http://test.com'}}
16
+ post "/api/source/get_adapter", params
17
+ last_response.should be_ok
18
+ end
19
+
20
+ it "should get check deprecation warning in /api/get_adapter" do
21
+ params = {:api_token => @api_token,
22
+ :attributes => {:adapter_url => 'http://test.com'}}
23
+ post "/api/get_adapter", params
24
+ last_response.should be_ok
25
+ last_response.headers["Warning"].index('deprecated').should_not == nil
26
+ end
27
+ end
28
+
29
+ end