spontaneous 0.2.0.beta1 → 0.2.0.beta2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (335) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +24 -0
  3. data/.locat +42 -0
  4. data/.travis/gemfiles/Gemfile.empty +7 -0
  5. data/.travis.yml +18 -0
  6. data/Gemfile +12 -8
  7. data/LICENSE +1 -1
  8. data/Rakefile +15 -157
  9. data/Readme.markdown +1 -1
  10. data/application/css/core.css.scss +22 -146
  11. data/application/css/definitions.css.scss +7 -3
  12. data/application/css/dialogue.css.scss +26 -1
  13. data/application/css/editing.css.scss +70 -28
  14. data/application/css/font.css.scss +1 -1
  15. data/application/css/popover.css.scss +2 -0
  16. data/application/css/top.css.scss +231 -0
  17. data/application/js/add_alias_dialogue.js +1 -1
  18. data/application/js/add_home_dialogue.js +1 -1
  19. data/application/js/ajax.js +61 -31
  20. data/application/js/box.js +4 -4
  21. data/application/js/conflicted_field_dialogue.js +1 -1
  22. data/application/js/content.js +5 -5
  23. data/application/js/dom.js +5 -0
  24. data/application/js/edit_panel.js +1 -0
  25. data/application/js/editing.js +1 -1
  26. data/application/js/extensions.js +8 -0
  27. data/application/js/field/boolean.js +31 -0
  28. data/application/js/field/file.js +32 -4
  29. data/application/js/field/image.js +24 -9
  30. data/application/js/field/markdown.js +87 -59
  31. data/application/js/field/select.js +1 -1
  32. data/application/js/field/webvideo.js +6 -1
  33. data/application/js/init.js +2 -2
  34. data/application/js/jquery-selection-position.js +130 -0
  35. data/application/js/location.js +4 -25
  36. data/application/js/meta_view/user_admin.js +2 -2
  37. data/application/js/metadata.js +2 -2
  38. data/application/js/page_browser.js +1 -1
  39. data/application/js/panel/root_menu.js +0 -1
  40. data/application/js/popover.js +27 -12
  41. data/application/js/popover_view.js +20 -4
  42. data/application/js/preview.js +31 -16
  43. data/application/js/progress.js +22 -21
  44. data/application/js/publish.js +18 -7
  45. data/application/js/sharded_upload.js +9 -6
  46. data/application/js/spontaneous.js +3 -1
  47. data/application/js/top_bar.js +264 -173
  48. data/application/js/upload.js +12 -5
  49. data/application/js/upload_manager.js +4 -3
  50. data/application/js/user.js +1 -2
  51. data/application/js/views/box_view.js +1 -1
  52. data/application/js/views/page_view.js +16 -5
  53. data/application/js/views/piece_view.js +5 -4
  54. data/application/static/font/fontawesome-webfont-1c66a4738b40ef0f6b1abca0ba9a796d.ttf +0 -0
  55. data/application/views/index.erb +6 -14
  56. data/application/views/login.erb +6 -25
  57. data/application/views/schema_modification_error.html.erb +3 -7
  58. data/db/migrations/20130114120000_create_revision_tables.rb +2 -2
  59. data/db/migrations/20130813111009_increase_path_length.rb +14 -0
  60. data/gem-public_cert.pem +20 -0
  61. data/lib/spontaneous/asset/app_compiler.rb +44 -0
  62. data/lib/spontaneous/asset/environment.rb +225 -0
  63. data/lib/spontaneous/asset.rb +2 -67
  64. data/lib/spontaneous/box.rb +0 -1
  65. data/lib/spontaneous/capistrano/deploy.rb +2 -2
  66. data/lib/spontaneous/capistrano/sync.rb +1 -1
  67. data/lib/spontaneous/cli/init.rb +36 -13
  68. data/lib/spontaneous/cli/server.rb +0 -1
  69. data/lib/spontaneous/cli/site.rb +2 -1
  70. data/lib/spontaneous/cli.rb +3 -1
  71. data/lib/spontaneous/collections/entry_set.rb +4 -12
  72. data/lib/spontaneous/collections/hash_with_fallback.rb +20 -0
  73. data/lib/spontaneous/collections/prototype_set.rb +6 -5
  74. data/lib/spontaneous/crypt.rb +2 -2
  75. data/lib/spontaneous/data_mapper/content_model/associations.rb +115 -63
  76. data/lib/spontaneous/data_mapper.rb +1 -1
  77. data/lib/spontaneous/errors.rb +6 -0
  78. data/lib/spontaneous/extensions/object_space.rb +6 -0
  79. data/lib/spontaneous/facet.rb +1 -0
  80. data/lib/spontaneous/field/base.rb +86 -13
  81. data/lib/spontaneous/field/boolean.rb +65 -0
  82. data/lib/spontaneous/field/file.rb +17 -6
  83. data/lib/spontaneous/field/html.rb +13 -0
  84. data/lib/spontaneous/field/image/size.rb +76 -0
  85. data/lib/spontaneous/field/image.rb +99 -414
  86. data/lib/spontaneous/field/tags.rb +36 -0
  87. data/lib/spontaneous/field/update.rb +1 -1
  88. data/lib/spontaneous/field/webvideo/fallback.rb +41 -0
  89. data/lib/spontaneous/field/webvideo/vimeo.rb +113 -0
  90. data/lib/spontaneous/field/webvideo/vine.rb +94 -0
  91. data/lib/spontaneous/field/webvideo/youtube.rb +133 -0
  92. data/lib/spontaneous/field/webvideo.rb +100 -250
  93. data/lib/spontaneous/field.rb +1 -1
  94. data/lib/spontaneous/generators/site/Gemfile.tt +5 -14
  95. data/lib/spontaneous/generators/site/assets/README.md +20 -0
  96. data/lib/spontaneous/generators/site/assets/css/site.scss +8 -0
  97. data/lib/spontaneous/generators/site/assets/js/site.js +6 -0
  98. data/lib/spontaneous/generators/site/config/deploy.rb.tt +9 -0
  99. data/lib/spontaneous/generators/site/config/user_levels.yml +14 -3
  100. data/lib/spontaneous/generators/site/public/README.md +12 -0
  101. data/lib/spontaneous/generators/site/templates/layouts/standard.html.cut.tt +2 -2
  102. data/lib/spontaneous/generators/site.rb +77 -35
  103. data/lib/spontaneous/layout.rb +6 -7
  104. data/lib/spontaneous/loader.rb +21 -13
  105. data/lib/spontaneous/media/file.rb +22 -9
  106. data/lib/spontaneous/media/image/attributes.rb +33 -0
  107. data/lib/spontaneous/media/image/format/gif.rb +4 -0
  108. data/lib/spontaneous/media/image/format/jpg.rb +17 -0
  109. data/lib/spontaneous/media/image/format/png.rb +4 -0
  110. data/lib/spontaneous/media/image/format/webp.rb +26 -0
  111. data/lib/spontaneous/media/image/format.rb +79 -0
  112. data/lib/spontaneous/media/image/optimizer.rb +69 -0
  113. data/lib/spontaneous/media/image/processor.rb +17 -0
  114. data/lib/spontaneous/media/image/renderable.rb +52 -0
  115. data/lib/spontaneous/media/image/skeptick.rb +70 -0
  116. data/lib/spontaneous/media/image.rb +50 -0
  117. data/lib/spontaneous/media/temp_file.rb +4 -0
  118. data/lib/spontaneous/media.rb +1 -0
  119. data/lib/spontaneous/model/core/aliases.rb +14 -8
  120. data/lib/spontaneous/model/core/boxes.rb +5 -2
  121. data/lib/spontaneous/model/core/entries.rb +4 -0
  122. data/lib/spontaneous/model/core/entry.rb +1 -0
  123. data/lib/spontaneous/model/core/fields.rb +5 -2
  124. data/lib/spontaneous/model/core/locks.rb +16 -0
  125. data/lib/spontaneous/model/core/media.rb +1 -15
  126. data/lib/spontaneous/model/core.rb +31 -1
  127. data/lib/spontaneous/model/page/controllers.rb +2 -2
  128. data/lib/spontaneous/model/page/formats.rb +1 -4
  129. data/lib/spontaneous/model/page/layouts.rb +6 -2
  130. data/lib/spontaneous/model/page/locks.rb +8 -2
  131. data/lib/spontaneous/model/page/page_tree.rb +2 -2
  132. data/lib/spontaneous/model/page/paths.rb +74 -9
  133. data/lib/spontaneous/model/page.rb +11 -3
  134. data/lib/spontaneous/model.rb +6 -6
  135. data/lib/spontaneous/output/context/render_cache.rb +23 -0
  136. data/lib/spontaneous/output/context.rb +56 -30
  137. data/lib/spontaneous/output/helpers/script_helper.rb +9 -53
  138. data/lib/spontaneous/output/helpers/stylesheet_helper.rb +8 -40
  139. data/lib/spontaneous/output/template/renderer.rb +17 -5
  140. data/lib/spontaneous/output.rb +0 -1
  141. data/lib/spontaneous/paths.rb +6 -2
  142. data/lib/spontaneous/permissions/access_key.rb +18 -0
  143. data/lib/spontaneous/permissions/user.rb +1 -1
  144. data/lib/spontaneous/permissions.rb +4 -1
  145. data/lib/spontaneous/plugins/application/state.rb +19 -12
  146. data/lib/spontaneous/prototypes/field_prototype.rb +14 -8
  147. data/lib/spontaneous/published_revision.rb +7 -0
  148. data/lib/spontaneous/publishing/immediate.rb +43 -34
  149. data/lib/spontaneous/publishing/revision.rb +9 -6
  150. data/lib/spontaneous/rack/asset_server.rb +20 -0
  151. data/lib/spontaneous/rack/back/alias.rb +46 -0
  152. data/lib/spontaneous/rack/back/application_assets.rb +28 -0
  153. data/lib/spontaneous/rack/back/base.rb +34 -0
  154. data/lib/spontaneous/rack/back/changes.rb +19 -0
  155. data/lib/spontaneous/rack/back/content.rb +54 -0
  156. data/lib/spontaneous/rack/back/events.rb +38 -0
  157. data/lib/spontaneous/rack/back/field.rb +37 -0
  158. data/lib/spontaneous/rack/back/file.rb +118 -0
  159. data/lib/spontaneous/rack/back/helpers.rb +71 -0
  160. data/lib/spontaneous/rack/back/index.rb +16 -0
  161. data/lib/spontaneous/rack/back/login.rb +47 -0
  162. data/lib/spontaneous/rack/back/map.rb +24 -0
  163. data/lib/spontaneous/rack/back/page.rb +46 -0
  164. data/lib/spontaneous/rack/back/preview.rb +43 -0
  165. data/lib/spontaneous/rack/back/schema.rb +30 -0
  166. data/lib/spontaneous/rack/back/site.rb +25 -0
  167. data/lib/spontaneous/rack/back/site_assets.rb +13 -0
  168. data/lib/spontaneous/rack/back/unsupported_browser.rb +7 -0
  169. data/lib/spontaneous/rack/{user_admin.rb → back/user_admin.rb} +2 -5
  170. data/lib/spontaneous/rack/back.rb +85 -764
  171. data/lib/spontaneous/rack/cacheable_file.rb +3 -3
  172. data/lib/spontaneous/rack/front.rb +16 -9
  173. data/lib/spontaneous/rack/middleware/authenticate.rb +65 -0
  174. data/lib/spontaneous/rack/middleware/csrf.rb +66 -0
  175. data/lib/spontaneous/rack/middleware/reloader.rb +52 -0
  176. data/lib/spontaneous/rack/middleware/scope.rb +60 -0
  177. data/lib/spontaneous/rack/middleware.rb +6 -0
  178. data/lib/spontaneous/rack/page_controller.rb +18 -5
  179. data/lib/spontaneous/rack/public.rb +17 -11
  180. data/lib/spontaneous/rack.rb +34 -24
  181. data/lib/spontaneous/revision.rb +29 -2
  182. data/lib/spontaneous/schema/uid.rb +4 -3
  183. data/lib/spontaneous/schema/uid_map.rb +5 -24
  184. data/lib/spontaneous/schema.rb +1 -0
  185. data/lib/spontaneous/search/database.rb +8 -0
  186. data/lib/spontaneous/search/field.rb +1 -1
  187. data/lib/spontaneous/search/index.rb +3 -5
  188. data/lib/spontaneous/server.rb +1 -1
  189. data/lib/spontaneous/simultaneous.rb +1 -1
  190. data/lib/spontaneous/site/features.rb +4 -5
  191. data/lib/spontaneous/site/helpers.rb +22 -5
  192. data/lib/spontaneous/site/instance.rb +2 -2
  193. data/lib/spontaneous/site/selectors.rb +22 -3
  194. data/lib/spontaneous/storage/cloud.rb +13 -9
  195. data/lib/spontaneous/storage/local.rb +11 -6
  196. data/lib/spontaneous/style.rb +40 -23
  197. data/lib/spontaneous/utils/database/mysql_dumper.rb +1 -1
  198. data/lib/spontaneous/utils/smush_it.rb +1 -1
  199. data/lib/spontaneous/version.rb +1 -1
  200. data/lib/spontaneous.rb +35 -33
  201. data/spontaneous.gemspec +53 -787
  202. data/test/experimental/test_crypt.rb +56 -56
  203. data/test/experimental/test_features.rb +16 -27
  204. data/test/fixtures/assets/public1/css/data.css.scss +3 -0
  205. data/test/fixtures/assets/public1/css/image1.css.scss +4 -0
  206. data/test/fixtures/assets/public1/css/import.css.scss +1 -0
  207. data/test/fixtures/assets/public1/css/urlhash.css.scss +3 -0
  208. data/test/fixtures/assets/public1/js/a.js +1 -1
  209. data/test/fixtures/assets/public1/js/all.js +4 -0
  210. data/test/fixtures/assets/public1/js/{m.coffee → m.js.coffee} +1 -0
  211. data/test/fixtures/assets/public1/x.js +1 -0
  212. data/test/fixtures/assets/public2/css/all.css +4 -0
  213. data/test/fixtures/assets/public2/css/missing.css.scss +3 -0
  214. data/test/fixtures/assets/public2/i/y.png +0 -0
  215. data/test/fixtures/assets/public2/js/b.js +1 -1
  216. data/test/fixtures/assets/public2/js/c.js +1 -1
  217. data/test/fixtures/images/size.extended.webp +0 -0
  218. data/test/fixtures/images/size.lossless.webp +0 -0
  219. data/test/fixtures/images/size.lossy.webp +0 -0
  220. data/test/fixtures/schema/before.yml +4 -4
  221. data/test/fixtures/schema/schema.yml +1 -1
  222. data/test/fixtures/templates/aliases/aaa.html.cut +0 -0
  223. data/test/fixtures/templates/extended/partial_with_renderer.html.cut +1 -0
  224. data/test/fixtures/templates/extended/with_includes_and_renderer.html.cut +2 -0
  225. data/test/functional/test_application.rb +108 -106
  226. data/test/functional/test_back.rb +924 -930
  227. data/test/functional/test_front.rb +285 -238
  228. data/test/functional/test_user_manager.rb +75 -100
  229. data/test/integration/test_installation.rb +1 -1
  230. data/test/support/matchers.rb +12 -0
  231. data/test/support/minitest.rb +121 -0
  232. data/test/support/rack.rb +45 -0
  233. data/test/support/test_start_finish.rb +103 -0
  234. data/test/test_helper.rb +21 -68
  235. data/test/test_integration_helper.rb +1 -3
  236. data/test/unit/test_alias.rb +432 -408
  237. data/test/unit/test_asset_bundler.rb +58 -58
  238. data/test/unit/test_assets.rb +485 -155
  239. data/test/unit/test_async.rb +16 -37
  240. data/test/unit/test_authentication.rb +425 -457
  241. data/test/unit/test_boxes.rb +191 -191
  242. data/test/unit/test_changesets.rb +244 -254
  243. data/test/unit/test_config.rb +128 -142
  244. data/test/unit/test_content.rb +313 -359
  245. data/test/unit/test_content_inheritance.rb +29 -30
  246. data/test/unit/test_datamapper.rb +1205 -1080
  247. data/test/unit/test_datamapper_content.rb +49 -51
  248. data/test/unit/test_extensions.rb +23 -23
  249. data/test/unit/test_fields.rb +1488 -1180
  250. data/test/unit/test_formats.rb +158 -158
  251. data/test/unit/test_generators.rb +98 -40
  252. data/test/unit/test_helpers.rb +73 -76
  253. data/test/unit/test_image_size.rb +53 -22
  254. data/test/unit/test_images.rb +164 -165
  255. data/test/unit/test_layouts.rb +133 -122
  256. data/test/unit/test_logger.rb +14 -17
  257. data/test/unit/test_media.rb +69 -84
  258. data/test/unit/test_modifications.rb +513 -525
  259. data/test/unit/test_page.rb +462 -361
  260. data/test/unit/test_permissions.rb +379 -364
  261. data/test/unit/test_piece.rb +67 -75
  262. data/test/unit/test_plugins.rb +82 -89
  263. data/test/unit/test_prototype_set.rb +215 -216
  264. data/test/unit/test_prototypes.rb +114 -124
  265. data/test/unit/test_publishing.rb +252 -289
  266. data/test/unit/test_render.rb +167 -115
  267. data/test/unit/test_revisions.rb +436 -444
  268. data/test/unit/test_schema.rb +339 -309
  269. data/test/unit/test_search.rb +577 -574
  270. data/test/unit/test_serialisation.rb +136 -147
  271. data/test/unit/test_site.rb +252 -227
  272. data/test/unit/test_skeptick.rb +130 -0
  273. data/test/unit/test_storage.rb +46 -40
  274. data/test/unit/test_structure.rb +57 -66
  275. data/test/unit/test_styles.rb +104 -104
  276. data/test/unit/test_templates.rb +72 -57
  277. data/test/unit/test_type_hierarchy.rb +15 -16
  278. data/test/unit/test_visibility.rb +239 -257
  279. metadata +455 -326
  280. data/application/js/vendor/JS.Class-2.1.5/CHANGELOG +0 -283
  281. data/application/js/vendor/JS.Class-2.1.5/MIT-LICENSE +0 -30
  282. data/application/js/vendor/JS.Class-2.1.5/README +0 -30
  283. data/application/js/vendor/JS.Class-2.1.5/min/command.js +0 -1
  284. data/application/js/vendor/JS.Class-2.1.5/min/comparable.js +0 -1
  285. data/application/js/vendor/JS.Class-2.1.5/min/constant_scope.js +0 -1
  286. data/application/js/vendor/JS.Class-2.1.5/min/decorator.js +0 -1
  287. data/application/js/vendor/JS.Class-2.1.5/min/enumerable.js +0 -1
  288. data/application/js/vendor/JS.Class-2.1.5/min/forwardable.js +0 -1
  289. data/application/js/vendor/JS.Class-2.1.5/min/hash.js +0 -1
  290. data/application/js/vendor/JS.Class-2.1.5/min/linked_list.js +0 -1
  291. data/application/js/vendor/JS.Class-2.1.5/min/loader.js +0 -1
  292. data/application/js/vendor/JS.Class-2.1.5/min/method_chain.js +0 -1
  293. data/application/js/vendor/JS.Class-2.1.5/min/observable.js +0 -1
  294. data/application/js/vendor/JS.Class-2.1.5/min/package.js +0 -1
  295. data/application/js/vendor/JS.Class-2.1.5/min/proxy.js +0 -1
  296. data/application/js/vendor/JS.Class-2.1.5/min/ruby.js +0 -1
  297. data/application/js/vendor/JS.Class-2.1.5/min/set.js +0 -1
  298. data/application/js/vendor/JS.Class-2.1.5/min/stack_trace.js +0 -1
  299. data/application/js/vendor/JS.Class-2.1.5/min/state.js +0 -1
  300. data/application/js/vendor/JS.Class-2.1.5/min/stdlib.js +0 -16
  301. data/application/js/vendor/jquery-1.6.2.min.js +0 -18
  302. data/application/js/vendor/jquery-ui-1.8.16.custom.min.js +0 -791
  303. data/application/js/vendor/jquery-ui-1.8.9.custom.min.js +0 -415
  304. data/application/static/font/fontawesome-webfont-5c5c21100a346972a82c34c5e96ffcfe.ttf +0 -0
  305. data/application/static/select-arrow-6e7dd3745b00e934b0d7a3250c46558b.png +0 -0
  306. data/bin/limit-upload +0 -5
  307. data/bin/unlimit-upload +0 -3
  308. data/lib/spontaneous/asset/file.rb +0 -25
  309. data/lib/spontaneous/asset/source.rb +0 -28
  310. data/lib/spontaneous/image_size.rb +0 -123
  311. data/lib/spontaneous/output/assets/compression.rb +0 -58
  312. data/lib/spontaneous/output/assets.rb +0 -32
  313. data/lib/spontaneous/rack/around_back.rb +0 -20
  314. data/lib/spontaneous/rack/around_front.rb +0 -27
  315. data/lib/spontaneous/rack/around_preview.rb +0 -22
  316. data/lib/spontaneous/rack/assets.rb +0 -126
  317. data/lib/spontaneous/rack/authentication.rb +0 -20
  318. data/lib/spontaneous/rack/cookie_authentication.rb +0 -38
  319. data/lib/spontaneous/rack/helpers.rb +0 -52
  320. data/lib/spontaneous/rack/http.rb +0 -18
  321. data/lib/spontaneous/rack/media.rb +0 -30
  322. data/lib/spontaneous/rack/query_authentication.rb +0 -35
  323. data/lib/spontaneous/rack/reloader.rb +0 -45
  324. data/lib/spontaneous/rack/user_helpers.rb +0 -28
  325. /data/{README → application/js/field/markdown/text_command.js} +0 -0
  326. /data/application/js/vendor/{JS.Class-2.1.5/min/core.js → js.class-2.1.5.min.js} +0 -0
  327. /data/test/fixtures/assets/public1/css/{a.scss → a.css.scss} +0 -0
  328. /data/{lib/spontaneous/generators/site/public/css/site.scss → test/fixtures/assets/public1/x.css} +0 -0
  329. /data/{lib/spontaneous/generators/site/public/js/.empty_directory → test/fixtures/assets/public1/x.png} +0 -0
  330. /data/test/fixtures/assets/public2/css/{b.scss → b.css.scss} +0 -0
  331. /data/test/fixtures/assets/public2/js/{n.coffee → n.js.coffee} +0 -0
  332. /data/test/fixtures/back/{public → assets}/css/sass_include.scss +0 -0
  333. /data/test/fixtures/back/{public → assets}/css/sass_template.scss +0 -0
  334. /data/test/fixtures/back/{public → assets}/js/coffeescript.coffee +0 -0
  335. /data/{lib/spontaneous/generators/site/public/js/site.js → test/fixtures/templates/aliases/aa_alias.html.cut} +0 -0
