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.
- checksums.yaml +7 -0
- data/.gitignore +24 -0
- data/.locat +42 -0
- data/.travis/gemfiles/Gemfile.empty +7 -0
- data/.travis.yml +18 -0
- data/Gemfile +12 -8
- data/LICENSE +1 -1
- data/Rakefile +15 -157
- data/Readme.markdown +1 -1
- data/application/css/core.css.scss +22 -146
- data/application/css/definitions.css.scss +7 -3
- data/application/css/dialogue.css.scss +26 -1
- data/application/css/editing.css.scss +70 -28
- data/application/css/font.css.scss +1 -1
- data/application/css/popover.css.scss +2 -0
- data/application/css/top.css.scss +231 -0
- data/application/js/add_alias_dialogue.js +1 -1
- data/application/js/add_home_dialogue.js +1 -1
- data/application/js/ajax.js +61 -31
- data/application/js/box.js +4 -4
- data/application/js/conflicted_field_dialogue.js +1 -1
- data/application/js/content.js +5 -5
- data/application/js/dom.js +5 -0
- data/application/js/edit_panel.js +1 -0
- data/application/js/editing.js +1 -1
- data/application/js/extensions.js +8 -0
- data/application/js/field/boolean.js +31 -0
- data/application/js/field/file.js +32 -4
- data/application/js/field/image.js +24 -9
- data/application/js/field/markdown.js +87 -59
- data/application/js/field/select.js +1 -1
- data/application/js/field/webvideo.js +6 -1
- data/application/js/init.js +2 -2
- data/application/js/jquery-selection-position.js +130 -0
- data/application/js/location.js +4 -25
- data/application/js/meta_view/user_admin.js +2 -2
- data/application/js/metadata.js +2 -2
- data/application/js/page_browser.js +1 -1
- data/application/js/panel/root_menu.js +0 -1
- data/application/js/popover.js +27 -12
- data/application/js/popover_view.js +20 -4
- data/application/js/preview.js +31 -16
- data/application/js/progress.js +22 -21
- data/application/js/publish.js +18 -7
- data/application/js/sharded_upload.js +9 -6
- data/application/js/spontaneous.js +3 -1
- data/application/js/top_bar.js +264 -173
- data/application/js/upload.js +12 -5
- data/application/js/upload_manager.js +4 -3
- data/application/js/user.js +1 -2
- data/application/js/views/box_view.js +1 -1
- data/application/js/views/page_view.js +16 -5
- data/application/js/views/piece_view.js +5 -4
- data/application/static/font/fontawesome-webfont-1c66a4738b40ef0f6b1abca0ba9a796d.ttf +0 -0
- data/application/views/index.erb +6 -14
- data/application/views/login.erb +6 -25
- data/application/views/schema_modification_error.html.erb +3 -7
- data/db/migrations/20130114120000_create_revision_tables.rb +2 -2
- data/db/migrations/20130813111009_increase_path_length.rb +14 -0
- data/gem-public_cert.pem +20 -0
- data/lib/spontaneous/asset/app_compiler.rb +44 -0
- data/lib/spontaneous/asset/environment.rb +225 -0
- data/lib/spontaneous/asset.rb +2 -67
- data/lib/spontaneous/box.rb +0 -1
- data/lib/spontaneous/capistrano/deploy.rb +2 -2
- data/lib/spontaneous/capistrano/sync.rb +1 -1
- data/lib/spontaneous/cli/init.rb +36 -13
- data/lib/spontaneous/cli/server.rb +0 -1
- data/lib/spontaneous/cli/site.rb +2 -1
- data/lib/spontaneous/cli.rb +3 -1
- data/lib/spontaneous/collections/entry_set.rb +4 -12
- data/lib/spontaneous/collections/hash_with_fallback.rb +20 -0
- data/lib/spontaneous/collections/prototype_set.rb +6 -5
- data/lib/spontaneous/crypt.rb +2 -2
- data/lib/spontaneous/data_mapper/content_model/associations.rb +115 -63
- data/lib/spontaneous/data_mapper.rb +1 -1
- data/lib/spontaneous/errors.rb +6 -0
- data/lib/spontaneous/extensions/object_space.rb +6 -0
- data/lib/spontaneous/facet.rb +1 -0
- data/lib/spontaneous/field/base.rb +86 -13
- data/lib/spontaneous/field/boolean.rb +65 -0
- data/lib/spontaneous/field/file.rb +17 -6
- data/lib/spontaneous/field/html.rb +13 -0
- data/lib/spontaneous/field/image/size.rb +76 -0
- data/lib/spontaneous/field/image.rb +99 -414
- data/lib/spontaneous/field/tags.rb +36 -0
- data/lib/spontaneous/field/update.rb +1 -1
- data/lib/spontaneous/field/webvideo/fallback.rb +41 -0
- data/lib/spontaneous/field/webvideo/vimeo.rb +113 -0
- data/lib/spontaneous/field/webvideo/vine.rb +94 -0
- data/lib/spontaneous/field/webvideo/youtube.rb +133 -0
- data/lib/spontaneous/field/webvideo.rb +100 -250
- data/lib/spontaneous/field.rb +1 -1
- data/lib/spontaneous/generators/site/Gemfile.tt +5 -14
- data/lib/spontaneous/generators/site/assets/README.md +20 -0
- data/lib/spontaneous/generators/site/assets/css/site.scss +8 -0
- data/lib/spontaneous/generators/site/assets/js/site.js +6 -0
- data/lib/spontaneous/generators/site/config/deploy.rb.tt +9 -0
- data/lib/spontaneous/generators/site/config/user_levels.yml +14 -3
- data/lib/spontaneous/generators/site/public/README.md +12 -0
- data/lib/spontaneous/generators/site/templates/layouts/standard.html.cut.tt +2 -2
- data/lib/spontaneous/generators/site.rb +77 -35
- data/lib/spontaneous/layout.rb +6 -7
- data/lib/spontaneous/loader.rb +21 -13
- data/lib/spontaneous/media/file.rb +22 -9
- data/lib/spontaneous/media/image/attributes.rb +33 -0
- data/lib/spontaneous/media/image/format/gif.rb +4 -0
- data/lib/spontaneous/media/image/format/jpg.rb +17 -0
- data/lib/spontaneous/media/image/format/png.rb +4 -0
- data/lib/spontaneous/media/image/format/webp.rb +26 -0
- data/lib/spontaneous/media/image/format.rb +79 -0
- data/lib/spontaneous/media/image/optimizer.rb +69 -0
- data/lib/spontaneous/media/image/processor.rb +17 -0
- data/lib/spontaneous/media/image/renderable.rb +52 -0
- data/lib/spontaneous/media/image/skeptick.rb +70 -0
- data/lib/spontaneous/media/image.rb +50 -0
- data/lib/spontaneous/media/temp_file.rb +4 -0
- data/lib/spontaneous/media.rb +1 -0
- data/lib/spontaneous/model/core/aliases.rb +14 -8
- data/lib/spontaneous/model/core/boxes.rb +5 -2
- data/lib/spontaneous/model/core/entries.rb +4 -0
- data/lib/spontaneous/model/core/entry.rb +1 -0
- data/lib/spontaneous/model/core/fields.rb +5 -2
- data/lib/spontaneous/model/core/locks.rb +16 -0
- data/lib/spontaneous/model/core/media.rb +1 -15
- data/lib/spontaneous/model/core.rb +31 -1
- data/lib/spontaneous/model/page/controllers.rb +2 -2
- data/lib/spontaneous/model/page/formats.rb +1 -4
- data/lib/spontaneous/model/page/layouts.rb +6 -2
- data/lib/spontaneous/model/page/locks.rb +8 -2
- data/lib/spontaneous/model/page/page_tree.rb +2 -2
- data/lib/spontaneous/model/page/paths.rb +74 -9
- data/lib/spontaneous/model/page.rb +11 -3
- data/lib/spontaneous/model.rb +6 -6
- data/lib/spontaneous/output/context/render_cache.rb +23 -0
- data/lib/spontaneous/output/context.rb +56 -30
- data/lib/spontaneous/output/helpers/script_helper.rb +9 -53
- data/lib/spontaneous/output/helpers/stylesheet_helper.rb +8 -40
- data/lib/spontaneous/output/template/renderer.rb +17 -5
- data/lib/spontaneous/output.rb +0 -1
- data/lib/spontaneous/paths.rb +6 -2
- data/lib/spontaneous/permissions/access_key.rb +18 -0
- data/lib/spontaneous/permissions/user.rb +1 -1
- data/lib/spontaneous/permissions.rb +4 -1
- data/lib/spontaneous/plugins/application/state.rb +19 -12
- data/lib/spontaneous/prototypes/field_prototype.rb +14 -8
- data/lib/spontaneous/published_revision.rb +7 -0
- data/lib/spontaneous/publishing/immediate.rb +43 -34
- data/lib/spontaneous/publishing/revision.rb +9 -6
- data/lib/spontaneous/rack/asset_server.rb +20 -0
- data/lib/spontaneous/rack/back/alias.rb +46 -0
- data/lib/spontaneous/rack/back/application_assets.rb +28 -0
- data/lib/spontaneous/rack/back/base.rb +34 -0
- data/lib/spontaneous/rack/back/changes.rb +19 -0
- data/lib/spontaneous/rack/back/content.rb +54 -0
- data/lib/spontaneous/rack/back/events.rb +38 -0
- data/lib/spontaneous/rack/back/field.rb +37 -0
- data/lib/spontaneous/rack/back/file.rb +118 -0
- data/lib/spontaneous/rack/back/helpers.rb +71 -0
- data/lib/spontaneous/rack/back/index.rb +16 -0
- data/lib/spontaneous/rack/back/login.rb +47 -0
- data/lib/spontaneous/rack/back/map.rb +24 -0
- data/lib/spontaneous/rack/back/page.rb +46 -0
- data/lib/spontaneous/rack/back/preview.rb +43 -0
- data/lib/spontaneous/rack/back/schema.rb +30 -0
- data/lib/spontaneous/rack/back/site.rb +25 -0
- data/lib/spontaneous/rack/back/site_assets.rb +13 -0
- data/lib/spontaneous/rack/back/unsupported_browser.rb +7 -0
- data/lib/spontaneous/rack/{user_admin.rb → back/user_admin.rb} +2 -5
- data/lib/spontaneous/rack/back.rb +85 -764
- data/lib/spontaneous/rack/cacheable_file.rb +3 -3
- data/lib/spontaneous/rack/front.rb +16 -9
- data/lib/spontaneous/rack/middleware/authenticate.rb +65 -0
- data/lib/spontaneous/rack/middleware/csrf.rb +66 -0
- data/lib/spontaneous/rack/middleware/reloader.rb +52 -0
- data/lib/spontaneous/rack/middleware/scope.rb +60 -0
- data/lib/spontaneous/rack/middleware.rb +6 -0
- data/lib/spontaneous/rack/page_controller.rb +18 -5
- data/lib/spontaneous/rack/public.rb +17 -11
- data/lib/spontaneous/rack.rb +34 -24
- data/lib/spontaneous/revision.rb +29 -2
- data/lib/spontaneous/schema/uid.rb +4 -3
- data/lib/spontaneous/schema/uid_map.rb +5 -24
- data/lib/spontaneous/schema.rb +1 -0
- data/lib/spontaneous/search/database.rb +8 -0
- data/lib/spontaneous/search/field.rb +1 -1
- data/lib/spontaneous/search/index.rb +3 -5
- data/lib/spontaneous/server.rb +1 -1
- data/lib/spontaneous/simultaneous.rb +1 -1
- data/lib/spontaneous/site/features.rb +4 -5
- data/lib/spontaneous/site/helpers.rb +22 -5
- data/lib/spontaneous/site/instance.rb +2 -2
- data/lib/spontaneous/site/selectors.rb +22 -3
- data/lib/spontaneous/storage/cloud.rb +13 -9
- data/lib/spontaneous/storage/local.rb +11 -6
- data/lib/spontaneous/style.rb +40 -23
- data/lib/spontaneous/utils/database/mysql_dumper.rb +1 -1
- data/lib/spontaneous/utils/smush_it.rb +1 -1
- data/lib/spontaneous/version.rb +1 -1
- data/lib/spontaneous.rb +35 -33
- data/spontaneous.gemspec +53 -787
- data/test/experimental/test_crypt.rb +56 -56
- data/test/experimental/test_features.rb +16 -27
- data/test/fixtures/assets/public1/css/data.css.scss +3 -0
- data/test/fixtures/assets/public1/css/image1.css.scss +4 -0
- data/test/fixtures/assets/public1/css/import.css.scss +1 -0
- data/test/fixtures/assets/public1/css/urlhash.css.scss +3 -0
- data/test/fixtures/assets/public1/js/a.js +1 -1
- data/test/fixtures/assets/public1/js/all.js +4 -0
- data/test/fixtures/assets/public1/js/{m.coffee → m.js.coffee} +1 -0
- data/test/fixtures/assets/public1/x.js +1 -0
- data/test/fixtures/assets/public2/css/all.css +4 -0
- data/test/fixtures/assets/public2/css/missing.css.scss +3 -0
- data/test/fixtures/assets/public2/i/y.png +0 -0
- data/test/fixtures/assets/public2/js/b.js +1 -1
- data/test/fixtures/assets/public2/js/c.js +1 -1
- data/test/fixtures/images/size.extended.webp +0 -0
- data/test/fixtures/images/size.lossless.webp +0 -0
- data/test/fixtures/images/size.lossy.webp +0 -0
- data/test/fixtures/schema/before.yml +4 -4
- data/test/fixtures/schema/schema.yml +1 -1
- data/test/fixtures/templates/aliases/aaa.html.cut +0 -0
- data/test/fixtures/templates/extended/partial_with_renderer.html.cut +1 -0
- data/test/fixtures/templates/extended/with_includes_and_renderer.html.cut +2 -0
- data/test/functional/test_application.rb +108 -106
- data/test/functional/test_back.rb +924 -930
- data/test/functional/test_front.rb +285 -238
- data/test/functional/test_user_manager.rb +75 -100
- data/test/integration/test_installation.rb +1 -1
- data/test/support/matchers.rb +12 -0
- data/test/support/minitest.rb +121 -0
- data/test/support/rack.rb +45 -0
- data/test/support/test_start_finish.rb +103 -0
- data/test/test_helper.rb +21 -68
- data/test/test_integration_helper.rb +1 -3
- data/test/unit/test_alias.rb +432 -408
- data/test/unit/test_asset_bundler.rb +58 -58
- data/test/unit/test_assets.rb +485 -155
- data/test/unit/test_async.rb +16 -37
- data/test/unit/test_authentication.rb +425 -457
- data/test/unit/test_boxes.rb +191 -191
- data/test/unit/test_changesets.rb +244 -254
- data/test/unit/test_config.rb +128 -142
- data/test/unit/test_content.rb +313 -359
- data/test/unit/test_content_inheritance.rb +29 -30
- data/test/unit/test_datamapper.rb +1205 -1080
- data/test/unit/test_datamapper_content.rb +49 -51
- data/test/unit/test_extensions.rb +23 -23
- data/test/unit/test_fields.rb +1488 -1180
- data/test/unit/test_formats.rb +158 -158
- data/test/unit/test_generators.rb +98 -40
- data/test/unit/test_helpers.rb +73 -76
- data/test/unit/test_image_size.rb +53 -22
- data/test/unit/test_images.rb +164 -165
- data/test/unit/test_layouts.rb +133 -122
- data/test/unit/test_logger.rb +14 -17
- data/test/unit/test_media.rb +69 -84
- data/test/unit/test_modifications.rb +513 -525
- data/test/unit/test_page.rb +462 -361
- data/test/unit/test_permissions.rb +379 -364
- data/test/unit/test_piece.rb +67 -75
- data/test/unit/test_plugins.rb +82 -89
- data/test/unit/test_prototype_set.rb +215 -216
- data/test/unit/test_prototypes.rb +114 -124
- data/test/unit/test_publishing.rb +252 -289
- data/test/unit/test_render.rb +167 -115
- data/test/unit/test_revisions.rb +436 -444
- data/test/unit/test_schema.rb +339 -309
- data/test/unit/test_search.rb +577 -574
- data/test/unit/test_serialisation.rb +136 -147
- data/test/unit/test_site.rb +252 -227
- data/test/unit/test_skeptick.rb +130 -0
- data/test/unit/test_storage.rb +46 -40
- data/test/unit/test_structure.rb +57 -66
- data/test/unit/test_styles.rb +104 -104
- data/test/unit/test_templates.rb +72 -57
- data/test/unit/test_type_hierarchy.rb +15 -16
- data/test/unit/test_visibility.rb +239 -257
- metadata +455 -326
- data/application/js/vendor/JS.Class-2.1.5/CHANGELOG +0 -283
- data/application/js/vendor/JS.Class-2.1.5/MIT-LICENSE +0 -30
- data/application/js/vendor/JS.Class-2.1.5/README +0 -30
- data/application/js/vendor/JS.Class-2.1.5/min/command.js +0 -1
- data/application/js/vendor/JS.Class-2.1.5/min/comparable.js +0 -1
- data/application/js/vendor/JS.Class-2.1.5/min/constant_scope.js +0 -1
- data/application/js/vendor/JS.Class-2.1.5/min/decorator.js +0 -1
- data/application/js/vendor/JS.Class-2.1.5/min/enumerable.js +0 -1
- data/application/js/vendor/JS.Class-2.1.5/min/forwardable.js +0 -1
- data/application/js/vendor/JS.Class-2.1.5/min/hash.js +0 -1
- data/application/js/vendor/JS.Class-2.1.5/min/linked_list.js +0 -1
- data/application/js/vendor/JS.Class-2.1.5/min/loader.js +0 -1
- data/application/js/vendor/JS.Class-2.1.5/min/method_chain.js +0 -1
- data/application/js/vendor/JS.Class-2.1.5/min/observable.js +0 -1
- data/application/js/vendor/JS.Class-2.1.5/min/package.js +0 -1
- data/application/js/vendor/JS.Class-2.1.5/min/proxy.js +0 -1
- data/application/js/vendor/JS.Class-2.1.5/min/ruby.js +0 -1
- data/application/js/vendor/JS.Class-2.1.5/min/set.js +0 -1
- data/application/js/vendor/JS.Class-2.1.5/min/stack_trace.js +0 -1
- data/application/js/vendor/JS.Class-2.1.5/min/state.js +0 -1
- data/application/js/vendor/JS.Class-2.1.5/min/stdlib.js +0 -16
- data/application/js/vendor/jquery-1.6.2.min.js +0 -18
- data/application/js/vendor/jquery-ui-1.8.16.custom.min.js +0 -791
- data/application/js/vendor/jquery-ui-1.8.9.custom.min.js +0 -415
- data/application/static/font/fontawesome-webfont-5c5c21100a346972a82c34c5e96ffcfe.ttf +0 -0
- data/application/static/select-arrow-6e7dd3745b00e934b0d7a3250c46558b.png +0 -0
- data/bin/limit-upload +0 -5
- data/bin/unlimit-upload +0 -3
- data/lib/spontaneous/asset/file.rb +0 -25
- data/lib/spontaneous/asset/source.rb +0 -28
- data/lib/spontaneous/image_size.rb +0 -123
- data/lib/spontaneous/output/assets/compression.rb +0 -58
- data/lib/spontaneous/output/assets.rb +0 -32
- data/lib/spontaneous/rack/around_back.rb +0 -20
- data/lib/spontaneous/rack/around_front.rb +0 -27
- data/lib/spontaneous/rack/around_preview.rb +0 -22
- data/lib/spontaneous/rack/assets.rb +0 -126
- data/lib/spontaneous/rack/authentication.rb +0 -20
- data/lib/spontaneous/rack/cookie_authentication.rb +0 -38
- data/lib/spontaneous/rack/helpers.rb +0 -52
- data/lib/spontaneous/rack/http.rb +0 -18
- data/lib/spontaneous/rack/media.rb +0 -30
- data/lib/spontaneous/rack/query_authentication.rb +0 -35
- data/lib/spontaneous/rack/reloader.rb +0 -45
- data/lib/spontaneous/rack/user_helpers.rb +0 -28
- /data/{README → application/js/field/markdown/text_command.js} +0 -0
- /data/application/js/vendor/{JS.Class-2.1.5/min/core.js → js.class-2.1.5.min.js} +0 -0
- /data/test/fixtures/assets/public1/css/{a.scss → a.css.scss} +0 -0
- /data/{lib/spontaneous/generators/site/public/css/site.scss → test/fixtures/assets/public1/x.css} +0 -0
- /data/{lib/spontaneous/generators/site/public/js/.empty_directory → test/fixtures/assets/public1/x.png} +0 -0
- /data/test/fixtures/assets/public2/css/{b.scss → b.css.scss} +0 -0
- /data/test/fixtures/assets/public2/js/{n.coffee → n.js.coffee} +0 -0
- /data/test/fixtures/back/{public → assets}/css/sass_include.scss +0 -0
- /data/test/fixtures/back/{public → assets}/css/sass_template.scss +0 -0
- /data/test/fixtures/back/{public → assets}/js/coffeescript.coffee +0 -0
- /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
|
-
|
9
|
-
include
|
8
|
+
describe "UserAdmin" do
|
9
|
+
include RackTestMethods
|
10
10
|
|
11
|
-
|
12
|
-
@site_root
|
13
|
-
end
|
14
|
-
|
15
|
-
def self.startup
|
11
|
+
start do
|
16
12
|
S::Permissions::User.delete
|
17
|
-
|
13
|
+
site_root = Dir.mktmpdir
|
18
14
|
app_root = File.expand_path('../../fixtures/user_manager', __FILE__)
|
19
|
-
FileUtils.cp_r(app_root + "/",
|
20
|
-
|
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
|
-
|
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
|
32
|
-
@
|
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
|
-
|
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
|
-
|
61
|
-
|
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
|
-
|
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
|
-
|
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
|
-
|
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
|
-
|
112
|
-
|
86
|
+
describe "User application" do
|
87
|
+
before do
|
113
88
|
login_user(@admin_user)
|
114
89
|
end
|
115
90
|
|
116
|
-
|
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.
|
94
|
+
result.must_equal S::Permissions::User.export(@user)
|
120
95
|
end
|
121
96
|
|
122
|
-
|
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.
|
100
|
+
@editor_user.reload.login.must_equal "robert"
|
126
101
|
end
|
127
102
|
|
128
|
-
|
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.
|
106
|
+
@editor_user.reload.level.must_equal @admin_user.level
|
132
107
|
end
|
133
108
|
|
134
|
-
|
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.
|
113
|
+
@editor_user.reload.level.must_equal level
|
139
114
|
end
|
140
115
|
|
141
|
-
|
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.
|
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].
|
122
|
+
result[:login].wont_be_nil
|
148
123
|
end
|
149
124
|
|
150
|
-
|
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.
|
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].
|
132
|
+
result[:email].wont_be_nil
|
158
133
|
end
|
159
134
|
|
160
|
-
|
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.
|
140
|
+
key.wont_be_nil
|
166
141
|
end
|
167
142
|
|
168
|
-
|
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.
|
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].
|
151
|
+
result[:password].wont_be_nil
|
177
152
|
end
|
178
153
|
|
179
|
-
|
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.
|
157
|
+
@root_user.reload.login.must_equal "root"
|
183
158
|
end
|
184
159
|
|
185
|
-
#
|
186
|
-
|
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.
|
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.
|
168
|
+
@editor_user.reload.access_keys.length.must_equal 0
|
194
169
|
end
|
195
170
|
|
196
|
-
|
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.
|
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.
|
178
|
+
@root_user.reload.access_keys.length.must_equal 3
|
204
179
|
end
|
205
180
|
|
206
|
-
|
207
|
-
@editor_user.disabled
|
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
|
185
|
+
assert @editor_user.reload.disabled?
|
211
186
|
end
|
212
187
|
|
213
|
-
|
214
|
-
@editor_user.disabled
|
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
|
193
|
+
refute @editor_user.reload.disabled?
|
219
194
|
end
|
220
195
|
|
221
|
-
|
222
|
-
@root_user.disabled
|
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
|
200
|
+
refute @root_user.reload.disabled?
|
226
201
|
end
|
227
202
|
|
228
|
-
|
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.
|
234
|
-
user.email.
|
235
|
-
user.level.
|
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.
|
213
|
+
key.user.id.must_equal user.id
|
239
214
|
end
|
240
215
|
|
241
|
-
|
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].
|
220
|
+
result[:id].wont_be_nil
|
246
221
|
user = S::Permissions::User[result[:id]]
|
247
|
-
result.
|
222
|
+
result.must_equal S::Permissions::User.export_user(user)
|
248
223
|
end
|
249
224
|
|
250
|
-
|
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.
|
229
|
+
S::Permissions::User.count.must_equal users
|
255
230
|
end
|
256
231
|
|
257
|
-
|
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.
|
236
|
+
S::Permissions::User.count.must_equal users
|
262
237
|
end
|
263
238
|
|
264
|
-
|
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.
|
243
|
+
user.must_be_nil
|
269
244
|
end
|
270
245
|
|
271
|
-
|
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.
|
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"
|
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
|