rabl 0.14.0 → 0.14.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (459) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +23 -2
  3. data/CONTRIBUTING.md +2 -2
  4. data/README.md +2 -3
  5. data/lib/rabl.rb +3 -3
  6. data/lib/rabl/builder.rb +16 -14
  7. data/lib/rabl/cache_engine.rb +30 -1
  8. data/lib/rabl/engine.rb +27 -10
  9. data/lib/rabl/helpers.rb +7 -3
  10. data/lib/rabl/railtie.rb +1 -1
  11. data/lib/rabl/template.rb +21 -1
  12. data/lib/rabl/version.rb +1 -1
  13. metadata +6 -453
  14. data/.gitignore +0 -8
  15. data/.travis.yml +0 -17
  16. data/Gemfile +0 -28
  17. data/Rakefile +0 -63
  18. data/examples/base.json.rabl +0 -8
  19. data/examples/demo.json.rabl +0 -42
  20. data/examples/inherited.json.rabl +0 -11
  21. data/fixtures/ashared/NOTES +0 -90
  22. data/fixtures/ashared/README +0 -39
  23. data/fixtures/ashared/controllers_rails_5/posts_controller.rb +0 -17
  24. data/fixtures/ashared/controllers_rails_5/users_controller.rb +0 -11
  25. data/fixtures/ashared/helpers/application_helper.rb +0 -5
  26. data/fixtures/ashared/migrate/20111002092016_create_users.rb +0 -15
  27. data/fixtures/ashared/migrate/20111002092019_create_posts.rb +0 -14
  28. data/fixtures/ashared/migrate/20111002092024_create_phone_numbers.rb +0 -16
  29. data/fixtures/ashared/models/phone_number.rb +0 -7
  30. data/fixtures/ashared/models/post.rb +0 -3
  31. data/fixtures/ashared/models/user.rb +0 -3
  32. data/fixtures/ashared/views/layouts/application.html.erb +0 -9
  33. data/fixtures/ashared/views/posts/_show_footer_script.js.erb +0 -1
  34. data/fixtures/ashared/views/posts/date.rabl +0 -3
  35. data/fixtures/ashared/views/posts/index.rabl +0 -12
  36. data/fixtures/ashared/views/posts/show.rabl +0 -17
  37. data/fixtures/ashared/views/users/index.json.rabl +0 -3
  38. data/fixtures/ashared/views/users/phone_number.json.rabl +0 -6
  39. data/fixtures/ashared/views/users/show.json.rabl +0 -16
  40. data/fixtures/ashared/views_rails_3/layouts/application.html.erb +0 -13
  41. data/fixtures/ashared/views_rails_3/posts/_show_footer_script.js.erb +0 -1
  42. data/fixtures/ashared/views_rails_3/posts/date.rabl +0 -3
  43. data/fixtures/ashared/views_rails_3/posts/index.html.erb +0 -3
  44. data/fixtures/ashared/views_rails_3/posts/index.rabl +0 -12
  45. data/fixtures/ashared/views_rails_3/posts/renderer.rabl +0 -8
  46. data/fixtures/ashared/views_rails_3/posts/renderer_partial.rabl +0 -4
  47. data/fixtures/ashared/views_rails_3/posts/show.html.erb +0 -3
  48. data/fixtures/ashared/views_rails_3/posts/show.rabl +0 -25
  49. data/fixtures/ashared/views_rails_3/posts/show.rabl_test_v1.rabl +0 -7
  50. data/fixtures/ashared/views_rails_3/users/index.json.rabl +0 -3
  51. data/fixtures/ashared/views_rails_3/users/phone_number.json.rabl +0 -8
  52. data/fixtures/ashared/views_rails_3/users/phone_number.xml.rabl +0 -1
  53. data/fixtures/ashared/views_rails_3/users/show.json.rabl +0 -16
  54. data/fixtures/ashared/views_rails_3/users/show.rabl_test_v1.rabl +0 -3
  55. data/fixtures/padrino_test/.components +0 -7
  56. data/fixtures/padrino_test/.gitignore +0 -7
  57. data/fixtures/padrino_test/Gemfile +0 -17
  58. data/fixtures/padrino_test/Rakefile +0 -3
  59. data/fixtures/padrino_test/app/app.rb +0 -31
  60. data/fixtures/padrino_test/app/controllers/posts.rb +0 -11
  61. data/fixtures/padrino_test/app/controllers/users.rb +0 -11
  62. data/fixtures/padrino_test/app/helpers/posts_helper.rb +0 -7
  63. data/fixtures/padrino_test/app/helpers/users_helper.rb +0 -7
  64. data/fixtures/padrino_test/app/views +0 -1
  65. data/fixtures/padrino_test/config.ru +0 -9
  66. data/fixtures/padrino_test/config/apps.rb +0 -34
  67. data/fixtures/padrino_test/config/boot.rb +0 -29
  68. data/fixtures/padrino_test/config/database.rb +0 -43
  69. data/fixtures/padrino_test/db/migrate +0 -1
  70. data/fixtures/padrino_test/db/schema.rb +0 -42
  71. data/fixtures/padrino_test/models +0 -1
  72. data/fixtures/padrino_test/public/favicon.ico +0 -0
  73. data/fixtures/padrino_test/test/app/controllers/posts_controller_test.rb +0 -1
  74. data/fixtures/padrino_test/test/app/controllers/users_controller_test.rb +0 -1
  75. data/fixtures/padrino_test/test/test.rake +0 -18
  76. data/fixtures/padrino_test/test/test_config.rb +0 -18
  77. data/fixtures/rails2/.gitignore +0 -1
  78. data/fixtures/rails2/Gemfile +0 -10
  79. data/fixtures/rails2/Rakefile +0 -14
  80. data/fixtures/rails2/app/controllers/application_controller.rb +0 -10
  81. data/fixtures/rails2/app/controllers/posts_controller.rb +0 -15
  82. data/fixtures/rails2/app/controllers/users_controller.rb +0 -15
  83. data/fixtures/rails2/app/helpers/application_helper.rb +0 -2
  84. data/fixtures/rails2/app/helpers/posts_helper.rb +0 -2
  85. data/fixtures/rails2/app/helpers/users_helper.rb +0 -2
  86. data/fixtures/rails2/app/models +0 -1
  87. data/fixtures/rails2/app/views +0 -1
  88. data/fixtures/rails2/config/boot.rb +0 -129
  89. data/fixtures/rails2/config/database.yml +0 -16
  90. data/fixtures/rails2/config/environment.rb +0 -64
  91. data/fixtures/rails2/config/environments/development.rb +0 -17
  92. data/fixtures/rails2/config/environments/production.rb +0 -28
  93. data/fixtures/rails2/config/environments/test.rb +0 -28
  94. data/fixtures/rails2/config/initializers/backtrace_silencers.rb +0 -7
  95. data/fixtures/rails2/config/initializers/cookie_verification_secret.rb +0 -7
  96. data/fixtures/rails2/config/initializers/inflections.rb +0 -10
  97. data/fixtures/rails2/config/initializers/mime_types.rb +0 -5
  98. data/fixtures/rails2/config/initializers/new_rails_defaults.rb +0 -21
  99. data/fixtures/rails2/config/initializers/session_store.rb +0 -15
  100. data/fixtures/rails2/config/locales/en.yml +0 -5
  101. data/fixtures/rails2/config/preinitializer.rb +0 -20
  102. data/fixtures/rails2/config/routes.rb +0 -45
  103. data/fixtures/rails2/db/migrate +0 -1
  104. data/fixtures/rails2/db/schema.rb +0 -40
  105. data/fixtures/rails2/db/seeds.rb +0 -7
  106. data/fixtures/rails2/public/404.html +0 -30
  107. data/fixtures/rails2/public/422.html +0 -30
  108. data/fixtures/rails2/public/500.html +0 -30
  109. data/fixtures/rails2/public/favicon.ico +0 -0
  110. data/fixtures/rails2/public/images/rails.png +0 -0
  111. data/fixtures/rails2/public/index.html +0 -275
  112. data/fixtures/rails2/public/robots.txt +0 -5
  113. data/fixtures/rails2/script/about +0 -4
  114. data/fixtures/rails2/script/console +0 -3
  115. data/fixtures/rails2/script/dbconsole +0 -3
  116. data/fixtures/rails2/script/destroy +0 -3
  117. data/fixtures/rails2/script/generate +0 -3
  118. data/fixtures/rails2/script/performance/benchmarker +0 -3
  119. data/fixtures/rails2/script/performance/profiler +0 -3
  120. data/fixtures/rails2/script/plugin +0 -3
  121. data/fixtures/rails2/script/runner +0 -3
  122. data/fixtures/rails2/script/server +0 -3
  123. data/fixtures/rails2/test/functionals/posts_controller_test.rb +0 -1
  124. data/fixtures/rails2/test/functionals/users_controller_test.rb +0 -1
  125. data/fixtures/rails2/test/test_helper.rb +0 -33
  126. data/fixtures/rails3/.gitignore +0 -4
  127. data/fixtures/rails3/Gemfile +0 -37
  128. data/fixtures/rails3/Rakefile +0 -12
  129. data/fixtures/rails3/app/controllers/application_controller.rb +0 -14
  130. data/fixtures/rails3/app/controllers/posts_controller.rb +0 -11
  131. data/fixtures/rails3/app/controllers/users_controller.rb +0 -11
  132. data/fixtures/rails3/app/models +0 -1
  133. data/fixtures/rails3/app/views +0 -1
  134. data/fixtures/rails3/config.ru +0 -4
  135. data/fixtures/rails3/config/application.rb +0 -42
  136. data/fixtures/rails3/config/boot.rb +0 -6
  137. data/fixtures/rails3/config/database.yml +0 -22
  138. data/fixtures/rails3/config/environment.rb +0 -5
  139. data/fixtures/rails3/config/environments/development.rb +0 -26
  140. data/fixtures/rails3/config/environments/production.rb +0 -49
  141. data/fixtures/rails3/config/environments/test.rb +0 -35
  142. data/fixtures/rails3/config/initializers/backtrace_silencers.rb +0 -7
  143. data/fixtures/rails3/config/initializers/inflections.rb +0 -10
  144. data/fixtures/rails3/config/initializers/mime_types.rb +0 -5
  145. data/fixtures/rails3/config/initializers/secret_token.rb +0 -7
  146. data/fixtures/rails3/config/initializers/session_store.rb +0 -8
  147. data/fixtures/rails3/config/locales/en.yml +0 -5
  148. data/fixtures/rails3/config/routes.rb +0 -61
  149. data/fixtures/rails3/db/migrate +0 -1
  150. data/fixtures/rails3/db/schema.rb +0 -42
  151. data/fixtures/rails3/db/seeds.rb +0 -7
  152. data/fixtures/rails3/lib/tasks/.gitkeep +0 -0
  153. data/fixtures/rails3/public/404.html +0 -26
  154. data/fixtures/rails3/public/422.html +0 -26
  155. data/fixtures/rails3/public/500.html +0 -26
  156. data/fixtures/rails3/public/favicon.ico +0 -0
  157. data/fixtures/rails3/public/images/rails.png +0 -0
  158. data/fixtures/rails3/public/index.html +0 -239
  159. data/fixtures/rails3/public/robots.txt +0 -5
  160. data/fixtures/rails3/public/stylesheets/.gitkeep +0 -0
  161. data/fixtures/rails3/script/rails +0 -6
  162. data/fixtures/rails3/test/functional/posts_controller_test.rb +0 -1
  163. data/fixtures/rails3/test/functional/users_controller_test.rb +0 -1
  164. data/fixtures/rails3/test/test_helper.rb +0 -26
  165. data/fixtures/rails3_2/.gitignore +0 -15
  166. data/fixtures/rails3_2/Gemfile +0 -40
  167. data/fixtures/rails3_2/README.rdoc +0 -261
  168. data/fixtures/rails3_2/Rakefile +0 -12
  169. data/fixtures/rails3_2/app/assets/images/rails.png +0 -0
  170. data/fixtures/rails3_2/app/assets/javascripts/application.js +0 -15
  171. data/fixtures/rails3_2/app/assets/javascripts/posts.js.coffee +0 -3
  172. data/fixtures/rails3_2/app/assets/javascripts/users.js.coffee +0 -3
  173. data/fixtures/rails3_2/app/assets/stylesheets/application.css +0 -13
  174. data/fixtures/rails3_2/app/assets/stylesheets/posts.css.scss +0 -3
  175. data/fixtures/rails3_2/app/assets/stylesheets/users.css.scss +0 -3
  176. data/fixtures/rails3_2/app/controllers/application_controller.rb +0 -14
  177. data/fixtures/rails3_2/app/controllers/posts_controller.rb +0 -16
  178. data/fixtures/rails3_2/app/controllers/users_controller.rb +0 -11
  179. data/fixtures/rails3_2/app/helpers/application_helper.rb +0 -5
  180. data/fixtures/rails3_2/app/helpers/posts_helper.rb +0 -2
  181. data/fixtures/rails3_2/app/helpers/users_helper.rb +0 -2
  182. data/fixtures/rails3_2/app/mailers/.gitkeep +0 -0
  183. data/fixtures/rails3_2/app/models +0 -1
  184. data/fixtures/rails3_2/app/views +0 -1
  185. data/fixtures/rails3_2/config.ru +0 -4
  186. data/fixtures/rails3_2/config/application.rb +0 -59
  187. data/fixtures/rails3_2/config/boot.rb +0 -6
  188. data/fixtures/rails3_2/config/database.yml +0 -25
  189. data/fixtures/rails3_2/config/environment.rb +0 -5
  190. data/fixtures/rails3_2/config/environments/development.rb +0 -37
  191. data/fixtures/rails3_2/config/environments/production.rb +0 -67
  192. data/fixtures/rails3_2/config/environments/test.rb +0 -37
  193. data/fixtures/rails3_2/config/initializers/backtrace_silencers.rb +0 -7
  194. data/fixtures/rails3_2/config/initializers/inflections.rb +0 -15
  195. data/fixtures/rails3_2/config/initializers/mime_types.rb +0 -7
  196. data/fixtures/rails3_2/config/initializers/secret_token.rb +0 -7
  197. data/fixtures/rails3_2/config/initializers/session_store.rb +0 -8
  198. data/fixtures/rails3_2/config/initializers/wrap_parameters.rb +0 -14
  199. data/fixtures/rails3_2/config/locales/en.yml +0 -5
  200. data/fixtures/rails3_2/config/routes.rb +0 -64
  201. data/fixtures/rails3_2/db/migrate +0 -1
  202. data/fixtures/rails3_2/db/schema.rb +0 -42
  203. data/fixtures/rails3_2/db/seeds.rb +0 -7
  204. data/fixtures/rails3_2/doc/README_FOR_APP +0 -2
  205. data/fixtures/rails3_2/lib/assets/.gitkeep +0 -0
  206. data/fixtures/rails3_2/lib/tasks/.gitkeep +0 -0
  207. data/fixtures/rails3_2/log/.gitkeep +0 -0
  208. data/fixtures/rails3_2/public/404.html +0 -26
  209. data/fixtures/rails3_2/public/422.html +0 -26
  210. data/fixtures/rails3_2/public/500.html +0 -25
  211. data/fixtures/rails3_2/public/favicon.ico +0 -0
  212. data/fixtures/rails3_2/public/index.html +0 -241
  213. data/fixtures/rails3_2/public/robots.txt +0 -5
  214. data/fixtures/rails3_2/script/rails +0 -6
  215. data/fixtures/rails3_2/test/fixtures/phone_numbers.yml +0 -11
  216. data/fixtures/rails3_2/test/fixtures/posts.yml +0 -11
  217. data/fixtures/rails3_2/test/fixtures/users.yml +0 -11
  218. data/fixtures/rails3_2/test/functional/posts_controller_test.rb +0 -1
  219. data/fixtures/rails3_2/test/functional/users_controller_test.rb +0 -1
  220. data/fixtures/rails3_2/test/integration/.gitkeep +0 -0
  221. data/fixtures/rails3_2/test/performance/browsing_test.rb +0 -12
  222. data/fixtures/rails3_2/test/test_helper.rb +0 -26
  223. data/fixtures/rails3_2/test/unit/helpers/posts_helper_test.rb +0 -4
  224. data/fixtures/rails3_2/test/unit/helpers/users_helper_test.rb +0 -4
  225. data/fixtures/rails3_2/test/unit/phone_number_test.rb +0 -7
  226. data/fixtures/rails3_2/test/unit/post_test.rb +0 -7
  227. data/fixtures/rails3_2/test/unit/user_test.rb +0 -7
  228. data/fixtures/rails3_2/vendor/assets/javascripts/.gitkeep +0 -0
  229. data/fixtures/rails3_2/vendor/assets/stylesheets/.gitkeep +0 -0
  230. data/fixtures/rails3_2/vendor/plugins/.gitkeep +0 -0
  231. data/fixtures/rails4/.gitignore +0 -16
  232. data/fixtures/rails4/Gemfile +0 -53
  233. data/fixtures/rails4/README.rdoc +0 -28
  234. data/fixtures/rails4/Rakefile +0 -11
  235. data/fixtures/rails4/app/assets/javascripts/application.js +0 -16
  236. data/fixtures/rails4/app/assets/stylesheets/application.css +0 -13
  237. data/fixtures/rails4/app/controllers/application_controller.rb +0 -5
  238. data/fixtures/rails4/app/controllers/concerns/.keep +0 -0
  239. data/fixtures/rails4/app/controllers/posts_controller.rb +0 -16
  240. data/fixtures/rails4/app/controllers/users_controller.rb +0 -11
  241. data/fixtures/rails4/app/helpers/application_helper.rb +0 -5
  242. data/fixtures/rails4/app/mailers/.keep +0 -0
  243. data/fixtures/rails4/app/models +0 -1
  244. data/fixtures/rails4/app/views +0 -1
  245. data/fixtures/rails4/bin/bundle +0 -3
  246. data/fixtures/rails4/bin/rails +0 -4
  247. data/fixtures/rails4/bin/rake +0 -4
  248. data/fixtures/rails4/config.ru +0 -4
  249. data/fixtures/rails4/config/application.rb +0 -23
  250. data/fixtures/rails4/config/boot.rb +0 -4
  251. data/fixtures/rails4/config/database.yml +0 -25
  252. data/fixtures/rails4/config/environment.rb +0 -5
  253. data/fixtures/rails4/config/environments/development.rb +0 -29
  254. data/fixtures/rails4/config/environments/production.rb +0 -80
  255. data/fixtures/rails4/config/environments/test.rb +0 -39
  256. data/fixtures/rails4/config/initializers/backtrace_silencers.rb +0 -7
  257. data/fixtures/rails4/config/initializers/filter_parameter_logging.rb +0 -4
  258. data/fixtures/rails4/config/initializers/inflections.rb +0 -16
  259. data/fixtures/rails4/config/initializers/mime_types.rb +0 -7
  260. data/fixtures/rails4/config/initializers/secret_token.rb +0 -12
  261. data/fixtures/rails4/config/initializers/session_store.rb +0 -3
  262. data/fixtures/rails4/config/initializers/wrap_parameters.rb +0 -14
  263. data/fixtures/rails4/config/locales/en.yml +0 -23
  264. data/fixtures/rails4/config/routes.rb +0 -55
  265. data/fixtures/rails4/db/migrate +0 -1
  266. data/fixtures/rails4/db/schema.rb +0 -42
  267. data/fixtures/rails4/db/seeds.rb +0 -7
  268. data/fixtures/rails4/lib/assets/.keep +0 -0
  269. data/fixtures/rails4/lib/tasks/.keep +0 -0
  270. data/fixtures/rails4/log/.keep +0 -0
  271. data/fixtures/rails4/public/404.html +0 -58
  272. data/fixtures/rails4/public/422.html +0 -58
  273. data/fixtures/rails4/public/500.html +0 -57
  274. data/fixtures/rails4/public/favicon.ico +0 -0
  275. data/fixtures/rails4/public/robots.txt +0 -5
  276. data/fixtures/rails4/test/controllers/.keep +0 -0
  277. data/fixtures/rails4/test/fixtures/.keep +0 -0
  278. data/fixtures/rails4/test/functional/posts_controller_test.rb +0 -1
  279. data/fixtures/rails4/test/functional/users_controller_test.rb +0 -1
  280. data/fixtures/rails4/test/helpers/.keep +0 -0
  281. data/fixtures/rails4/test/integration/.keep +0 -0
  282. data/fixtures/rails4/test/mailers/.keep +0 -0
  283. data/fixtures/rails4/test/models/.keep +0 -0
  284. data/fixtures/rails4/test/test_helper.rb +0 -26
  285. data/fixtures/rails4/vendor/assets/javascripts/.keep +0 -0
  286. data/fixtures/rails4/vendor/assets/stylesheets/.keep +0 -0
  287. data/fixtures/rails5/.gitignore +0 -21
  288. data/fixtures/rails5/Gemfile +0 -53
  289. data/fixtures/rails5/README.md +0 -24
  290. data/fixtures/rails5/Rakefile +0 -13
  291. data/fixtures/rails5/app/assets/config/manifest.js +0 -3
  292. data/fixtures/rails5/app/assets/images/.keep +0 -0
  293. data/fixtures/rails5/app/assets/javascripts/application.js +0 -16
  294. data/fixtures/rails5/app/assets/javascripts/cable.js +0 -13
  295. data/fixtures/rails5/app/assets/javascripts/channels/.keep +0 -0
  296. data/fixtures/rails5/app/assets/stylesheets/application.css +0 -15
  297. data/fixtures/rails5/app/channels/application_cable/channel.rb +0 -4
  298. data/fixtures/rails5/app/channels/application_cable/connection.rb +0 -4
  299. data/fixtures/rails5/app/controllers/application_controller.rb +0 -3
  300. data/fixtures/rails5/app/controllers/concerns/.keep +0 -0
  301. data/fixtures/rails5/app/controllers/posts_controller.rb +0 -1
  302. data/fixtures/rails5/app/controllers/users_controller.rb +0 -1
  303. data/fixtures/rails5/app/helpers +0 -1
  304. data/fixtures/rails5/app/jobs/application_job.rb +0 -2
  305. data/fixtures/rails5/app/mailers/application_mailer.rb +0 -4
  306. data/fixtures/rails5/app/models +0 -1
  307. data/fixtures/rails5/app/views +0 -1
  308. data/fixtures/rails5/bin/bundle +0 -3
  309. data/fixtures/rails5/bin/rails +0 -9
  310. data/fixtures/rails5/bin/rake +0 -9
  311. data/fixtures/rails5/bin/setup +0 -34
  312. data/fixtures/rails5/bin/spring +0 -15
  313. data/fixtures/rails5/bin/update +0 -29
  314. data/fixtures/rails5/config.ru +0 -5
  315. data/fixtures/rails5/config/application.rb +0 -15
  316. data/fixtures/rails5/config/boot.rb +0 -3
  317. data/fixtures/rails5/config/cable.yml +0 -9
  318. data/fixtures/rails5/config/database.yml +0 -25
  319. data/fixtures/rails5/config/environment.rb +0 -5
  320. data/fixtures/rails5/config/environments/development.rb +0 -54
  321. data/fixtures/rails5/config/environments/production.rb +0 -86
  322. data/fixtures/rails5/config/environments/test.rb +0 -42
  323. data/fixtures/rails5/config/initializers/application_controller_renderer.rb +0 -6
  324. data/fixtures/rails5/config/initializers/assets.rb +0 -11
  325. data/fixtures/rails5/config/initializers/backtrace_silencers.rb +0 -7
  326. data/fixtures/rails5/config/initializers/cookies_serializer.rb +0 -5
  327. data/fixtures/rails5/config/initializers/filter_parameter_logging.rb +0 -4
  328. data/fixtures/rails5/config/initializers/inflections.rb +0 -16
  329. data/fixtures/rails5/config/initializers/mime_types.rb +0 -6
  330. data/fixtures/rails5/config/initializers/new_framework_defaults.rb +0 -24
  331. data/fixtures/rails5/config/initializers/session_store.rb +0 -3
  332. data/fixtures/rails5/config/initializers/wrap_parameters.rb +0 -14
  333. data/fixtures/rails5/config/locales/en.yml +0 -23
  334. data/fixtures/rails5/config/puma.rb +0 -47
  335. data/fixtures/rails5/config/routes.rb +0 -8
  336. data/fixtures/rails5/config/secrets.yml +0 -22
  337. data/fixtures/rails5/config/spring.rb +0 -6
  338. data/fixtures/rails5/db/migrate +0 -1
  339. data/fixtures/rails5/db/schema.rb +0 -41
  340. data/fixtures/rails5/db/seeds.rb +0 -7
  341. data/fixtures/rails5/lib/assets/.keep +0 -0
  342. data/fixtures/rails5/lib/tasks/.keep +0 -0
  343. data/fixtures/rails5/log/.keep +0 -0
  344. data/fixtures/rails5/public/404.html +0 -67
  345. data/fixtures/rails5/public/422.html +0 -67
  346. data/fixtures/rails5/public/500.html +0 -66
  347. data/fixtures/rails5/public/apple-touch-icon-precomposed.png +0 -0
  348. data/fixtures/rails5/public/apple-touch-icon.png +0 -0
  349. data/fixtures/rails5/public/favicon.ico +0 -0
  350. data/fixtures/rails5/public/robots.txt +0 -5
  351. data/fixtures/rails5/test/controllers/.keep +0 -0
  352. data/fixtures/rails5/test/fixtures/.keep +0 -0
  353. data/fixtures/rails5/test/fixtures/files/.keep +0 -0
  354. data/fixtures/rails5/test/functional/posts_controller_test.rb +0 -1
  355. data/fixtures/rails5/test/functional/users_controller_test.rb +0 -1
  356. data/fixtures/rails5/test/helpers/.keep +0 -0
  357. data/fixtures/rails5/test/integration/.keep +0 -0
  358. data/fixtures/rails5/test/mailers/.keep +0 -0
  359. data/fixtures/rails5/test/models/.keep +0 -0
  360. data/fixtures/rails5/test/test_helper.rb +0 -26
  361. data/fixtures/rails5/tmp/.keep +0 -0
  362. data/fixtures/rails5/vendor/assets/javascripts/.keep +0 -0
  363. data/fixtures/rails5/vendor/assets/stylesheets/.keep +0 -0
  364. data/fixtures/rails5_api/.gitignore +0 -21
  365. data/fixtures/rails5_api/Gemfile +0 -46
  366. data/fixtures/rails5_api/README.md +0 -24
  367. data/fixtures/rails5_api/Rakefile +0 -13
  368. data/fixtures/rails5_api/app/channels/application_cable/channel.rb +0 -4
  369. data/fixtures/rails5_api/app/channels/application_cable/connection.rb +0 -4
  370. data/fixtures/rails5_api/app/controllers/application_controller.rb +0 -2
  371. data/fixtures/rails5_api/app/controllers/concerns/.keep +0 -0
  372. data/fixtures/rails5_api/app/controllers/posts_controller.rb +0 -1
  373. data/fixtures/rails5_api/app/controllers/users_controller.rb +0 -1
  374. data/fixtures/rails5_api/app/helpers +0 -1
  375. data/fixtures/rails5_api/app/jobs/application_job.rb +0 -2
  376. data/fixtures/rails5_api/app/mailers/application_mailer.rb +0 -4
  377. data/fixtures/rails5_api/app/models +0 -1
  378. data/fixtures/rails5_api/app/views +0 -1
  379. data/fixtures/rails5_api/bin/bundle +0 -3
  380. data/fixtures/rails5_api/bin/rails +0 -9
  381. data/fixtures/rails5_api/bin/rake +0 -9
  382. data/fixtures/rails5_api/bin/setup +0 -34
  383. data/fixtures/rails5_api/bin/spring +0 -17
  384. data/fixtures/rails5_api/bin/update +0 -29
  385. data/fixtures/rails5_api/config.ru +0 -5
  386. data/fixtures/rails5_api/config/application.rb +0 -30
  387. data/fixtures/rails5_api/config/boot.rb +0 -3
  388. data/fixtures/rails5_api/config/cable.yml +0 -9
  389. data/fixtures/rails5_api/config/database.yml +0 -25
  390. data/fixtures/rails5_api/config/environment.rb +0 -5
  391. data/fixtures/rails5_api/config/environments/development.rb +0 -47
  392. data/fixtures/rails5_api/config/environments/production.rb +0 -78
  393. data/fixtures/rails5_api/config/environments/test.rb +0 -42
  394. data/fixtures/rails5_api/config/initializers/application_controller_renderer.rb +0 -6
  395. data/fixtures/rails5_api/config/initializers/backtrace_silencers.rb +0 -7
  396. data/fixtures/rails5_api/config/initializers/cors.rb +0 -16
  397. data/fixtures/rails5_api/config/initializers/filter_parameter_logging.rb +0 -4
  398. data/fixtures/rails5_api/config/initializers/inflections.rb +0 -16
  399. data/fixtures/rails5_api/config/initializers/mime_types.rb +0 -5
  400. data/fixtures/rails5_api/config/initializers/new_framework_defaults.rb +0 -18
  401. data/fixtures/rails5_api/config/initializers/wrap_parameters.rb +0 -14
  402. data/fixtures/rails5_api/config/locales/en.yml +0 -23
  403. data/fixtures/rails5_api/config/puma.rb +0 -47
  404. data/fixtures/rails5_api/config/routes.rb +0 -8
  405. data/fixtures/rails5_api/config/secrets.yml +0 -22
  406. data/fixtures/rails5_api/config/spring.rb +0 -6
  407. data/fixtures/rails5_api/db/migrate +0 -1
  408. data/fixtures/rails5_api/db/schema.rb +0 -41
  409. data/fixtures/rails5_api/db/seeds.rb +0 -7
  410. data/fixtures/rails5_api/lib/tasks/.keep +0 -0
  411. data/fixtures/rails5_api/log/.keep +0 -0
  412. data/fixtures/rails5_api/public/robots.txt +0 -5
  413. data/fixtures/rails5_api/test/controllers/.keep +0 -0
  414. data/fixtures/rails5_api/test/fixtures/.keep +0 -0
  415. data/fixtures/rails5_api/test/fixtures/files/.keep +0 -0
  416. data/fixtures/rails5_api/test/functional/posts_controller_test.rb +0 -1
  417. data/fixtures/rails5_api/test/functional/users_controller_test.rb +0 -1
  418. data/fixtures/rails5_api/test/integration/.keep +0 -0
  419. data/fixtures/rails5_api/test/mailers/.keep +0 -0
  420. data/fixtures/rails5_api/test/models/.keep +0 -0
  421. data/fixtures/rails5_api/test/test_helper.rb +0 -39
  422. data/fixtures/rails5_api/tmp/.keep +0 -0
  423. data/fixtures/sinatra_test/Gemfile +0 -13
  424. data/fixtures/sinatra_test/Rakefile +0 -6
  425. data/fixtures/sinatra_test/app.rb +0 -55
  426. data/fixtures/sinatra_test/config.ru +0 -7
  427. data/fixtures/sinatra_test/db/migrate +0 -1
  428. data/fixtures/sinatra_test/models +0 -1
  429. data/fixtures/sinatra_test/test/functional/posts_controller_test.rb +0 -1
  430. data/fixtures/sinatra_test/test/functional/users_controller_test.rb +0 -1
  431. data/fixtures/sinatra_test/test/test_helper.rb +0 -19
  432. data/fixtures/sinatra_test/views +0 -1
  433. data/rabl.gemspec +0 -36
  434. data/test.watchr +0 -47
  435. data/test/bson_engine_test.rb +0 -310
  436. data/test/builder_test.rb +0 -388
  437. data/test/configuration_test.rb +0 -91
  438. data/test/engine_test.rb +0 -841
  439. data/test/helpers_test.rb +0 -136
  440. data/test/integration/posts_controller_test.rb +0 -108
  441. data/test/integration/rails3_2/posts_controller_test.rb +0 -263
  442. data/test/integration/rails3_2/users_controller_test.rb +0 -87
  443. data/test/integration/rails4/posts_controller_test.rb +0 -248
  444. data/test/integration/rails4/users_controller_test.rb +0 -87
  445. data/test/integration/rails5/posts_controller_test.rb +0 -251
  446. data/test/integration/rails5/users_controller_test.rb +0 -87
  447. data/test/integration/test_init.rb +0 -36
  448. data/test/integration/users_controller_test.rb +0 -87
  449. data/test/models/ormless.rb +0 -3
  450. data/test/models/user.rb +0 -35
  451. data/test/msgpack_engine_test.rb +0 -312
  452. data/test/multi_builder_test.rb +0 -69
  453. data/test/partials_test.rb +0 -205
  454. data/test/plist_engine_test.rb +0 -308
  455. data/test/renderer_test.rb +0 -390
  456. data/test/silence.rb +0 -21
  457. data/test/template_test.rb +0 -63
  458. data/test/teststrap.rb +0 -37
  459. data/test/xml_test.rb +0 -297