@@ -5,22 +5,19 @@ require File.expand_path('../../test_helper', __FILE__)
5
5
  # set :environment, :test
6
6
 
7
7
 
8
- class UserAdminTest < MiniTest::Spec
9
- include ::Rack::Test::Methods
8
+ describe "UserAdmin" do
9
+ include RackTestMethods
10
10
 
11
- def self.site_root
12
- @site_root
13
- end
14
-
15
- def self.startup
11
+ start do
16
12
  S::Permissions::User.delete
17
- @site_root = Dir.mktmpdir
13
+ site_root = Dir.mktmpdir
18
14
  app_root = File.expand_path('../../fixtures/user_manager', __FILE__)
19
- FileUtils.cp_r(app_root + "/", @site_root)
20
- @site_root += "/user_manager"
15
+ FileUtils.cp_r(app_root + "/", site_root)
16
+ site_root += "/user_manager"
17
+ let(:site_root) { site_root }
21
18
  end
22
19
 
23
- def self.shutdown
20
+ finish do
24
21
  teardown_site(true)
25
22
  end
26
23
 
@@ -28,8 +25,12 @@ class UserAdminTest < MiniTest::Spec
28
25
  Spontaneous::Rack::Back.application
29
26
  end
30
27
 
31
- def setup
32
- @site = setup_site(self.class.site_root)
28
+ def api_key
29
+ @key
30
+ end
31
+
32
+ before do
33
+ @site = setup_site(site_root)
33
34
  Spot::Permissions::UserLevel.reset!
