waves 0.7.6 → 0.7.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (291) hide show
  1. data/app/Rakefile +64 -6
  2. data/app/configurations/development.rb.erb +2 -1
  3. data/app/configurations/mapping.rb.erb +1 -0
  4. data/app/configurations/production.rb.erb +1 -0
  5. data/app/lib/application.rb.erb +2 -2
  6. data/bin/waves +36 -1
  7. data/doc/HISTORY +44 -0
  8. data/doc/LICENSE +22 -0
  9. data/doc/rdoc/classes/Erubis/Context.html +218 -0
  10. data/doc/rdoc/classes/Kernel.html +145 -0
  11. data/doc/rdoc/classes/Symbol.html +154 -0
  12. data/doc/rdoc/classes/Tempfile.html +161 -0
  13. data/doc/rdoc/classes/Waves.html +455 -0
  14. data/doc/rdoc/classes/Waves/Application.html +371 -0
  15. data/doc/rdoc/classes/Waves/Blackboard.html +296 -0
  16. data/doc/rdoc/classes/Waves/Configurations.html +283 -0
  17. data/doc/rdoc/classes/Waves/Configurations/Base.html +209 -0
  18. data/doc/rdoc/classes/Waves/Configurations/Default.html +237 -0
  19. data/doc/rdoc/classes/Waves/Console.html +187 -0
  20. data/doc/rdoc/classes/Waves/Controllers.html +203 -0
  21. data/doc/rdoc/classes/Waves/Controllers/Base.html +151 -0
  22. data/doc/rdoc/classes/Waves/Controllers/Mixin.html +312 -0
  23. data/doc/rdoc/classes/Waves/Dispatchers.html +118 -0
  24. data/doc/rdoc/classes/Waves/Dispatchers/Base.html +198 -0
  25. data/doc/rdoc/classes/Waves/Dispatchers/Default.html +224 -0
  26. data/doc/rdoc/classes/Waves/Dispatchers/NotFoundError.html +122 -0
  27. data/doc/rdoc/classes/Waves/Dispatchers/Redirect.html +173 -0
  28. data/doc/rdoc/classes/Waves/Foundations.html +131 -0
  29. data/doc/rdoc/classes/Waves/Foundations/Default.html +179 -0
  30. data/doc/rdoc/classes/Waves/Foundations/Simple.html +167 -0
  31. data/doc/rdoc/classes/Waves/Helpers.html +176 -0
  32. data/doc/rdoc/classes/Waves/Helpers/AssetHelper.html +212 -0
  33. data/doc/rdoc/classes/Waves/Helpers/Common.html +213 -0
  34. data/doc/rdoc/classes/Waves/Helpers/Default.html +135 -0
  35. data/doc/rdoc/classes/Waves/Helpers/Form.html +201 -0
  36. data/doc/rdoc/classes/Waves/Helpers/Formatting.html +232 -0
  37. data/doc/rdoc/classes/Waves/Helpers/Model.html +194 -0
  38. data/doc/rdoc/classes/Waves/Helpers/NumberHelper.html +165 -0
  39. data/doc/rdoc/classes/Waves/Helpers/TagHelper.html +226 -0
  40. data/doc/rdoc/classes/Waves/Helpers/UrlHelper.html +242 -0
  41. data/doc/rdoc/classes/Waves/Helpers/View.html +163 -0
  42. data/doc/rdoc/classes/Waves/Inflect/InflectorMethods.html +475 -0
  43. data/doc/rdoc/classes/Waves/Layers.html +175 -0
  44. data/doc/rdoc/classes/Waves/Layers/DefaultErrors.html +161 -0
  45. data/doc/rdoc/classes/Waves/Layers/Inflect.html +119 -0
  46. data/doc/rdoc/classes/Waves/Layers/Inflect/English.html +168 -0
  47. data/doc/rdoc/classes/Waves/Layers/Inflect/English/Rules.html +112 -0
  48. data/doc/rdoc/classes/Waves/Layers/Inflect/English/StringMethods.html +194 -0
  49. data/doc/rdoc/classes/Waves/Layers/MVC.html +204 -0
  50. data/doc/rdoc/classes/Waves/Layers/ORM/ActiveRecord.html +239 -0
  51. data/doc/rdoc/classes/Waves/Layers/ORM/ActiveRecord/ControllerMethods.html +246 -0
  52. data/doc/rdoc/classes/Waves/Layers/ORM/ActiveRecord/Symbol.html +132 -0
  53. data/doc/rdoc/classes/Waves/Layers/ORM/DataMapper.html +166 -0
  54. data/doc/rdoc/classes/Waves/Layers/ORM/Filebase.html +157 -0
  55. data/doc/rdoc/classes/Waves/Layers/ORM/Sequel.html +232 -0
  56. data/doc/rdoc/classes/Waves/Layers/ORM/Sequel/ControllerMethods.html +246 -0
  57. data/doc/rdoc/classes/Waves/Layers/Simple.html +169 -0
  58. data/doc/rdoc/classes/Waves/Layers/SimpleErrors.html +159 -0
  59. data/doc/rdoc/classes/Waves/Logger.html +288 -0
  60. data/doc/rdoc/classes/Waves/Mapping.html +760 -0
  61. data/doc/rdoc/classes/Waves/Mapping/PrettyUrls.html +129 -0
  62. data/doc/rdoc/classes/Waves/Mapping/PrettyUrls/GetRules.html +174 -0
  63. data/doc/rdoc/classes/Waves/Mapping/PrettyUrls/RestRules.html +180 -0
  64. data/doc/rdoc/classes/Waves/MimeTypes.html +200 -0
  65. data/doc/rdoc/classes/Waves/Renderers/Erubis.html +162 -0
  66. data/doc/rdoc/classes/Waves/Renderers/Haml.html +160 -0
  67. data/doc/rdoc/classes/Waves/Renderers/Markaby.html +167 -0
  68. data/doc/rdoc/classes/Waves/Renderers/Mixin.html +191 -0
  69. data/doc/rdoc/classes/Waves/Renderers/Scope.html +181 -0
  70. data/doc/rdoc/classes/Waves/Request.html +441 -0
  71. data/doc/rdoc/classes/Waves/Request/ParseError.html +111 -0
  72. data/doc/rdoc/classes/Waves/Response.html +283 -0
  73. data/doc/rdoc/classes/Waves/ResponseMixin.html +460 -0
  74. data/doc/rdoc/classes/Waves/ResponseProxy.html +269 -0
  75. data/doc/rdoc/classes/Waves/Server.html +488 -0
  76. data/doc/rdoc/classes/Waves/Session.html +330 -0
  77. data/doc/rdoc/classes/Waves/Utilities/Hash.html +185 -0
  78. data/doc/rdoc/classes/Waves/Utilities/Integer.html +424 -0
  79. data/doc/rdoc/classes/Waves/Utilities/Module.html +174 -0
  80. data/doc/rdoc/classes/Waves/Utilities/Object.html +155 -0
  81. data/doc/rdoc/classes/Waves/Utilities/Proc.html +145 -0
  82. data/doc/rdoc/classes/Waves/Utilities/String.html +290 -0
  83. data/doc/rdoc/classes/Waves/Views.html +278 -0
  84. data/doc/rdoc/classes/Waves/Views/Base.html +118 -0
  85. data/doc/rdoc/classes/Waves/Views/Mixin.html +279 -0
  86. data/doc/rdoc/classes/Waves/Views/NoTemplateError.html +111 -0
  87. data/doc/rdoc/created.rid +1 -0
  88. data/doc/rdoc/files/README_rdoc.html +415 -0
  89. data/doc/rdoc/files/bin/waves.html +135 -0
  90. data/doc/rdoc/files/doc/HISTORY.html +265 -0
  91. data/doc/rdoc/files/lib/commands/waves-console_rb.html +110 -0
  92. data/doc/rdoc/files/lib/commands/waves-server_rb.html +108 -0
  93. data/doc/rdoc/files/lib/controllers/base_rb.html +101 -0
  94. data/doc/rdoc/files/lib/controllers/mixin_rb.html +101 -0
  95. data/doc/rdoc/files/lib/dispatchers/base_rb.html +101 -0
  96. data/doc/rdoc/files/lib/dispatchers/default_rb.html +101 -0
  97. data/doc/rdoc/files/lib/foundations/default_rb.html +101 -0
  98. data/doc/rdoc/files/lib/foundations/simple_rb.html +101 -0
  99. data/doc/rdoc/files/lib/helpers/asset_helper_rb.html +101 -0
  100. data/doc/rdoc/files/lib/helpers/common_rb.html +101 -0
  101. data/doc/rdoc/files/lib/helpers/default_rb.html +101 -0
  102. data/doc/rdoc/files/lib/helpers/form_rb.html +101 -0
  103. data/doc/rdoc/files/lib/helpers/formatting_rb.html +108 -0
  104. data/doc/rdoc/files/lib/helpers/model_rb.html +101 -0
  105. data/doc/rdoc/files/lib/helpers/number_helper_rb.html +101 -0
  106. data/doc/rdoc/files/lib/helpers/tag_helper_rb.html +101 -0
  107. data/doc/rdoc/files/lib/helpers/url_helper_rb.html +101 -0
  108. data/doc/rdoc/files/lib/helpers/view_rb.html +101 -0
  109. data/doc/rdoc/files/lib/layers/default_errors_rb.html +101 -0
  110. data/doc/rdoc/files/lib/layers/inflect/english/rules_rb.html +101 -0
  111. data/doc/rdoc/files/lib/layers/inflect/english/string_rb.html +101 -0
  112. data/doc/rdoc/files/lib/layers/inflect/english_rb.html +109 -0
  113. data/doc/rdoc/files/lib/layers/mvc_rb.html +101 -0
  114. data/doc/rdoc/files/lib/layers/orm/active_record/tasks/generate_rb.html +101 -0
  115. data/doc/rdoc/files/lib/layers/orm/active_record/tasks/schema_rb.html +101 -0
  116. data/doc/rdoc/files/lib/layers/orm/active_record_rb.html +108 -0
  117. data/doc/rdoc/files/lib/layers/orm/data_mapper_rb.html +108 -0
  118. data/doc/rdoc/files/lib/layers/orm/filebase_rb.html +101 -0
  119. data/doc/rdoc/files/lib/layers/orm/migration_rb.html +101 -0
  120. data/doc/rdoc/files/lib/layers/orm/sequel/tasks/generate_rb.html +101 -0
  121. data/doc/rdoc/files/lib/layers/orm/sequel/tasks/schema_rb.html +101 -0
  122. data/doc/rdoc/files/lib/layers/orm/sequel_rb.html +108 -0
  123. data/doc/rdoc/files/lib/layers/simple_errors_rb.html +101 -0
  124. data/doc/rdoc/files/lib/layers/simple_rb.html +101 -0
  125. data/doc/rdoc/files/lib/mapping/mapping_rb.html +101 -0
  126. data/doc/rdoc/files/lib/mapping/pretty_urls_rb.html +101 -0
  127. data/doc/rdoc/files/lib/renderers/erubis_rb.html +108 -0
  128. data/doc/rdoc/files/lib/renderers/haml_rb.html +108 -0
  129. data/doc/rdoc/files/lib/renderers/markaby_rb.html +108 -0
  130. data/doc/rdoc/files/lib/renderers/mixin_rb.html +101 -0
  131. data/doc/rdoc/files/lib/runtime/application_rb.html +107 -0
  132. data/doc/rdoc/files/lib/runtime/blackboard_rb.html +101 -0
  133. data/doc/rdoc/files/lib/runtime/configuration_rb.html +101 -0
  134. data/doc/rdoc/files/lib/runtime/console_rb.html +101 -0
  135. data/doc/rdoc/files/lib/runtime/debugger_rb.html +101 -0
  136. data/doc/rdoc/files/lib/runtime/logger_rb.html +108 -0
  137. data/doc/rdoc/files/lib/runtime/mime_types_rb.html +101 -0
  138. data/doc/rdoc/files/lib/runtime/request_rb.html +101 -0
  139. data/doc/rdoc/files/lib/runtime/response_mixin_rb.html +101 -0
  140. data/doc/rdoc/files/lib/runtime/response_proxy_rb.html +101 -0
  141. data/doc/rdoc/files/lib/runtime/response_rb.html +101 -0
  142. data/doc/rdoc/files/lib/runtime/server_rb.html +108 -0
  143. data/doc/rdoc/files/lib/runtime/session_rb.html +101 -0
  144. data/doc/rdoc/files/lib/tasks/cluster_rb.html +101 -0
  145. data/doc/rdoc/files/lib/tasks/gem_rb.html +108 -0
  146. data/doc/rdoc/files/lib/tasks/generate_rb.html +101 -0
  147. data/doc/rdoc/files/lib/utilities/hash_rb.html +101 -0
  148. data/doc/rdoc/files/lib/utilities/inflect_rb.html +111 -0
  149. data/doc/rdoc/files/lib/utilities/integer_rb.html +101 -0
  150. data/doc/rdoc/files/lib/utilities/module_rb.html +101 -0
  151. data/doc/rdoc/files/lib/utilities/object_rb.html +101 -0
  152. data/doc/rdoc/files/lib/utilities/proc_rb.html +101 -0
  153. data/doc/rdoc/files/lib/utilities/string_rb.html +101 -0
  154. data/doc/rdoc/files/lib/utilities/symbol_rb.html +101 -0
  155. data/doc/rdoc/files/lib/utilities/tempfile_rb.html +115 -0
  156. data/doc/rdoc/files/lib/views/base_rb.html +101 -0
  157. data/doc/rdoc/files/lib/views/mixin_rb.html +101 -0
  158. data/doc/rdoc/files/lib/waves_rb.html +195 -0
  159. data/doc/rdoc/fr_class_index.html +104 -0
  160. data/doc/rdoc/fr_file_index.html +97 -0
  161. data/doc/rdoc/fr_method_index.html +233 -0
  162. data/doc/rdoc/index.html +24 -0
  163. data/doc/rdoc/rdoc-style.css +208 -0
  164. data/lib/foundations/default.rb +1 -0
  165. data/lib/layers/default_errors.rb +10 -13
  166. data/lib/layers/inflect/english.rb +24 -0
  167. data/lib/layers/inflect/english/rules.rb +88 -0
  168. data/lib/layers/inflect/english/string.rb +24 -0
  169. data/lib/layers/mvc.rb +31 -35
  170. data/lib/layers/orm/active_record.rb +83 -32
  171. data/lib/layers/orm/active_record/tasks/generate.rb +28 -0
  172. data/lib/layers/orm/active_record/tasks/schema.rb +7 -15
  173. data/lib/layers/orm/data_mapper.rb +12 -16
  174. data/lib/layers/orm/migration.rb +20 -11
  175. data/lib/layers/orm/sequel.rb +53 -49
  176. data/lib/layers/orm/sequel/tasks/generate.rb +28 -0
  177. data/lib/layers/orm/sequel/tasks/schema.rb +6 -14
  178. data/lib/layers/simple.rb +6 -13
  179. data/lib/layers/simple_errors.rb +5 -8
  180. data/lib/renderers/haml.rb +45 -0
  181. data/lib/runtime/application.rb +0 -2
  182. data/lib/tasks/cluster.rb +1 -1
  183. data/lib/utilities/inflect.rb +86 -168
  184. data/lib/utilities/integer.rb +23 -16
  185. data/lib/utilities/module.rb +19 -15
  186. data/lib/utilities/object.rb +22 -14
  187. data/lib/utilities/proc.rb +13 -7
  188. data/lib/utilities/string.rb +0 -12
  189. data/lib/utilities/symbol.rb +4 -1
  190. data/lib/utilities/tempfile.rb +9 -0
  191. data/lib/waves.rb +3 -1
  192. data/samples/blog/Rakefile +14 -0
  193. data/samples/blog/bin/waves-console +3 -0
  194. data/samples/blog/bin/waves-server +3 -0
  195. data/samples/blog/blog.db +0 -0
  196. data/samples/blog/configurations/development.rb +31 -0
  197. data/samples/blog/configurations/mapping.rb +23 -0
  198. data/samples/blog/configurations/production.rb +30 -0
  199. data/samples/blog/doc/EMTPY +0 -0
  200. data/samples/blog/lib/application.rb +5 -0
  201. data/samples/blog/models/comment.rb +14 -0
  202. data/samples/blog/models/entry.rb +14 -0
  203. data/samples/blog/public/css/site.css +2 -0
  204. data/samples/blog/public/javascript/site.js +13 -0
  205. data/samples/blog/schema/migrations/001_initial_schema.rb +17 -0
  206. data/samples/blog/schema/migrations/002_add_comments.rb +18 -0
  207. data/samples/blog/schema/migrations/templates/empty.rb.erb +9 -0
  208. data/samples/blog/startup.rb +6 -0
  209. data/samples/blog/templates/comment/add.mab +10 -0
  210. data/samples/blog/templates/comment/list.mab +6 -0
  211. data/samples/blog/templates/entry/editor.mab +13 -0
  212. data/samples/blog/templates/entry/list.mab +11 -0
  213. data/samples/blog/templates/entry/show.mab +9 -0
  214. data/samples/blog/templates/entry/summary.mab +5 -0
  215. data/samples/blog/templates/errors/not_found_404.mab +2 -0
  216. data/samples/blog/templates/errors/server_error_500.mab +2 -0
  217. data/samples/blog/templates/layouts/default.mab +17 -0
  218. data/samples/jub/Rakefile +72 -0
  219. data/samples/jub/bin/waves-console +4 -0
  220. data/samples/jub/bin/waves-server +4 -0
  221. data/samples/jub/configurations/development.rb +31 -0
  222. data/samples/jub/configurations/mapping.rb +18 -0
  223. data/samples/jub/configurations/production.rb +31 -0
  224. data/samples/jub/lib/application.rb +5 -0
  225. data/samples/jub/startup.rb +6 -0
  226. data/samples/jub/templates/errors/not_found_404.mab +2 -0
  227. data/samples/jub/templates/errors/server_error_500.mab +2 -0
  228. data/samples/jub/templates/layouts/default.mab +14 -0
  229. data/verify/app_generation/helpers.rb +24 -0
  230. data/verify/app_generation/startup.rb +39 -0
  231. data/verify/blackboard/blackboard_verify.rb +92 -0
  232. data/verify/blackboard/helpers.rb +5 -0
  233. data/verify/configurations/attributes.rb +37 -0
  234. data/verify/configurations/helpers.rb +1 -0
  235. data/verify/configurations/rack_integration.rb +29 -0
  236. data/verify/controllers/base.rb +37 -0
  237. data/verify/controllers/helpers.rb +13 -0
  238. data/verify/controllers/interface.rb +51 -0
  239. data/verify/core/helpers.rb +3 -0
  240. data/verify/core/utilities.rb +177 -0
  241. data/verify/foundations/default.rb +86 -0
  242. data/verify/foundations/default_application/Rakefile +14 -0
  243. data/verify/foundations/default_application/bin/waves-console +3 -0
  244. data/verify/foundations/default_application/bin/waves-server +3 -0
  245. data/verify/foundations/default_application/configurations/development.rb +26 -0
  246. data/verify/foundations/default_application/configurations/mapping.rb +14 -0
  247. data/verify/foundations/default_application/configurations/production.rb +30 -0
  248. data/verify/foundations/default_application/controllers/default.rb +15 -0
  249. data/verify/foundations/default_application/controllers/loaded.rb +15 -0
  250. data/verify/foundations/default_application/defaultapplication.db +0 -0
  251. data/verify/foundations/default_application/helpers/loaded.rb +10 -0
  252. data/verify/foundations/default_application/lib/application.rb +5 -0
  253. data/verify/foundations/default_application/models/default.rb +13 -0
  254. data/verify/foundations/default_application/models/loaded.rb +13 -0
  255. data/verify/foundations/default_application/schema/migrations/templates/empty.rb.erb +9 -0
  256. data/verify/foundations/default_application/startup.rb +7 -0
  257. data/verify/foundations/default_application/templates/errors/not_found_404.mab +2 -0
  258. data/verify/foundations/default_application/templates/errors/server_error_500.mab +2 -0
  259. data/verify/foundations/default_application/templates/layouts/default.mab +14 -0
  260. data/verify/foundations/default_application/views/default.rb +7 -0
  261. data/verify/foundations/default_application/views/loaded.rb +15 -0
  262. data/verify/foundations/helpers.rb +1 -0
  263. data/verify/foundations/simple.rb +25 -0
  264. data/verify/helpers.rb +76 -0
  265. data/verify/layers/data_mapper/association_verify.rb +87 -0
  266. data/verify/layers/default_errors.rb +29 -0
  267. data/verify/layers/helpers.rb +1 -0
  268. data/verify/layers/migration.rb +33 -0
  269. data/verify/layers/sequel/model.rb +41 -0
  270. data/verify/layers/sequeltest.db +0 -0
  271. data/verify/mapping/always.rb +19 -0
  272. data/verify/mapping/filters.rb +65 -0
  273. data/verify/mapping/handle.rb +24 -0
  274. data/verify/mapping/helpers.rb +7 -0
  275. data/verify/mapping/matches.rb +27 -0
  276. data/verify/mapping/named.rb +29 -0
  277. data/verify/mapping/options.rb +17 -0
  278. data/verify/mapping/path.rb +40 -0
  279. data/verify/mapping/response_proxy.rb +50 -0
  280. data/verify/mapping/threaded.rb +25 -0
  281. data/verify/requests/helpers.rb +16 -0
  282. data/verify/requests/request.rb +73 -0
  283. data/verify/requests/response.rb +59 -0
  284. data/verify/requests/session.rb +54 -0
  285. data/verify/views/helpers.rb +1 -0
  286. data/verify/views/rendering.rb +34 -0
  287. data/verify/views/templates/foo.erb +0 -0
  288. data/verify/views/templates/moo.erb +0 -0
  289. data/verify/views/templates/moo.mab +0 -0
  290. metadata +597 -224
  291. data/lib/utilities/kernel.rb +0 -34