data/test.watchr DELETED
@@ -1,47 +0,0 @@
1
- ENV["WATCHR"] = "1"
2
- system 'clear'
3
-
4
- def run(cmd)
5
- puts(cmd)
6
- system cmd
7
- end
8
-
9
- def run_test_file(file)
10
- system('clear')
11
- run(%Q(ruby -I"lib:test" -rubygems #{file}))
12
- end
13
-
14
- def run_all_tests
15
- system('clear')
16
- run('rake test')
17
- end
18
-
19
- def related_test_files(path)
20
- Dir['test/**/*.rb'].select { |file| file =~ /#{File.basename(path).split(".").first}_test.rb/ }
21
- end
22
-
23
- watch('test/teststrap\.rb') { run_all_tests }
24
- watch('test/(.*).*_test\.rb') { |m| run_test_file(m[0]) }
25
- watch('lib/.*/.*\.rb') { |m| related_test_files(m[0]).map {|tf| run_test_file(tf) } }
26
-
27
- # Ctrl-\
28
- Signal.trap 'QUIT' do
29
- puts " --- Running all tests ---\n\n"
30
- run_all_tests
31
- end
32
-
33
- @interrupted = false
34
-
35
- # Ctrl-C
36
- Signal.trap 'INT' do
37
- if @interrupted then
38
- @wants_to_quit = true
39
- abort("\n")
40
- else
41
- puts "Interrupt a second time to quit"
42
- @interrupted = true
43
- Kernel.sleep 1.5
44
- # raise Interrupt, nil # let the run loop catch it
45
- run_all_tests
46
- end
47
- end
@@ -1,310 +0,0 @@
1
- require File.expand_path('../teststrap', __FILE__)
2
- require 'rabl/template'
3
-
4
- context "Rabl::Engine" do
5
- helper(:rabl) { |t| RablTemplate.new("code", :format => 'bson') { t } }
6
-
7
- context "with bson defaults" do
8
- setup do
9
- Rabl.configure do |config|
10
- # Comment this line out because include_bson_root is default.
11
- #config.include_bson_root = true
12
- end
13
- end
14
-
15
- context "#object" do
16
- asserts "that it sets data source" do
17
- template = rabl %q{
18
- object @user
19
- }
20
- scope = Object.new
21
- scope.instance_variable_set :@user, User.new
22
- template.render(scope)
23
- end.matches "\x10\x00\x00\x00\x03user\x00\x05\x00\x00\x00\x00\x00"
24
-
25
- asserts "that it can set root node" do
26
- template = rabl %q{
27
- object @user => :person
28
- }
29
- scope = Object.new
30
- scope.instance_variable_set :@user, User.new
31
- template.render(scope).split("").sort
32
- end.equals "\x12\x00\x00\x00\x03person\x00\x05\x00\x00\x00\x00\x00".split("").sort
33
- end
34
-
35
- context "#collection" do
36
- asserts "that it sets object to be casted as a simple array" do
37
- template = rabl %{
38
- collection @users
39
- }
40
- scope = Object.new
41
- scope.instance_variable_set :@users, [User.new, User.new]
42
- template.render(scope).split("").sort
43
- end.equals "7\x00\x00\x00\x04users\x00+\x00\x00\x00\x030\x00\x10\x00\x00\x00\x03user\x00\x05\x00\x00\x00\x00\x00\x031\x00\x10\x00\x00\x00\x03user\x00\x05\x00\x00\x00\x00\x00\x00\x00".split("").sort
44
-
45
- asserts "that it sets root node for objects" do
46
- template = rabl %{
47
- collection @users => :people
48
- }
49
- scope = Object.new
50
- scope.instance_variable_set :@users, [User.new, User.new]
51
- template.render(scope).split("").sort
52
- end.equals "<\x00\x00\x00\x04people\x00/\x00\x00\x00\x030\x00\x12\x00\x00\x00\x03person\x00\x05\x00\x00\x00\x00\x00\x031\x00\x12\x00\x00\x00\x03person\x00\x05\x00\x00\x00\x00\x00\x00\x00".split("").sort
53
- end
54
-
55
- context "#attribute" do
56
- asserts "that it adds an attribute or method to be included in output" do
57
- template = rabl %{
58
- object @user
59
- attribute :name
60
- }
61
- scope = Object.new
62
- scope.instance_variable_set :@user, User.new(:name => 'irvine')
63
- template.render(scope).split("").sort
64
- end.equals "!\x00\x00\x00\x03user\x00\x16\x00\x00\x00\x02name\x00\a\x00\x00\x00irvine\x00\x00\x00".split("").sort
65
-
66
- asserts "that it can add attribute under a different key name through :as" do
67
- template = rabl %{
68
- object @user
69
- attribute :name, :as => 'city'
70
- }
71
- scope = Object.new
72
- scope.instance_variable_set :@user, User.new(:name => 'irvine')
73
- template.render(scope).split("").sort
74
- end.equals "!\x00\x00\x00\x03user\x00\x16\x00\x00\x00\x02city\x00\a\x00\x00\x00irvine\x00\x00\x00".split("").sort
75
-
76
- asserts "that it can add attribute under a different key name through hash" do
77
- template = rabl %{
78
- object @user
79
- attribute :name => :city
80
- }
81
- scope = Object.new
82
- scope.instance_variable_set :@user, User.new(:name => 'irvine')
83
- template.render(scope).split("").sort
84
- end.equals "!\x00\x00\x00\x03user\x00\x16\x00\x00\x00\x02city\x00\a\x00\x00\x00irvine\x00\x00\x00".split("").sort
85
- end
86
-
87
- context "#code" do
88
- asserts "that it can create an arbitraty code node" do
89
- template = rabl %{
90
- code(:foo) { 'bar' }
91
- }
92
- template.render(Object.new).split("").sort
93
- end.equals "\x12\x00\x00\x00\x02foo\x00\x04\x00\x00\x00bar\x00\x00".split("").sort
94
-
95
- asserts "that it can be passed conditionals" do
96
- template = rabl %{
97
- code(:foo, :if => lambda { |i| false }) { 'bar' }
98
- }
99
- template.render(Object.new).split("").sort
100
- end.equals "\x05\x00\x00\x00\x00".split("").sort
101
- end
102
-
103
- context "#child" do
104
- asserts "that it can create a child node" do
105
- template = rabl %{
106
- object @user
107
- attribute :name
108
- child(@user) { attribute :city }
109
- }
110
- scope = Object.new
111
- scope.instance_variable_set :@user, User.new(:name => 'leo', :city => 'LA')
112
- template.render(scope).split("").sort
113
- end.equals "6\x00\x00\x00\x03user\x00+\x00\x00\x00\x02name\x00\x04\x00\x00\x00leo\x00\x03user\x00\x12\x00\x00\x00\x02city\x00\x03\x00\x00\x00LA\x00\x00\x00\x00".split("").sort
114
-
115
- asserts "that it can create a child node with different key" do
116
- template = rabl %{
117
- object @user
118
- attribute :name
119
- child(@user => :person) { attribute :city }
120
- }
121
- scope = Object.new
122
- scope.instance_variable_set :@user, User.new(:name => 'leo', :city => 'LA')
123
- template.render(scope).split("").sort
124
- end.equals "8\x00\x00\x00\x03user\x00-\x00\x00\x00\x02name\x00\x04\x00\x00\x00leo\x00\x03person\x00\x12\x00\x00\x00\x02city\x00\x03\x00\x00\x00LA\x00\x00\x00\x00".split("").sort
125
- end
126
-
127
- context "#glue" do
128
- asserts "that it glues data from a child node" do
129
- template = rabl %{
130
- object @user
131
- attribute :name
132
- glue(@user) { attribute :city }
133
- glue(@user) { attribute :age }
134
- }
135
- scope = Object.new
136
- scope.instance_variable_set :@user, User.new(:name => 'leo', :city => 'LA', :age => 12)
137
- template.render(scope).split("").sort
138
- end.equals "4\x00\x00\x00\x03user\x00)\x00\x00\x00\x02name\x00\x04\x00\x00\x00leo\x00\x02city\x00\x03\x00\x00\x00LA\x00\x10age\x00\f\x00\x00\x00\x00\x00".split("").sort
139
- end
140
-
141
- teardown do
142
- Rabl.reset_configuration!
143
- end
144
- end
145
-
146
- context "with bson_engine" do
147
- setup do
148
- class CustomEncodeEngine
149
- def self.serialize string
150
- 42
151
- end
152
- end
153
-
154
- Rabl.configure do |config|
155
- config.bson_engine = CustomEncodeEngine
156
- end
157
- end
158
-
159
- asserts 'that it returns process by custom to_json' do
160
- template = rabl %q{
161
- object @user
162
- }
163
- scope = Object.new
164
- scope.instance_variable_set :@user, User.new
165
- template.render(scope)
166
- end.equals "42"
167
-
168
- teardown do
169
- Rabl.reset_configuration!
170
- end
171
- end
172
-
173
- context "without bson root" do
174
- setup do
175
- Rabl.configure do |config|
176
- config.include_bson_root = false
177
- end
178
- end
179
-
180
- context "#object" do
181
- asserts "that it sets data source" do
182
- template = rabl %q{
183
- object @user
184
- }
185
- scope = Object.new
186
- scope.instance_variable_set :@user, User.new
187
- template.render(scope)
188
- end.matches "\x05\x00\x00\x00\x00"
189
-
190
- asserts "that it can set root node" do
191
- template = rabl %q{
192
- object @user => :person
193
- }
194
- scope = Object.new
195
- scope.instance_variable_set :@user, User.new
196
- template.render(scope)
197
- end.equals "\x05\x00\x00\x00\x00"
198
- end
199
-
200
- context "#collection" do
201
- asserts "that it sets object to be casted as a simple array" do
202
- template = rabl %{
203
- collection @users
204
- }
205
- scope = Object.new
206
- scope.instance_variable_set :@users, [User.new, User.new]
207
- template.render(scope).split("").sort
208
- end.equals "!\x00\x00\x00\x04users\x00\x15\x00\x00\x00\x030\x00\x05\x00\x00\x00\x00\x031\x00\x05\x00\x00\x00\x00\x00\x00".split("").sort
209
-
210
- asserts "that it sets root node for objects" do
211
- template = rabl %{
212
- collection @users => :person
213
- }
214
- scope = Object.new
215
- scope.instance_variable_set :@users, [User.new, User.new]
216
- template.render(scope).split("").sort
217
- end.equals "\"\x00\x00\x00\x04person\x00\x15\x00\x00\x00\x030\x00\x05\x00\x00\x00\x00\x031\x00\x05\x00\x00\x00\x00\x00\x00".split("").sort
218
- end
219
-
220
- context "#attribute" do
221
- asserts "that it adds an attribute or method to be included in output" do
222
- template = rabl %{
223
- object @user
224
- attribute :name
225
- }
226
- scope = Object.new
227
- scope.instance_variable_set :@user, User.new(:name => 'irvine')
228
- template.render(scope).split("").sort
229
- end.equals "\x16\x00\x00\x00\x02name\x00\a\x00\x00\x00irvine\x00\x00".split("").sort
230
-
231
- asserts "that it can add attribute under a different key name through :as" do
232
- template = rabl %{
233
- object @user
234
- attribute :name, :as => 'city'
235
- }
236
- scope = Object.new
237
- scope.instance_variable_set :@user, User.new(:name => 'irvine')
238
- template.render(scope).split("").sort
239
- end.equals "\x16\x00\x00\x00\x02city\x00\a\x00\x00\x00irvine\x00\x00".split("").sort
240
-
241
- asserts "that it can add attribute under a different key name through hash" do
242
- template = rabl %{
243
- object @user
244
- attribute :name => :city
245
- }
246
- scope = Object.new
247
- scope.instance_variable_set :@user, User.new(:name => 'irvine')
248
- template.render(scope).split("").sort
249
- end.equals "\x16\x00\x00\x00\x02city\x00\a\x00\x00\x00irvine\x00\x00".split("").sort
250
- end
251
-
252
- context "#code" do
253
- asserts "that it can create an arbitraty code node" do
254
- template = rabl %{
255
- code(:foo) { 'bar' }
256
- }
257
- template.render(Object.new).split("").sort
258
- end.equals "\x12\x00\x00\x00\x02foo\x00\x04\x00\x00\x00bar\x00\x00".split("").sort
259
-
260
- asserts "that it can be passed conditionals" do
261
- template = rabl %{
262
- code(:foo, :if => lambda { |i| false }) { 'bar' }
263
- }
264
- template.render(Object.new).split("").sort
265
- end.equals "\x05\x00\x00\x00\x00".split("").sort
266
- end
267
-
268
- context "#child" do
269
- asserts "that it can create a child node" do
270
- template = rabl %{
271
- object @user
272
- attribute :name
273
- child(@user) { attribute :city }
274
- }
275
- scope = Object.new
276
- scope.instance_variable_set :@user, User.new(:name => 'leo', :city => 'LA')
277
- template.render(scope).split("").sort
278
- end.equals "+\x00\x00\x00\x02name\x00\x04\x00\x00\x00leo\x00\x03user\x00\x12\x00\x00\x00\x02city\x00\x03\x00\x00\x00LA\x00\x00\x00".split("").sort
279
-
280
- asserts "that it can create a child node with different key" do
281
- template = rabl %{
282
- object @user
283
- attribute :name
284
- child(@user => :person) { attribute :city }
285
- }
286
- scope = Object.new
287
- scope.instance_variable_set :@user, User.new(:name => 'leo', :city => 'LA')
288
- template.render(scope).split("").sort
289
- end.equals "-\x00\x00\x00\x02name\x00\x04\x00\x00\x00leo\x00\x03person\x00\x12\x00\x00\x00\x02city\x00\x03\x00\x00\x00LA\x00\x00\x00".split("").sort
290
- end
291
-
292
- context "#glue" do
293
- asserts "that it glues data from a child node" do
294
- template = rabl %{
295
- object @user
296
- attribute :name
297
- glue(@user) { attribute :city }
298
- glue(@user) { attribute :age }
299
- }
300
- scope = Object.new
301
- scope.instance_variable_set :@user, User.new(:name => 'leo', :city => 'LA', :age => 12)
302
- template.render(scope).split("").sort
303
- end.equals ")\x00\x00\x00\x02name\x00\x04\x00\x00\x00leo\x00\x02city\x00\x03\x00\x00\x00LA\x00\x10age\x00\f\x00\x00\x00\x00".split("").sort
304
- end
305
-
306
- teardown do
307
- Rabl.reset_configuration!
308
- end
309
- end
310
- end
data/test/builder_test.rb DELETED
@@ -1,388 +0,0 @@
1
- require File.expand_path('../teststrap', __FILE__)
2
-
3
- context "Rabl::Builder" do
4
- helper(:builder) { |*args| Rabl::Builder.new(*args) }
5
- helper(:build_hash) { |*args| builder(*args).to_hash }
6
-
7
- setup do
8
- @users = [User.new, User.new]
9
- @user = User.new
10
- builder(nil, nil, {:view_path => '/path/to/views'})
11
- end
12
-
13
- context "#initialize" do
14
- asserts_topic.assigns :options
15
- asserts_topic.assigns :_view_path
16
- end
17
-
18
- context "#to_hash" do
19
- context "when given a simple object" do
20
- setup { builder(nil, { :attributes => [ { :name => :name } ] }) }
21
- asserts "that the object is set properly" do
22
- topic.to_hash(User.new, nil, :root_name => "user")
23
- end.equivalent_to({ "user" => { :name => "rabl" } })
24
- end
25
-
26
- context "when given an object alias" do
27
- setup { builder(nil, { :attributes => [ { :name => :name, :options => { :as => :foo } } ] }) }
28
- asserts "that the object is set properly" do
29
- topic.to_hash(User.new, nil, :root_name => "person")
30
- end.equivalent_to({ "person" => { :foo => "rabl" } })
31
- end
32
-
33
- context "when specified with no root" do
34
- setup { builder(nil, { :attributes => [ { :name => :name, :options => { :as => :name } } ] }) }
35
- asserts "that the object is set properly" do
36
- topic.to_hash(User.new, nil, :root => false)
37
- end.equivalent_to({ :name => "rabl" })
38
- end
39
-
40
- context "when nil values are replaced with empty strings" do
41
- setup do
42
- Rabl.configuration.replace_nil_values_with_empty_strings = true
43
- builder(nil, { :attributes => [ { :name => :name } ], :node => [{ :name => :extra, :options => {}, :block => lambda { |u| { :twitter => u.twitter } } }] })
44
- end
45
-
46
- asserts "that an empty string is returned as the value" do
47
- topic.to_hash(User.new(:name => nil, :twitter => nil))
48
- end.equivalent_to({ :name => '', :extra => { :twitter => '' } })
49
-
50
- asserts "that it handles existing non nil values correctly" do
51
- topic.to_hash(User.new(:name => 10, :twitter => 'twitter'))
52
- end.equivalent_to({ :name => 10, :extra => { :twitter => 'twitter' } })
53
-
54
- teardown do
55
- Rabl.configuration.replace_nil_values_with_empty_strings = false
56
- end
57
- end
58
-
59
- context "when empty string values are replaced with nil values" do
60
- setup do
61
- Rabl.configuration.replace_empty_string_values_with_nil_values = true
62
- builder(nil, { :attributes => [ { :name => :name } ], :node => [{ :name => :extra, :options => {}, :block => lambda { |u| { :twitter => u.twitter } } }] })
63
- end
64
-
65
- asserts "that nil is returned as the value" do
66
- topic.to_hash(User.new(:name => "", :twitter => ''))
67
- end.equivalent_to({ :name => nil, :extra => { :twitter => nil } })
68
-
69
- asserts "that it handles existing nil values correctly" do
70
- topic.to_hash(User.new(:name => nil, :twitter => nil))
71
- end.equivalent_to({ :name => nil, :extra => { :twitter => nil } })
72
-
73
- asserts "that it handles existing non nil values correctly" do
74
- topic.to_hash(User.new(:name => 10, :twitter => 'twitter'))
75
- end.equivalent_to({ :name => 10, :extra => { :twitter => 'twitter' } })
76
-
77
- teardown do
78
- Rabl.configuration.replace_empty_string_values_with_nil_values = false
79
- end
80
- end
81
-
82
- context "when nil values are excluded" do
83
- setup do
84
- Rabl.configuration.exclude_nil_values = true
85
- builder(nil, { :attributes => [ { :name => :name } ] })
86
- end
87
- asserts "that an nil attribute is not returned" do
88
- topic.to_hash(User.new(:name => nil))
89
- end.equivalent_to({ })
90
- teardown do
91
- Rabl.configuration.exclude_nil_values = false
92
- end
93
- end
94
-
95
- context "when keys are camelized" do
96
- setup do
97
- Rabl.configuration.camelize_keys = true
98
- builder(nil, { :attributes => [ { :name => :first_pets_name } ] })
99
- end
100
- asserts "that the key is camelized" do
101
- topic.to_hash(User.new)
102
- end.equivalent_to({ :firstPetsName => 'jack' })
103
- teardown do
104
- Rabl.configuration.camelize_keys = false
105
- end
106
- end
107
-
108
- context "when keys are camelized with upper case first letter" do
109
- setup do
110
- Rabl.configuration.camelize_keys = :upper
111
- builder(nil, { :attributes => [ { :name => :first_pets_name } ] })
112
- end
113
- asserts "that the key is camelized with upper case first letter" do
114
- topic.to_hash(User.new)
115
- end.equivalent_to({ :FirstPetsName => 'jack' })
116
- teardown do
117
- Rabl.configuration.camelize_keys = false
118
- end
119
- end
120
- end
121
-
122
- context "#attribute" do
123
- asserts "that the node" do
124
- build_hash @user, :attributes => [ { :name => :name }, { :name => :city, :options => { :as => :city } } ]
125
- end.equivalent_to({:name => 'rabl', :city => 'irvine'})
126
-
127
- context "that with a non-existent attribute" do
128
- context "when non-existent attributes are allowed by the configuration" do
129
- setup { stub(Rabl.configuration).raise_on_missing_attribute { false } }
130
-
131
- asserts "the node" do
132
- build_hash @user, :attributes => [ { :name => :fake } ]
133
- end.equals({})
134
- end
135
-
136
- context "when non-existent attributes are forbidden by the configuration" do
137
- setup { stub(Rabl.configuration).raise_on_missing_attribute { true } }
138
-
139
- asserts "the node" do
140
- build_hash @user, :attributes => [ { :name => :fake } ]
141
- end.raises(RuntimeError)
142
- end
143
- end
144
-
145
- context "that with a string key" do
146
- setup { builder(nil, { :attributes => [ { :name => "name" } ] }) }
147
- asserts "the node name is converted to a symbol" do
148
- topic.to_hash(User.new, :name => "user")
149
- end.equivalent_to({ :name => "rabl" })
150
- end
151
-
152
- context "that with the same node names as strings and symbols" do
153
- setup { builder(nil, { :attributes => [ { :name => "name" }, { :name => :name } ] }) }
154
- asserts "the nodes aren't duplicated" do
155
- topic.to_hash(User.new, :name => "user")
156
- end.equivalent_to({ :name => "rabl" })
157
- end
158
- end
159
-
160
- context "#node" do
161
- asserts "that it has node :foo" do
162
- build_hash @user, :node => [{ :name => :foo, :options => {}, :block => lambda { |u| "bar" } }]
163
- end.equivalent_to({:foo => 'bar'})
164
-
165
- asserts "that using object it has node :boo" do
166
- build_hash @user, :node => [
167
- { :name => :foo, :options => {}, :block => lambda { |u| "bar" } },
168
- { :name => :baz, :options => {}, :block => lambda { |u| u.city } }
169
- ]
170
- end.equivalent_to({:foo => 'bar', :baz => 'irvine'})
171
-
172
- asserts "that it converts the node name to a symbol" do
173
- build_hash @user, :node => [{ :name => "foo", :options => {}, :block => lambda { |u| "bar" } }]
174
- end.equivalent_to({:foo => 'bar'})
175
-
176
- asserts "that the same node names as a string and symbol aren't duplicated" do
177
- build_hash @user, :node => [
178
- { :name => "foo", :options => {}, :block => lambda { |u| "bar" } },
179
- { :name => :foo, :options => {}, :block => lambda { |u| "bar" } }
180
- ]
181
- end.equivalent_to({:foo => 'bar'})
182
- end
183
-
184
- context "#child" do
185
- asserts "that it generates if no data present" do
186
- builder(nil, :child => []).to_hash(@user)
187
- end.equals({})
188
-
189
- asserts "that it generates with a hash" do
190
- b = builder(nil, :child => [ { :data => { @user => :user }, :options => { }, :block => lambda { |u| attribute :name } } ])
191
- b.to_hash(@user)
192
- end.equivalent_to({ :user => { :name => "rabl" } })
193
-
194
- asserts "that it generates with a hash alias" do
195
- b = builder nil, :child => [{ :data => { @user => :person }, :options => {}, :block => lambda { |u| attribute :name } }]
196
- b.to_hash(@user)
197
- end.equivalent_to({ :person => { :name => "rabl" } })
198
-
199
- asserts "that it generates with an object" do
200
- b = builder nil, :child => [{ :data => @user, :options => {}, :block => lambda { |u| attribute :name } }]
201
- e = Rabl::Engine.new('')
202
- mock(b).data_name(@user) { :user }
203
- mock(e).render.returns('xyz')
204
- mock(b).object_to_engine(@user, { :root => false }).returns(e).subject
205
- b.to_hash(@user)
206
- end.equivalent_to({ :user => 'xyz'})
207
-
208
- asserts "that it generates with an collection and child_root" do
209
- b = builder nil, { :child => [{ :data => @users, :options => {}, :block => lambda { |u| attribute :name } }] }, { :child_root => true }
210
- e = Rabl::Engine.new('')
211
- mock(b).data_name(@users) { :users }
212
- mock(e).render.returns('xyz')
213
- mock(b).object_to_engine(@users, { :root => true, :child_root => true }).returns(e).subject
214
- b.to_hash(@user)
215
- end.equivalent_to({ :users => 'xyz'})
216
-
217
- asserts "that it generates with an collection and no child root" do
218
- b = builder nil, { :child => [{ :data => @users, :options => {}, :block => lambda { |u| attribute :name } }] }, { :child_root => false }
219
- e = Rabl::Engine.new('')
220
- mock(b).data_name(@users) { :users }
221
- mock(e).render.returns('xyz')
222
- mock(b).object_to_engine(@users, { :root => false, :child_root => false }).returns(e).subject
223
- b.to_hash(@user)
224
- end.equivalent_to({ :users => 'xyz'})
225
-
226
- asserts "that it generates with an collection and a specified object_root_name and root" do
227
- ops = { :object_root => "person", :root => :people }
228
- b = builder nil, { :child => [{ :data => @users, :options => ops, :block => lambda { |u| attribute :name } }] }, { :child_root => true }
229
- e = Rabl::Engine.new('')
230
- mock(e).render.returns('xyz')
231
- mock(b).object_to_engine(@users, { :root => "person", :object_root_name => "person", :child_root => true }).returns(e).subject
232
- b.to_hash(@user)
233
- end.equivalent_to({ :people => 'xyz'})
234
-
235
- asserts "that it converts the child name to a symbol" do
236
- b = builder(nil, :child => [ { :data => { @user => "user" }, :options => { }, :block => lambda { |u| attribute :name } } ])
237
- b.to_hash(@user)
238
- end.equivalent_to({ :user => { :name => "rabl" } })
239
-
240
- asserts "that it does't duplicate childs with the same name as a string and symbol" do
241
- b = builder(nil, :child => [
242
- { :data => { @user => "user" }, :options => { }, :block => lambda { |u| attribute :name } },
243
- { :data => { @user => :user }, :options => { }, :block => lambda { |u| attribute :name } }
244
- ])
245
- b.to_hash(@user)
246
- end.equivalent_to({ :user => { :name => "rabl" } })
247
- end
248
-
249
- context "#glue" do
250
- asserts "that it generates if no data present" do
251
- builder(nil, :glue => []).to_hash(@user)
252
- end.equals({})
253
-
254
- asserts "that it generates the glue attributes" do
255
- b = builder nil, :glue => [{ :data => @user, :options => {}, :block => lambda { |u| attribute :name }}]
256
- e = Rabl::Engine.new('')
257
- mock(e).render.returns({:user => 'xyz'})
258
- mock(b).object_to_engine(@user, { :root => false }).returns(e).subject
259
- b.to_hash(@user)
260
- end.equivalent_to({ :user => 'xyz' })
261
-
262
- asserts "that it appends the glue attributes to result" do
263
- b = builder nil, :glue => [{ :data => @user, :options => {}, :block => lambda { |u| attribute :name => :user_name }}]
264
- b.to_hash(@user)
265
- end.equivalent_to({ :user_name => 'rabl' })
266
-
267
- asserts "that it does not generate new attributes if no glue attributes are present" do
268
- b = builder nil, :glue => [{ :data => @user, :options => {}, :block => lambda { |u| attribute :name }}]
269
- e = Rabl::Engine.new('')
270
- mock(e).render.returns({})
271
- mock(b).object_to_engine(@user,{ :root => false }).returns(e).subject
272
- b.to_hash(@user)
273
- end.equals({})
274
- end
275
-
276
- context "#extends" do
277
- asserts "that it does not generate if no data is present" do
278
- b = builder nil, :extends => [{ :file => 'users/show', :options => {}, :block => lambda { |u| attribute :name }}]
279
- e = Rabl::Engine.new('users/show')
280
- mock(b).partial_as_engine('users/show',{ :object => @user}).returns(e)
281
- mock(e).render.returns({}).subject
282
- b.to_hash(@user)
283
- end.equals({})
284
-
285
- asserts "that it generates if data is present" do
286
- b = builder nil, :extends => [{ :file => 'users/show', :options => {}, :block => lambda { |u| attribute :name }}]
287
- e = Rabl::Engine.new('users/show')
288
- mock(b).partial_as_engine('users/show',{ :object => @user}).returns(e)
289
- mock(e).render.returns({:user => 'xyz'}).subject
290
- b.to_hash(@user)
291
- end.equivalent_to({:user => 'xyz'})
292
-
293
- asserts "that it generates if local data is present but object is false" do
294
- b = builder nil, :extends => [{ :file => 'users/show', :options => { :object => @user }, :block => lambda { |u| attribute :name }}]
295
- e = Rabl::Engine.new('users/show')
296
- mock(b).partial_as_engine('users/show',{ :object => @user}).returns(e)
297
- mock(e).render.returns({:user => 'xyz'}).subject
298
- b.to_hash(false)
299
- end.equivalent_to({:user => 'xyz'})
300
- end
301
-
302
- context "#resolve_conditionals" do
303
- class ArbObj
304
- def cool?
305
- false
306
- end
307
-
308
- def smooth?
309
- true
310
- end
311
- end
312
-
313
- asserts "that it can use symbols on if condition and return false if method returns false" do
314
- scope = Rabl::Builder.new(ArbObj.new)
315
- scope.send(:resolve_condition, { :if => :cool? })
316
- end.equals(false)
317
-
318
- asserts "that it can use symbols on if condition and return true if method returns true" do
319
- scope = Rabl::Builder.new(ArbObj.new)
320
- scope.send :resolve_condition, { :if => :smooth? }
321
- end.equals(true)
322
-
323
- asserts "that it can use symbols as unless condition and return true if method returns false" do
324
- scope = Rabl::Builder.new(ArbObj.new)
325
- scope.send :resolve_condition, { :unless => :cool? }
326
- end.equals(true)
327
-
328
- asserts "that it can use symbols as unless condition and return false if method returns true" do
329
- scope = Rabl::Builder.new(ArbObj.new)
330
- scope.send :resolve_condition, { :unless => :smooth? }
331
- end.equals(false)
332
-
333
- asserts "that it can use :unless and :if at the same time and return true when if is true and unless is false" do
334
- scope = Rabl::Builder.new(ArbObj.new)
335
- scope.send :resolve_condition, { :if => true, :unless => false }
336
- end.equals(true)
337
-
338
- asserts "that it can use :unless and :if at the same time and return false when if is false and unless is false" do
339
- scope = Rabl::Builder.new(ArbObj.new)
340
- scope.send :resolve_condition, { :if => false, :unless => false }
341
- end.equals(false)
342
-
343
- asserts "that it can use :unless and :if at the same time and return false when if is true and unless is true" do
344
- scope = Rabl::Builder.new(ArbObj.new)
345
- scope.send :resolve_condition, { :if => true, :unless => true }
346
- end.equals(false)
347
-
348
- asserts "that it can use :unless and :if at the same time and return false when if is false and unless is true" do
349
- scope = Rabl::Builder.new(ArbObj.new)
350
- scope.send :resolve_condition, { :if => false, :unless => true }
351
- end.equals(false)
352
-
353
- asserts "that it can use lambda on if condition and return false if lambda returns false" do
354
- scope = Rabl::Builder.new(ArbObj.new)
355
- scope.send(:resolve_condition, { :if => lambda { |obj| false } })
356
- end.equals(false)
357
-
358
- asserts "that it can use lambda on if condition and return true if lambda returns true" do
359
- scope = Rabl::Builder.new(ArbObj.new)
360
- scope.send(:resolve_condition, { :if => lambda { |obj| true } })
361
- end.equals(true)
362
-
363
- asserts "that it can use proc on if condition and return false if proc returns false" do
364
- scope = Rabl::Builder.new(ArbObj.new)
365
- scope.send(:resolve_condition, { :if => proc { false } })
366
- end.equals(false)
367
-
368
- asserts "that it can use proc on if condition and return true if proc returns true" do
369
- scope = Rabl::Builder.new(ArbObj.new)
370
- scope.send(:resolve_condition, { :if => proc { true } })
371
- end.equals(true)
372
-
373
- asserts "that it can use a variable on if condition and return true if variable is truthy" do
374
- scope = Rabl::Builder.new(ArbObj.new)
375
- scope.send(:resolve_condition, { :if => 'Im truthy' })
376
- end.equals('Im truthy')
377
-
378
- asserts "that it can use a variable on if condition and return false if variable is falsy" do
379
- scope = Rabl::Builder.new(ArbObj.new)
380
- scope.send(:resolve_condition, { :if => nil })
381
- end.equals(nil)
382
-
383
- asserts "that it can use a hash variable on if condition and return true" do
384
- scope = Rabl::Builder.new(ArbObj.new)
385
- scope.send(:resolve_condition, { :if => { some: 'data' } })
386
- end.equals({some: 'data'})
387
- end
388
- end