34
35
  Spot::Permissions::UserLevel.init!
35
36
  @editor_user = create_user("editor", S::Permissions[:editor])
@@ -41,7 +42,7 @@ class UserAdminTest < MiniTest::Spec
41
42
  assert @root_user.level == S::Permissions[:root]
42
43
  end
43
44
 
44
- def teardown
45
+ after do
45
46
  teardown_site(false)
46
47
  S::Permissions::User.delete
47
48
  end
@@ -57,222 +58,196 @@ class UserAdminTest < MiniTest::Spec
57
58
  user
58
59
  end
59
60
 
60
- def login_user(user, params={})
61
- post "/@spontaneous/login", {"user[login]" => user.login, "user[password]" => user.password}.merge(params)
62
- @user = user
63
- end
64
-
65
- def auth_post(path, params={})
66
- key = @user.access_keys.first
67
- post(path, params.merge("__key" => key.key_id))
68
- end
69
-
70
- def auth_put(path, params={})
71
- key = @user.access_keys.first
72
- put(path, params.merge("__key" => key.key_id))
73
- end
74
-
75
- def auth_get(path, params={})
76
- key = @user.access_keys.first
77
- get(path, params.merge("__key" => key.key_id))
78
- end
79
-
80
- def auth_del(path, params = {})
81
- key = @user.access_keys.first
82
- delete(path, params.merge("__key" => key.key_id))
83
- end
84
-
85
-
86
- context "Access to User admin" do
87
- should "be denied to unauthorised requests" do
61
+ describe "Access to User admin" do
62
+ it "be denied to unauthorised requests" do
88
63
  get "/@spontaneous/users"