@@ -0,0 +1,29 @@
1
+ # require 'test_helper' because RubyMate needs help
2
+ require File.join(File.dirname(__FILE__) , "helpers")
3
+
4
+ module DefaultErrorsApp
5
+ include Waves::Foundations::Simple
6
+ include Waves::Layers::DefaultErrors
7
+ module Views
8
+ class Errors
9
+ include Waves::Views::Mixin
10
+ def not_found_404(arg)
11
+ "View-based 404"
12
+ end
13
+ end
14
+ end
15
+ stub!(:views).and_return(Views)
16
+ end
17
+
18
+ # Waves << DefaultErrorsApp
19
+ Waves::Console.load( :mode => :development )
20
+
21
+
22
+ describe "An application which includes the DefaultErrors layer" do
23
+
24
+ it "registers a view-based handler for NotFound errors" do
25
+ r = get('/bogus')
26
+ r.body.should == "View-based 404"
27
+ end
28
+
29
+ end
@@ -0,0 +1 @@
1
+ require File.join(File.dirname(__FILE__) , "..", "helpers")
@@ -0,0 +1,33 @@
1
+ # require 'test_helper' because RubyMate needs help
2
+ require File.join(File.dirname(__FILE__) , "helpers")
3
+ require 'layers/orm/migration'
4
+
5
+ ORM = Waves::Layers::ORM
6
+
7
+ Dir.chdir("#{File.dirname(__FILE__)}/../../samples/blog") do
8
+
9
+ describe "Waves::Layers::ORM migration helpers" do
10
+
11
+ it "defines a standard migration location" do
12
+ ORM.migration_directory.should == "schema/migrations"
13
+ end
14
+
15
+ it "supplies a list of all migration files found in the standard location" do
16
+ ORM.migration_files.should == ["schema/migrations/001_initial_schema.rb", "schema/migrations/002_add_comments.rb"]
17
+ end
18
+
19
+ it "detects the highest-numbered existing migration file" do
20
+ ORM.latest_migration_version.should == 2
21
+ end
22
+
23
+ it "determines the number of the next migration to be created" do
24
+ ORM.next_migration_version.should == 3
25
+ end
26
+
27
+ it "generates the path for the next migration with a given name" do
28
+ ORM.migration_destination("blink").should == "schema/migrations/003_blink.rb"
29
+ end
30
+
31
+ end
32
+
33
+ end
@@ -0,0 +1,41 @@
1
+ # require 'test_helper' because RubyMate needs help
2
+ require File.join(File.dirname(__FILE__) , "..", "helpers")
3
+ require 'layers/orm/sequel'
4
+
5
+ module TestApplication
6
+ include AutoCode
7
+ module Configurations
8
+ class Development
9
+ stub!(:database).and_return(:adapter => 'sqlite',
10
+ :database => "#{File.dirname(__FILE__)}test.db")
11
+ end
12
+ end
13
+ stub!(:config).and_return(Configurations::Development)
14
+ include Waves::Layers::ORM::Sequel
15
+ end
16
+
17
+ Waves << TestApplication
18
+ # Waves::Console.load( :mode => :development )
19
+ TA = TestApplication
20
+
21
+ describe "An application module which includes the Sequel ORM layer" do
22
+
23
+ wrap { rm_if_exist 'test.db' }
24
+
25
+ it "auto_creates models that inherit from Sequel::Model" do
26
+ TA::Models::Default.superclass.should == Sequel::Model
27
+ TA::Models::Thingy.superclass.should == TA::Models::Default
28
+ end
29
+
30
+ it "sets the dataset to use the snake_case of the class name as the table name" do
31
+ TA::Models::Thingy.dataset.send(:to_table_reference).should =~ /SELECT.+FROM.+thingies+/
32
+ end
33
+
34
+ it "provides an accessor for database" do
35
+ TA.should.respond_to :database
36
+ end
37
+
38
+ end
39
+
40
+ # Waves.instance_variable_set(:@application, nil)
41
+ # raise Waves.application.inspect
File without changes
@@ -0,0 +1,19 @@
1
+ # require 'test_helper' because RubyMate needs help
2
+ require File.join(File.dirname(__FILE__), "helpers")
3
+ ::TEST_VALUE = 'foo'
4
+
5
+ specification "A developer can ensure" do
6
+
7
+ before do
8
+ mapping.clear
9
+ path('/' ) { raise RuntimeError.new('bar') }
10
+ always( true ) { Waves.been_there }
11
+ end
12
+
13
+ specify 'processing is guaranteed regardless of what happens in an action' do
14
+ Waves.should.receive(:been_there)
15
+ lambda { get('/') }.should.raise RuntimeError
16
+ end
17
+
18
+ end
19
+
@@ -0,0 +1,65 @@
1
+ # require 'test_helper' because RubyMate needs help
2
+ require File.join(File.dirname(__FILE__), "helpers")
3
+
4
+ describe "A developer can map requests to filters." do
5
+
6
+ before do
7
+ mapping.clear
8
+ handle(Waves::Dispatchers::NotFoundError) { response.status = 404}
9
+ mapping.before( :path => '/filters', :method => :post ) { request.response.write('Before post:') }
10
+ mapping.before( :path => '/filters' ) { request.response.write('Before:') }
11
+ mapping.wrap( :path => '/filters', :method => :post ) { request.response.write(':Wrap post:') }
12
+ mapping.wrap( :path => '/filters' ) { request.response.write(':Wrap:') }
13
+ mapping.path( '/filters' ) { 'During' }
14
+ mapping.after( :path => '/filters', :method => :post ) { request.response.write('After post:') }
15
+ mapping.after( :path => '/filters' ) { request.response.write(':After') }
16
+
17
+ regexp = %r{^/filters/(\w+)$}
18
+
19
+ mapping.before( :path => regexp ) { |filtername| request.response.write("Before #{filtername}:") }
20
+ mapping.wrap( :path => regexp ) { |filtername| request.response.write(":Wrap #{filtername}:") }
21
+ mapping.path( regexp ) { 'During' }
22
+ mapping.after( :path => regexp ) { |filtername| request.response.write(":After #{filtername}") }
23
+
24
+ mapping.before( :path => 'filters_with_no_map' ) { request.response.write("Before") }
25
+ mapping.wrap( :path => 'filters_with_no_map' ) { request.response.write("Wrap") }
26
+ mapping.after( :path => 'filters_with_no_map' ) { request.response.write("After") }
27
+
28
+ mapping.before('/pathstring') { request.response.write("Before pathstring") }
29
+ mapping.wrap('/pathstring') { request.response.write("Wrap pathstring") }
30
+ mapping.path('/pathstring') { "During pathstring" }
31
+ mapping.after('/pathstring') { request.response.write("After pathstring") }
32
+
33
+ mapping.before(%r{^/pathregexp$}) { request.response.write("Before pathregexp") }
34
+ mapping.wrap(%r{^/pathregexp$}) { request.response.write("Wrap pathregexp") }
35
+ mapping.path(%r{^/pathregexp$}) { "During pathregexp" }
36
+ mapping.after(%r{^/pathregexp$}) { request.response.write("After pathregexp") }
37
+
38
+ mapping.before('/pathstring/name', :method => :post) { request.response.write("Before pathstring post") }
39
+ mapping.wrap('/pathstring/name', :method => :post) { request.response.write("Wrap pathstring post") }
40
+ mapping.path('/pathstring/name', :method => :post) { "During pathstring post" }
41
+ mapping.after('/pathstring/name', :method => :post) { request.response.write("After pathstring post") }
42
+
43
+ mapping.before(%r{^/pathregexp/name$}, :method => :post) { request.response.write("Before pathregexp post") }
44
+ mapping.wrap(%r{^/pathregexp/name$}, :method => :post) { request.response.write("Wrap pathregexp post") }
45
+ mapping.path(%r{^/pathregexp/name$}, :method => :post) { "During pathregexp post" }
46
+ mapping.after(%r{^/pathregexp/name$}, :method => :post) { request.response.write("After pathregexp post") }
47
+ end
48
+
49
+ it "Map a path to a 'before', 'after' and 'wrap' filters." do
50
+ get('/filters').body.should == 'Before::Wrap:During:Wrap::After'
51
+ end
52
+
53
+ it "Map a POST to a path to a 'before', 'after' and 'wrap' filters" do
54
+ post('/filters').body.should == 'Before post:Before::Wrap post::Wrap:During:Wrap post::Wrap:After post::After'
55
+ end
56
+
57
+ it "The 'before', 'after' and 'wrap' filters accept a regular expression and can extract parameters from the request path" do
58
+ get('/filters/xyz').body.should == 'Before xyz::Wrap xyz:During:Wrap xyz::After xyz'
59
+ end
60
+
61
+ it "When having 'before', 'after' and 'wrap' filters but no corresponding map action this results in a 404" do
62
+ get('/filters_with_no_map').status.should == 404
63
+ end
64
+
65
+ end
@@ -0,0 +1,24 @@
1
+ # require 'test_helper' because RubyMate needs help
2
+ require File.join(File.dirname(__FILE__), "helpers")
3
+
4
+ specification "A developer can register exception handlers" do
5
+
6
+ before do
7
+ mapping.clear
8
+ mapping.handle(Waves::Dispatchers::NotFoundError) do
9
+ response.status = 404; response.body = "404 Not Found"
10
+ end
11
+ mapping.handle(Waves::Dispatchers::NotFoundError) do
12
+ response.status = 404; response.body = "Something Different"
13
+ end
14
+ end
15
+
16
+ specify 'The minimal 404 handler in SimpleErrors' do
17
+
18
+ r = get('/')
19
+ r.status.should == 404
20
+ r.body.should == '404 Not Found'
21
+ end
22
+
23
+
24
+ end
@@ -0,0 +1,7 @@
1
+ require File.join(File.dirname(__FILE__) , "..", "helpers")
2
+
3
+ # define basic app for use in testing
4
+ # before methods may add to it using helper methods
5
+ module MappingApp ; include Waves::Foundations::Simple ; end
6
+ Waves << MappingApp
7
+ Waves::Console.load( :mode => :development )
@@ -0,0 +1,27 @@
1
+ # require 'test_helper' because RubyMate needs help
2
+ require File.join(File.dirname(__FILE__), "helpers")
3
+
4
+ specification "A developer can extract parameters from a request path or URL." do
5
+
6
+ before do
7
+ mapping.clear
8
+
9
+ path %r{/param/(\w+)} do |value|
10
+ "You asked for: #{value}."
11
+ end
12
+
13
+ url %r{http://localhost:(\d+)/port} do |port|
14
+ port
15
+ end
16
+
17
+ end
18
+
19
+ specify 'Extract a parameter via a regexp match of the path.' do
20
+ get('/param/elephant').body.should == 'You asked for: elephant.'
21
+ end
22
+
23
+ specify 'Extract a parameter via a regexp match of the URL.' do
24
+ get('http://localhost:3000/port').body.should == '3000'
25
+ end
26
+
27
+ end
@@ -0,0 +1,29 @@
1
+ # require 'test_helper' because RubyMate needs help
2
+ require File.join(File.dirname(__FILE__), "helpers")
3
+
4
+ specification "A developer can register named mappings" do
5
+
6
+ # before do
7
+ # mapping.clear
8
+ # resource = /([\w\-]+)/
9
+ # name = /([\w\-\_\.\+\@]+)/
10
+ # path [resource, name],
11
+ # :generator => generator(:show) { |resource,name| "/#{resource}/#{name}" } do
12
+ # "Works"
13
+ # end
14
+ # end
15
+ #
16
+ # specify "accessible via Waves.mapping.named" do
17
+ #
18
+ # Waves.mapping.named.show("foo", "bar").should == "/foo/bar"
19
+ #
20
+ # end
21
+ #
22
+ # specify "accessible via Application.paths" do
23
+ #
24
+ # Test.paths.show("foo", "bar").should == "/foo/bar"
25
+ #
26
+ # end
27
+
28
+
29
+ end
@@ -0,0 +1,17 @@
1
+ # require 'test_helper' because RubyMate needs help
2
+ require File.join(File.dirname(__FILE__), "helpers")
3
+
4
+ specification "A developer can map requests with options." do
5
+
6
+ before do
7
+ mapping.clear
8
+ path('/', :remote_addr => "10.10.10.10" ) { 'This request is from 10.10.10.10' }
9
+ path('/', :remote_addr => "127.0.0.1" ) { 'This request is from 127.0.0.1' }
10
+ end
11
+
12
+ specify 'Map the path of a GET request to a lambda.' do
13
+ get('/').body.should == 'This request is from 127.0.0.1'
14
+ end
15
+
16
+ end
17
+
@@ -0,0 +1,40 @@
1
+ # require 'test_helper' because RubyMate needs help
2
+ require File.join(File.dirname(__FILE__), "helpers")
3
+
4
+ specification "A developer can map requests using the request path." do
5
+
6
+ before do
7
+ mapping.clear
8
+ path('/', :method => :post ) { 'This is a simple post rule.' }
9
+ path('/', :method => :put ) { 'This is a simple put rule.' }
10
+ path('/', :method => :delete ) { 'This is a simple delete rule.' }
11
+ path('/', :method => :get) { 'This is a simple get rule.' }
12
+ path('/foo') { "The server says, 'bar!'" }
13
+ end
14
+
15
+ specify 'Map the path of a GET request to a lambda.' do
16
+ get('/').body.should == 'This is a simple get rule.'
17
+ end
18
+
19
+ specify 'Map the path of a POST request to a lambda.' do
20
+ post('/').body.should == 'This is a simple post rule.'
21
+ end
22
+
23
+ specify 'Map the path of a PUT request to a lambda.' do
24
+ put('/').body.should == 'This is a simple put rule.'
25
+ end
26
+
27
+ specify 'Map the path of a DELETE request to a lambda.' do
28
+ delete('/').body.should == 'This is a simple delete rule.'
29
+ end
30
+
31
+ specify 'When method is not explicitely set in a mapping it accepts all methods' do
32
+ get( '/foo' ).body.should == "The server says, 'bar!'"
33
+ post( '/foo' ).body.should == "The server says, 'bar!'"
34
+ put( '/foo' ).body.should == "The server says, 'bar!'"
35
+ delete( '/foo' ).body.should == "The server says, 'bar!'"
36
+ end
37
+
38
+
39
+ end
40
+
@@ -0,0 +1,50 @@
1
+ # require 'test_helper' because RubyMate needs help
2
+ require File.join(File.dirname(__FILE__), "helpers")
3
+
4
+ # Note: you have to define the resource classes using module_eval here, because otherwise
5
+ # the auto_create code never gets triggered in the application.
6
+
7
+ module MappingApp
8
+ include Waves::Layers::MVC
9
+ end
10
+
11
+ MappingApp::Controllers.module_eval do
12
+ class Animal
13
+ include Waves::Controllers::Mixin
14
+ def cow() 'Moo!' end
15
+ end
16
+ end
17
+
18
+ MappingApp::Views.module_eval do
19
+ class Animal
20
+ include Waves::Views::Mixin
21
+ def say( says ) "This animal says: '#{says}'" end
22
+ end
23
+ end
24
+
25
+ specification "A developer may succinctly define a resource-based controller-view chain." do
26
+
27
+ before do
28
+ mapping.clear
29
+ path('/cow' ) do
30
+ resource( :animal ) { controller { cow } | view { | says | say( says ) } }
31
+ end
32
+
33
+ path('/onager') do
34
+ resource( "cow" ) do
35
+ controller { redirect model_name }.call
36
+ end
37
+ end
38
+ end
39
+
40
+ specify 'Pipe output of controller to view within a resource context.' do
41
+ get('/cow').body.should == "This animal says: 'Moo!'"
42
+ end
43
+
44
+ specify "Redirect from within controller" do
45
+ get('/onager').status.should == 302
46
+ end
47
+
48
+
49
+ end
50
+
@@ -0,0 +1,25 @@
1
+ # require 'test_helper' because RubyMate needs help
2
+ require File.join(File.dirname(__FILE__), "helpers")
3
+
4
+ specification "Requests can be made threaded for event driven servers" do
5
+
6
+ before do
7
+ mapping.clear
8
+ threaded( '/upload', {:method => :post} ) { 'This is threaded.' }
9
+ path( '/foo' ) { "The server says, 'bar!'" }
10
+ end
11
+
12
+ specify 'Post to upload should be threaded' do
13
+ req = Waves::Request.new( ::Rack::MockRequest.env_for('/upload', {:method => 'POST'}) )
14
+ ::Waves::Dispatchers::Default.new.deferred?(req).should == true
15
+ post('/upload').body.should == 'This is threaded.'
16
+ end
17
+
18
+ specify 'Get to foo should not be threaded' do
19
+ req = Waves::Request.new( ::Rack::MockRequest.env_for('/foo', {:method => 'GET'}) )
20
+ ::Waves::Dispatchers::Default.new.deferred?(req).should == false
21
+ get('/foo').body.should == "The server says, 'bar!'"
22
+ end
23
+
24
+ end
25
+
@@ -0,0 +1,16 @@
1
+ require File.join(File.dirname(__FILE__) , "..", "helpers")
2
+
3
+ module TestRequests
4
+ module Configurations
5
+ class Default
6
+ # stub!(:session).and_return(:duration => 30.minutes, :path => '/tmp/sessions')
7
+ ::BasePath = File.dirname(__FILE__) / :tmp
8
+ stub!(:session).and_return(:duration => 30.minutes, :path => ::BasePath)
9
+ end
10
+ end
11
+
12
+ end
13
+
14
+ def env_for(uri="/", options={})
15
+ Rack::MockRequest.env_for(uri,options)
16
+ end