89
64
  assert last_response.status == 401, "Expected 401 but got #{ last_response.status }"
90
65
  end
91
66
 
92
- should "be denied to users without the admin flag" do
67
+ it "be denied to users without the admin flag" do
93
68
  login_user(@editor_user)
94
69
  auth_get "/@spontaneous/users"
95
70
  assert last_response.status == 403, "Expected 403 but got #{ last_response.status }"
96
71
  end
97
72
 
98
- should "be granted to users with the admin flag" do
73
+ it "be granted to users with the admin flag" do
99
74
  login_user(@admin_user)
100
75
  auth_get "/@spontaneous/users"
101
76
  assert last_response.status == 200, "Expected 200 but got #{ last_response.status }"
102
77
  end
103
78
 
104
- should "be granted to root users" do
79
+ it "be granted to root users" do
105
80
  login_user(@root_user)
106
81
  auth_get "/@spontaneous/users"
107
82
  assert last_response.status == 200, "Expected 200 but got #{ last_response.status }"
108
83
  end
109
84
  end
110
85
 
111
- context "User application" do
112
- setup do
86
+ describe "User application" do
87
+ before do
113
88
  login_user(@admin_user)
114
89
  end
115
90
 
116
- should "return serialised list of current users" do
91
+ it "return serialised list of current users" do
117
92
  auth_get "/@spontaneous/users"
118
93
  result = S::JSON.parse last_response.body
119
- result.should == S::Permissions::User.export(@user)
94
+ result.must_equal S::Permissions::User.export(@user)
120
95
  end
121
96
 
122
- should "allow user details to be updated" do
97
+ it "allow user details to be updated" do
123
98
  auth_put "/@spontaneous/users/#{@editor_user.id}", { "user[name]" => "Robert Something", "user[login]" => "robert", "user[email]" => "robert@example.org" }
124
99
  assert last_response.ok?, "Recieved a #{ last_response.status } instead of a 200"
125
- @editor_user.reload.login.should == "robert"
100
+ @editor_user.reload.login.must_equal "robert"
126
101
  end
127
102
 
128
- should "allow a users level to be changed" do
103
+ it "allow a users level to be changed" do
129
104
  auth_put "/@spontaneous/users/#{@editor_user.id}", { "user[name]" => "Robert Something", "user[login]" => "robert", "user[email]" => "robert@example.org", "user[level]" => "admin" }
130
105
  assert last_response.ok?, "Recieved a #{ last_response.status } instead of a 200"
131
- @editor_user.reload.level.should == @admin_user.level
106
+ @editor_user.reload.level.must_equal @admin_user.level
132
107
  end
133
108
 
134
- should "reject updates that change the level above the current user's" do
109
+ it "reject updates that change the level above the current user's" do
135
110
  level = @editor_user.level
136
111
  auth_put "/@spontaneous/users/#{@editor_user.id}", { "user[name]" => "Robert Something", "user[login]" => "robert", "user[email]" => "robert@example.org", "user[level]" => "root" }
137
112
  assert last_response.status == 403, "Recieved a #{ last_response.status } instead of a 403"
138
- @editor_user.reload.level.should == level
113
+ @editor_user.reload.level.must_equal level
139
114
  end
140
115
 
141
- should "reject an update with a conflicting login" do
116
+ it "reject an update with a conflicting login" do
142
117
  auth_put "/@spontaneous/users/#{@editor_user.id}", { "user[name]" => "Robert Something", "user[login]" => "admin", "user[email]" => "robert@example.org" }
143
118
  assert last_response.status == 422, "Recieved a #{ last_response.status } instead of a 422"
144
- @editor_user.reload.login.should == "editor"
119
+ @editor_user.reload.login.must_equal "editor"
145
120
  result = S::JSON.parse last_response.body
146
121
  result.must_be_instance_of Hash
147
- result[:login].should_not be_nil
122
+ result[:login].wont_be_nil
148
123
  end
149
124
 
150
- should "reject an update with an invalid email" do
125
+ it "reject an update with an invalid email" do
151
126
  email = @editor_user.email
152
127
  auth_put "/@spontaneous/users/#{@editor_user.id}", { "user[name]" => "Robert Something", "user[login]" => "editor", "user[email]" => "robert" }
153
128
  assert last_response.status == 422, "Recieved a #{ last_response.status } instead of a 422"
154
- @editor_user.reload.email.should == email
129
+ @editor_user.reload.email.must_equal email
155
130
  result = S::JSON.parse last_response.body
156
131
  result.must_be_instance_of Hash
157
- result[:email].should_not be_nil
132
+ result[:email].wont_be_nil
158
133
  end
159
134
 
160
- should "allow updating of the user's password" do
135
+ it "allow updating of the user's password" do
161
136
  new_pass = "123467890"
162
137
  auth_put "/@spontaneous/users/password/#{@editor_user.id}", { "password" => new_pass }
163
138
  assert last_response.ok?, "Recieved status #{ last_response.status} instead of 200"
164
139
  key = Spontaneous::Permissions::User.authenticate(@editor_user.login, new_pass, "127.0.0.1")
165
- key.should_not be_nil
140
+ key.wont_be_nil
166
141
  end
167
142
 
168
- should "reject & return error for invalid passwords" do
143
+ it "reject & return error for invalid passwords" do
169
144
  new_pass = "1234"
170
145
  auth_put "/@spontaneous/users/password/#{@editor_user.id}", { "password" => new_pass }
171
146
  assert last_response.status == 422, "Recieved a #{ last_response.status } instead of a 422"
172
147
  key = Spontaneous::Permissions::User.authenticate(@editor_user.login, new_pass, "127.0.0.1")
173
- key.should be_nil
148
+ key.must_be_nil
174
149
  result = S::JSON.parse last_response.body
175
150
  result.must_be_instance_of Hash
176
- result[:password].should_not be_nil
151
+ result[:password].wont_be_nil
177
152
  end
178
153
 
179
- should "not allow changing details of users with higher level" do
154
+ it "not allow changing details of users with higher level" do
180
155
  auth_put "/@spontaneous/users/#{@root_user.id}", { "user[name]" => "Robert Something", "user[login]" => "robert", "user[email]" => "robert@example.org" }
181
156
  assert last_response.status == 403, "Recieved a #{ last_response.status } instead of a 403"
182
- @root_user.reload.login.should == "root"
157
+ @root_user.reload.login.must_equal "root"
183
158
  end
184
159
 
185
- # should "allow admins to reset their password"
186
- should "enable a force-logout of a user by deleting their keys" do
160
+ # it "allow admins to reset their password"
161
+ it "enable a force-logout of a user by deleting their keys" do
187
162
  3.times do |n|
188
163
  @editor_user.generate_access_key("203.99.33.#{n}")
189
164
  end
190
- @editor_user.access_keys.length.should == 3
165
+ @editor_user.access_keys.length.must_equal 3
191
166
  auth_del "/@spontaneous/users/keys/#{@editor_user.id}"
192
167
  assert last_response.ok?, "Recieved status #{ last_response.status} instead of 200"
193
- @editor_user.reload.access_keys.length.should == 0
168
+ @editor_user.reload.access_keys.length.must_equal 0
194
169
  end
195
170
 
196
- should "not allow logging out of user with higher level" do
171
+ it "not allow logging out of user with higher level" do
197
172
  3.times do |n|
198
173
  @root_user.generate_access_key("203.99.33.#{n}")
199
174
  end
200
- @root_user.access_keys.length.should == 3
175
+ @root_user.access_keys.length.must_equal 3
201
176
  auth_del "/@spontaneous/users/keys/#{@root_user.id}"
202
177
  assert last_response.status == 403, "Recieved a #{ last_response.status } instead of a 403"
203
- @root_user.reload.access_keys.length.should == 3
178
+ @root_user.reload.access_keys.length.must_equal 3
204
179
  end
205
180
 
206
- should "allow you to disable a user" do
207
- @editor_user.disabled?.should be_false
181
+ it "allow you to disable a user" do
182
+ refute @editor_user.disabled?
208
183
  auth_put "/@spontaneous/users/disable/#{@editor_user.id}"
209
184
  assert last_response.ok?
210
- @editor_user.reload.disabled?.should be_true
185
+ assert @editor_user.reload.disabled?
211
186
  end
212
187
 
213
- should "allow you to re-enable a user" do
214
- @editor_user.disabled?.should be_false
188
+ it "allow you to re-enable a user" do
189
+ refute @editor_user.disabled?
215
190
  @editor_user.disable!
216
191
  auth_put "/@spontaneous/users/enable/#{@editor_user.id}"
217
192
  assert last_response.ok?
218
- @editor_user.reload.disabled?.should be_false
193
+ refute @editor_user.reload.disabled?
219
194
  end
220
195
 
221
- should "not allow you to disable a user with a higher user level" do
222
- @root_user.disabled?.should be_false
196
+ it "not allow you to disable a user with a higher user level" do
197
+ refute @root_user.disabled?
223
198
  auth_put "/@spontaneous/users/disable/#{@root_user.id}"
224
199
  assert last_response.status == 403, "Recieved a #{ last_response.status } instead of a 403"
225
- @root_user.reload.disabled?.should be_false
200
+ refute @root_user.reload.disabled?
226
201
  end
227
202
 
228
- should "allow for the creation of new users" do
203
+ it "allow for the creation of new users" do
229
204
  auth_post "/@spontaneous/users", { "user[name]" => "Robert Something", "user[login]" => "robert", "user[email]" => "robert@example.org", "user[password]" => "robertpass", "user[level]" => "admin" }
230
205
  assert last_response.ok?, "Recieved status #{ last_response.status} instead of 200"
231
206
  user = S::Permissions::User[:login => "robert"]
232
207
  user.must_be_instance_of S::Permissions::User
233
- user.name.should == "Robert Something"
234
- user.email.should == "robert@example.org"
235
- user.level.should == Spontaneous::Permissions[:admin]
208
+ user.name.must_equal "Robert Something"
209
+ user.email.must_equal "robert@example.org"
210
+ user.level.must_equal Spontaneous::Permissions[:admin]
236
211
  key = Spontaneous::Permissions::User.authenticate("robert", "robertpass", "127.0.0.1")
237
212
  key.must_be_instance_of S::Permissions::AccessKey
238
- key.user.id.should == user.id
213
+ key.user.id.must_equal user.id
239
214
  end
240
215
 
241
- should "return user info on account creation" do
216
+ it "return user info on account creation" do
242
217
  auth_post "/@spontaneous/users", { "user[name]" => "Robert Something", "user[login]" => "robert", "user[email]" => "robert@example.org", "user[password]" => "robertpass", "user[level]" => "admin" }
243
218
  assert last_response.ok?, "Recieved status #{ last_response.status} instead of 200"
244
219
  result = S::JSON.parse last_response.body
245
- result[:id].should_not be_nil
220
+ result[:id].wont_be_nil
246
221
  user = S::Permissions::User[result[:id]]
247
- result.should == S::Permissions::User.export_user(user)
222
+ result.must_equal S::Permissions::User.export_user(user)
248
223
  end
249
224
 
250
- should "not allow creation of users with higher level" do
225
+ it "not allow creation of users with higher level" do
251
226
  users = S::Permissions::User.count
252
227
  auth_post "/@spontaneous/users", { "user[name]" => "Robert Something", "user[login]" => "robert", "user[email]" => "robert@example.org", "user[password]" => "robertpass", "user[level]" => "root" }
253
228
  assert last_response.status == 403, "Recieved a #{ last_response.status } instead of a 403"
254
- S::Permissions::User.count.should == users
229
+ S::Permissions::User.count.must_equal users
255
230
  end
256
231
 
257
- should "return an error if passed invalid user attributes" do
232
+ it "return an error if passed invalid user attributes" do
258
233
  users = S::Permissions::User.count
259
234
  auth_post "/@spontaneous/users", { "user[name]" => "Robert Something", "user[login]" => "admin", "user[email]" => "robert", "user[password]" => "pass", "user[level]" => "editor" }
260
235
  assert last_response.status == 422, "Recieved a #{ last_response.status } instead of a 422"
261
- S::Permissions::User.count.should == users
236
+ S::Permissions::User.count.must_equal users
262
237
  end
263
238
 
264
- should "allow us to delete a user" do
239
+ it "allow us to delete a user" do
265
240
  auth_del "/@spontaneous/users/#{@editor_user.id}"
266
241
  assert last_response.status == 200, "Recieved a #{ last_response.status } instead of a 200"
267
242
  user = Spontaneous::Permissions::User[:login => @editor_user.login]
268
- user.should be_nil
243
+ user.must_be_nil
269
244
  end
270
245
 
271
- should "not allow us to delete a user with a higher user level" do
246
+ it "not allow us to delete a user with a higher user level" do
272
247
  auth_del "/@spontaneous/users/#{@root_user.id}"
273
248
  assert last_response.status == 403, "Recieved a #{ last_response.status } instead of a 403"
274
249
  user = Spontaneous::Permissions::User[:login => @root_user.login]
275
- user.should_not be_nil
250
+ user.wont_be_nil
276
251
  end
277
252
  end
278
253
  end
@@ -72,7 +72,7 @@ class SpontaneousInstallationTest < OrderedTestCase
72
72
  end
73
73
 
74
74
  def test_step_001__gem_installation
75
- assert_raises "Precondition failed, spontaneous gem is already installed", Gem::LoadError do
75
+ assert_raises Gem::LoadError, "Precondition failed, spontaneous gem is already installed" do
76
76
  Gem::Specification.find_by_name("spontaneous")
77
77
  end
78
78
  system "gem install #{$_gem} --no-rdoc --no-ri"
@@ -0,0 +1,12 @@
1
+ require 'set'
2
+
3
+ module MiniTest
4
+ module Assertions
5
+ def assert_has_elements(exp, act, msg = nil)
6
+ msg = message(msg) { "Expected #{act} to have same elements as #{exp}" }
7
+ assert Set.new(exp) == Set.new(act)
8
+ end
9
+ end
10
+ end
11
+
12
+ Object.infect_an_assertion :assert_has_elements, :must_have_elements
@@ -0,0 +1,121 @@
1
+
2
+ module TransactionalTest
3
+ # Wraps each test in a transaction that is always rolled back. The `result`
4
+ # dance is needed because Sequel's transaction method isn't good at returning
5
+ # the result of the block.
6
+ def run(runner)
7
+ result = nil
8
+ DB.transaction(:rollback => :always) { result = super }
9
+ result
10
+ end
11
+ end
12
+
13
+ class MiniTest::Spec
14
+ include TransactionalTest
15
+ class << self
16
+ # Finds the top-most test, that is a test that directly inherits from
17
+ # MiniTest::Spec.
18
+ # Used by the runner to group tests in to logical blocks.
19
+ def parent_suite
20
+ a = ancestors.take_while { |a| a != MiniTest::Spec }.select { |a| Class === a }
21
+ a.last
22
+ end
23
+
24
+ def start(&block)
25
+ @start_hook = block
26
+ end
27
+
28
+ def finish(&block)
29
+ @finish_hook = block
30
+ end
31
+
32
+ def _hooks_run
33
+ @_hooks_run ||= []
34
+ end
35
+
36
+ def _run_start_hook
37
+ _run_start_finish_hook(@start_hook, :start)
38
+ end
39
+
40
+ def _run_finish_hook
41
+ if _hooks_run.include?(:start)
42
+ _run_start_finish_hook(@finish_hook, :finish)
43
+ end
44
+ end
45
+
46
+ def _run_start_finish_hook(hook, label)
47
+ _hooks_run << label
48
+ hook.call if hook
49
+ end
50
+ end
51
+ end
52
+
53
+ # This relies on the test cases supporting the ::start & ::finish hooks
54
+ # as well as the ::parent_suite method.
55
+ class StartFinishRunner < MiniTest::Unit
56
+ def _run_suites(suites, type)
57
+ linebreak = ""
58
+ results = []
59
+ grouped = suites.group_by { |suite| suite.parent_suite }
60
+ grouped.delete(nil)
61
+
62
+ names = grouped.keys.map(&:to_s)
63
+ max_name_length = names.map(&:length).max
64
+
65
+ grouped.each do |master, tests|
66
+ output.print(output.bold("#{linebreak}#{master.to_s.ljust(max_name_length, " ")} "))
67
+ DB.synchronize do
68
+ begin
69
+ master._run_start_hook
70
+ results.concat super(tests, type)
71
+ ensure
72
+ master._run_finish_hook
73
+ end
74
+ end
75
+ linebreak = "\n"
76
+ end
77
+ results
78
+ end
79
+ end
80
+
81
+ # I find the stream of green dots & yellow "S"s a little too strident.
82
+ # Just give me red for errors.
83
+ module Minitest
84
+ class PlainColorize < Minitest::Colorize
85
+ def print(string = nil)
86
+ return stream.print if string.nil?
87
+
88
+ case string
89
+ when 'E', 'F'
90
+ stream.print error(string)
91
+ when 'S'
92
+ stream.print grey(string)
93
+ else
94
+ stream.print string
95
+ end
96
+ end
97
+
98
+ def error(string)
99
+ tint([1, 31], string)
100
+ end
101
+
102
+ def bold(string)
103
+ tint(1, string)
104
+ end
105
+
106
+ def grey(string)
107
+ tint([30, 1], string)
108
+ end
109
+
110
+ def tint(color, string)
111
+ return string unless color_enabled?
112
+ effects = Array(color).map { |c| "\e[#{c}m"}.join
113
+ "#{effects}#{string}\e[0m"
114
+ end
115
+
116
+ # I want to be able to use these
117
+ [:red, :green, :yellow].each { |m| public m }
118
+ end
119
+ end
120
+
121
+ MiniTest::Unit.output = MiniTest::PlainColorize.new
@@ -0,0 +1,45 @@
1
+ require 'rack/test'
2
+
3
+ module RackTestMethods
4
+ include ::Rack::Test::Methods
5
+ include Spontaneous::Rack::Constants
6
+
7
+ def auth_post(path, params={}, env={})
8
+ post(path, params, csrf_header(env))
9
+ end
10
+
11
+ def auth_get(path, params={}, env={})
12
+ get(path, params, csrf_header(env))
13
+ end
14
+
15
+ def auth_put(path, params={}, env={})
16
+ put(path, params, csrf_header(env))
17
+ end
18
+
19
+ def auth_delete(path, params={}, env={})
20
+ delete(path, params, csrf_header(env))
21
+ end
22
+
23
+ alias_method :auth_del, :auth_delete
24
+
25
+ def auth_patch(path, params={}, env={})
26
+ patch(path, params, csrf_header(env))
27
+ end
28
+
29
+ def csrf_header(env)
30
+ token = api_key.generate_csrf_token
31
+ env.merge(Spontaneous::Rack::CSRF_ENV => token)
32
+ end
33
+
34
+ def api_key
35
+ # Override in test suites
36
+ end
37
+
38
+ def login_user(user, params={})
39
+ post "/@spontaneous/login", {"user[login]" => user.login, "user[password]" => user.password}.merge(params)
40
+ key_id = rack_mock_session.cookie_jar[Spontaneous::Rack::AUTH_COOKIE]
41
+ @user = user
42
+ @key = Spontaneous::Permissions::AccessKey.authenticate(key_id)
43
+ [@user, @key]
44
+ end
45
+ end
@@ -0,0 +1,103 @@
1
+ # encoding: UTF-8
2
+
3
+ require File.expand_path('../../test_helper', __FILE__)
4
+
5
+ $suite1_start = $suite2_start = $suite3_start = nil
6
+
7
+ describe "Suite1" do
8
+ start do
9
+ $suite1_start = true
10
+ end
11
+
12
+ finish do
13
+ $suite1_start = false
14
+ end
15
+
16
+ it "1" do
17
+ assert $suite1_start
18
+ end
19
+
20
+ describe "a" do
21
+ it "1" do
22
+ assert $suite1_start
23
+ end
24
+
25
+ it "2" do
26
+ assert true
27
+ end
28
+
29
+ describe "a" do
30
+ it "1" do
31
+ assert true
32
+ end
33
+
34
+ it "2" do
35
+ assert $suite1_start
36
+ $suite2_start.must_be_nil
37
+ end
38
+ end
39
+ end
40
+ end
41
+
42
+ describe "Suite2a" do
43
+ it "a" do
44
+ assert $suite1_start == false
45
+ end
46
+ end
47
+
48
+ describe "Suite2b" do
49
+ start do
50
+ $suite2_start = true
51
+ end
52
+
53
+ finish do
54
+ $suite2_start = false
55
+ end
56
+
57
+ it "a" do
58
+ assert $suite1_start == false
59
+ assert $suite2_start
60
+ $suite3_start.must_be_nil
61
+ end
62
+ end
63
+
64
+ describe "Suite3" do
65
+ start do
66
+ $suite3_start = true
67
+ end
68
+
69
+ finish do
70
+ $suite3_start = false
71
+ end
72
+
73
+ it "1" do
74
+ assert $suite1_start == false
75
+ assert $suite2_start == false
76
+ assert $suite3_start
77
+ end
78
+
79
+ describe "a" do
80
+ it "1" do
81
+ assert $suite1_start == false
82
+ assert $suite2_start == false
83
+ assert $suite3_start
84
+ end
85
+
86
+ describe "a" do
87
+ it "2" do
88
+ assert $suite3_start
89
+ end
90
+ end
91
+ end
92
+ describe "a" do
93
+ it "2" do
94
+ assert $suite3_start
95
+ end
96
+ end
97
+ end
98
+
99
+ MiniTest::Unit.after_tests do
100
+ if $suite3_start
101
+ raise "$suite3_start should be false but is #{$suite3_start.inspect}"
102
+ end
103
+ end