typo 3.99.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.DS_Store +0 -0
- data/CHANGELOG +718 -0
- data/MAINTAINERS +30 -0
- data/MIT-LICENSE +21 -0
- data/README +92 -0
- data/Rakefile +10 -0
- data/app/apis/blogger_service.rb +94 -0
- data/app/apis/meta_weblog_service.rb +197 -0
- data/app/apis/movable_type_service.rb +150 -0
- data/app/apis/typo_web_service.rb +26 -0
- data/app/controllers/accounts_controller.rb +52 -0
- data/app/controllers/admin/base_controller.rb +21 -0
- data/app/controllers/admin/blacklist_controller.rb +50 -0
- data/app/controllers/admin/cache_controller.rb +31 -0
- data/app/controllers/admin/categories_controller.rb +64 -0
- data/app/controllers/admin/comments_controller.rb +57 -0
- data/app/controllers/admin/content_controller.rb +147 -0
- data/app/controllers/admin/general_controller.rb +42 -0
- data/app/controllers/admin/pages_controller.rb +50 -0
- data/app/controllers/admin/resources_controller.rb +98 -0
- data/app/controllers/admin/sidebar_controller.rb +74 -0
- data/app/controllers/admin/textfilters_controller.rb +104 -0
- data/app/controllers/admin/themes_controller.rb +20 -0
- data/app/controllers/admin/trackbacks_controller.rb +54 -0
- data/app/controllers/admin/users_controller.rb +41 -0
- data/app/controllers/application.rb +66 -0
- data/app/controllers/articles_controller.rb +218 -0
- data/app/controllers/backend_controller.rb +11 -0
- data/app/controllers/content_controller.rb +98 -0
- data/app/controllers/live_controller.rb +10 -0
- data/app/controllers/redirect_controller.rb +16 -0
- data/app/controllers/sidebar_controller.rb +50 -0
- data/app/controllers/textfilter_controller.rb +22 -0
- data/app/controllers/theme_controller.rb +52 -0
- data/app/controllers/xml_controller.rb +111 -0
- data/app/helpers/accounts_helper.rb +2 -0
- data/app/helpers/admin/base_helper.rb +124 -0
- data/app/helpers/admin/blacklist_helper.rb +2 -0
- data/app/helpers/admin/cache_helper.rb +2 -0
- data/app/helpers/admin/comments_helper.rb +2 -0
- data/app/helpers/admin/content_helper.rb +2 -0
- data/app/helpers/admin/general_helper.rb +2 -0
- data/app/helpers/admin/pages_helper.rb +2 -0
- data/app/helpers/admin/resources_helper.rb +2 -0
- data/app/helpers/admin/sidebar_helper.rb +2 -0
- data/app/helpers/admin/textfilters_helper.rb +2 -0
- data/app/helpers/admin/themes_helper.rb +2 -0
- data/app/helpers/admin/trackbacks_helper.rb +2 -0
- data/app/helpers/admin/users_helper.rb +2 -0
- data/app/helpers/application_helper.rb +92 -0
- data/app/helpers/articles_helper.rb +163 -0
- data/app/helpers/backend_helper.rb +2 -0
- data/app/helpers/content_helper.rb +3 -0
- data/app/helpers/mail_helper.rb +6 -0
- data/app/helpers/redirect_helper.rb +2 -0
- data/app/helpers/sidebar_helper.rb +22 -0
- data/app/helpers/sidebars/plugin_helper.rb +2 -0
- data/app/helpers/text_filter_plugin_helper.rb +2 -0
- data/app/helpers/textfilter_helper.rb +2 -0
- data/app/helpers/theme_helper.rb +23 -0
- data/app/helpers/xml_helper.rb +21 -0
- data/app/models/aggregations/audioscrobbler.rb +54 -0
- data/app/models/aggregations/backpack.rb +57 -0
- data/app/models/aggregations/delicious.rb +57 -0
- data/app/models/aggregations/flickr.rb +89 -0
- data/app/models/aggregations/fortythree.rb +62 -0
- data/app/models/aggregations/magnolia.rb +81 -0
- data/app/models/aggregations/tada.rb +75 -0
- data/app/models/aggregations/technorati.rb +51 -0
- data/app/models/aggregations/upcoming.rb +74 -0
- data/app/models/article.rb +211 -0
- data/app/models/blacklist_pattern.rb +22 -0
- data/app/models/blog.rb +162 -0
- data/app/models/blog_sweeper.rb +23 -0
- data/app/models/category.rb +62 -0
- data/app/models/comment.rb +76 -0
- data/app/models/config_manager.rb +80 -0
- data/app/models/content.rb +222 -0
- data/app/models/content_observer.rb +5 -0
- data/app/models/content_state/base.rb +51 -0
- data/app/models/content_state/draft.rb +40 -0
- data/app/models/content_state/factory.rb +16 -0
- data/app/models/content_state/just_published.rb +47 -0
- data/app/models/content_state/new.rb +45 -0
- data/app/models/content_state/publication_pending.rb +43 -0
- data/app/models/content_state/published.rb +35 -0
- data/app/models/email_notifier.rb +9 -0
- data/app/models/notification_mailer.rb +34 -0
- data/app/models/page.rb +20 -0
- data/app/models/page_cache.rb +29 -0
- data/app/models/ping.rb +129 -0
- data/app/models/redirect.rb +3 -0
- data/app/models/resource.rb +76 -0
- data/app/models/sidebar.rb +32 -0
- data/app/models/simple_cache.rb +37 -0
- data/app/models/tag.rb +63 -0
- data/app/models/text_filter.rb +111 -0
- data/app/models/theme.rb +44 -0
- data/app/models/trackback.rb +51 -0
- data/app/models/trigger.rb +31 -0
- data/app/models/user.rb +113 -0
- data/app/models/web_notifier.rb +7 -0
- data/app/views/accounts/login.rhtml +24 -0
- data/app/views/accounts/logout.rhtml +12 -0
- data/app/views/accounts/signup.rhtml +26 -0
- data/app/views/accounts/welcome.rhtml +13 -0
- data/app/views/admin/base/_recent_comments.rhtml +10 -0
- data/app/views/admin/base/_recent_trackbacks.rhtml +10 -0
- data/app/views/admin/blacklist/_blacklist_patterns.rhtml +16 -0
- data/app/views/admin/blacklist/_form.rhtml +15 -0
- data/app/views/admin/blacklist/_quick_post.rhtml +16 -0
- data/app/views/admin/blacklist/destroy.rhtml +10 -0
- data/app/views/admin/blacklist/edit.rhtml +14 -0
- data/app/views/admin/blacklist/list.rhtml +13 -0
- data/app/views/admin/cache/list.rhtml +8 -0
- data/app/views/admin/categories/_categories.rhtml +14 -0
- data/app/views/admin/categories/_form.rhtml +7 -0
- data/app/views/admin/categories/_quick_post.rhtml +11 -0
- data/app/views/admin/categories/destroy.rhtml +10 -0
- data/app/views/admin/categories/edit.rhtml +13 -0
- data/app/views/admin/categories/list.rhtml +15 -0
- data/app/views/admin/categories/reorder.rhtml +9 -0
- data/app/views/admin/categories/show.rhtml +18 -0
- data/app/views/admin/comments/_form.rhtml +19 -0
- data/app/views/admin/comments/comments.rhtml +4 -0
- data/app/views/admin/comments/destroy.rhtml +11 -0
- data/app/views/admin/comments/edit.rhtml +18 -0
- data/app/views/admin/comments/list.rhtml +31 -0
- data/app/views/admin/comments/new.rhtml +15 -0
- data/app/views/admin/comments/show.rhtml +10 -0
- data/app/views/admin/content/_articles.rhtml +20 -0
- data/app/views/admin/content/_attachment.rhtml +17 -0
- data/app/views/admin/content/_form.rhtml +51 -0
- data/app/views/admin/content/_pages.rhtml +3 -0
- data/app/views/admin/content/_quick_post.rhtml +20 -0
- data/app/views/admin/content/_show_categories.rhtml +9 -0
- data/app/views/admin/content/_show_resources.rhtml +9 -0
- data/app/views/admin/content/destroy.rhtml +11 -0
- data/app/views/admin/content/edit.rhtml +28 -0
- data/app/views/admin/content/list.rhtml +20 -0
- data/app/views/admin/content/new.rhtml +27 -0
- data/app/views/admin/content/preview.rhtml +3 -0
- data/app/views/admin/content/show.rhtml +25 -0
- data/app/views/admin/general/index.rhtml +216 -0
- data/app/views/admin/general/update_database.rhtml +44 -0
- data/app/views/admin/pages/_form.rhtml +19 -0
- data/app/views/admin/pages/_pages.rhtml +18 -0
- data/app/views/admin/pages/_quick_post.rhtml +21 -0
- data/app/views/admin/pages/destroy.rhtml +11 -0
- data/app/views/admin/pages/edit.rhtml +28 -0
- data/app/views/admin/pages/list.rhtml +13 -0
- data/app/views/admin/pages/new.rhtml +24 -0
- data/app/views/admin/pages/preview.rhtml +1 -0
- data/app/views/admin/pages/show.rhtml +14 -0
- data/app/views/admin/resources/_itunes_category_add.rhtml +11 -0
- data/app/views/admin/resources/_itunes_category_edit.rhtml +32 -0
- data/app/views/admin/resources/_metadata_add.rhtml +22 -0
- data/app/views/admin/resources/_metadata_edit.rhtml +22 -0
- data/app/views/admin/resources/_mime_edit.rhtml +8 -0
- data/app/views/admin/resources/_pages.rhtml +3 -0
- data/app/views/admin/resources/_resources.rhtml +40 -0
- data/app/views/admin/resources/destroy.rhtml +11 -0
- data/app/views/admin/resources/list.rhtml +9 -0
- data/app/views/admin/resources/new.rhtml +12 -0
- data/app/views/admin/sidebar/_active.rhtml +14 -0
- data/app/views/admin/sidebar/_actives.rhtml +9 -0
- data/app/views/admin/sidebar/_available.rhtml +5 -0
- data/app/views/admin/sidebar/_availables.rhtml +5 -0
- data/app/views/admin/sidebar/_publish.rhtml +2 -0
- data/app/views/admin/sidebar/_target.rhtml +1 -0
- data/app/views/admin/sidebar/index.rhtml +34 -0
- data/app/views/admin/sidebar/publish.rjs +6 -0
- data/app/views/admin/sidebar/remove.rjs +5 -0
- data/app/views/admin/sidebar/set_active.rjs +10 -0
- data/app/views/admin/textfilters/_form.rhtml +45 -0
- data/app/views/admin/textfilters/_macros.rhtml +16 -0
- data/app/views/admin/textfilters/_textfilters.rhtml +20 -0
- data/app/views/admin/textfilters/destroy.rhtml +10 -0
- data/app/views/admin/textfilters/edit.rhtml +17 -0
- data/app/views/admin/textfilters/list.rhtml +15 -0
- data/app/views/admin/textfilters/macro_help.rhtml +3 -0
- data/app/views/admin/textfilters/new.rhtml +15 -0
- data/app/views/admin/textfilters/preview.rhtml +3 -0
- data/app/views/admin/textfilters/show.rhtml +34 -0
- data/app/views/admin/textfilters/show_help.rhtml +8 -0
- data/app/views/admin/themes/index.rhtml +12 -0
- data/app/views/admin/trackbacks/_form.rhtml +19 -0
- data/app/views/admin/trackbacks/destroy.rhtml +6 -0
- data/app/views/admin/trackbacks/edit.rhtml +14 -0
- data/app/views/admin/trackbacks/list.rhtml +31 -0
- data/app/views/admin/trackbacks/new.rhtml +15 -0
- data/app/views/admin/trackbacks/show.rhtml +14 -0
- data/app/views/admin/users/_form.rhtml +48 -0
- data/app/views/admin/users/_user.rhtml +9 -0
- data/app/views/admin/users/destroy.rhtml +14 -0
- data/app/views/admin/users/edit.rhtml +14 -0
- data/app/views/admin/users/list.rhtml +9 -0
- data/app/views/admin/users/new.rhtml +15 -0
- data/app/views/admin/users/show.rhtml +18 -0
- data/app/views/articles/_article.rhtml +4 -0
- data/app/views/articles/_comment.rhtml +7 -0
- data/app/views/articles/_comment_box.rhtml +43 -0
- data/app/views/articles/_comment_error.rhtml +1 -0
- data/app/views/articles/_trackback.rhtml +7 -0
- data/app/views/articles/archives.rhtml +22 -0
- data/app/views/articles/comment_preview.rhtml +3 -0
- data/app/views/articles/error.rhtml +3 -0
- data/app/views/articles/groupings.rhtml +14 -0
- data/app/views/articles/index.rhtml +11 -0
- data/app/views/articles/read.rhtml +70 -0
- data/app/views/articles/trackback.rxml +5 -0
- data/app/views/articles/view_page.rhtml +3 -0
- data/app/views/layouts/accounts.rhtml +22 -0
- data/app/views/layouts/administration.rhtml +75 -0
- data/app/views/layouts/sidebar.rhtml +40 -0
- data/app/views/live/search.rhtml +10 -0
- data/app/views/notification_mailer/_mail_footer.rhtml +7 -0
- data/app/views/notification_mailer/_mail_header.rhtml +1 -0
- data/app/views/notification_mailer/article.rhtml +6 -0
- data/app/views/notification_mailer/comment.rhtml +11 -0
- data/app/views/notification_mailer/trackback.rhtml +3 -0
- data/app/views/settings/done.rhtml +2 -0
- data/app/views/settings/install.rhtml +12 -0
- data/app/views/shared/_search.rhtml +10 -0
- data/app/views/sidebar/_row.rhtml +1 -0
- data/app/views/sidebar/_sidebar.rhtml +5 -0
- data/app/views/sidebar/display_plugins.rhtml +5 -0
- data/app/views/sidebar/show.rhtml +1 -0
- data/app/views/theme/static_view_test.rhtml +1 -0
- data/app/views/xml/_atom10_item_article.rxml +39 -0
- data/app/views/xml/_atom10_item_comment.rxml +13 -0
- data/app/views/xml/_atom10_item_trackback.rxml +16 -0
- data/app/views/xml/_itunes_item_resource.rxml +30 -0
- data/app/views/xml/_rss20_item_article.rxml +35 -0
- data/app/views/xml/_rss20_item_comment.rxml +7 -0
- data/app/views/xml/_rss20_item_trackback.rxml +7 -0
- data/app/views/xml/atom10_feed.rxml +18 -0
- data/app/views/xml/itunes_feed.rxml +29 -0
- data/app/views/xml/rsd.rxml +19 -0
- data/app/views/xml/rss20_feed.rxml +18 -0
- data/bin/typo +12 -0
- data/cache/META/DATA/ACTION_PARAM/localhost.3000/articles/index/.cache +540 -0
- data/cache/META/DATA/ACTION_PARAM/localhost.3000/articles/permalink/day=09&month=09&title=i-need-a-new-keyboard-and-mouse&year=2005.cache +414 -0
- data/cache/META/META/ACTION_PARAM/localhost.3000/articles/index/.cache +3 -0
- data/cache/META/META/ACTION_PARAM/localhost.3000/articles/permalink/day=09&month=09&title=i-need-a-new-keyboard-and-mouse&year=2005.cache +3 -0
- data/components/plugins/sidebars/aimpresence/content.rhtml +4 -0
- data/components/plugins/sidebars/aimpresence_controller.rb +10 -0
- data/components/plugins/sidebars/amazon/content.rhtml +4 -0
- data/components/plugins/sidebars/amazon_controller.rb +17 -0
- data/components/plugins/sidebars/archives/content.rhtml +11 -0
- data/components/plugins/sidebars/archives_controller.rb +24 -0
- data/components/plugins/sidebars/audioscrobbler/content.rhtml +10 -0
- data/components/plugins/sidebars/audioscrobbler_controller.rb +10 -0
- data/components/plugins/sidebars/backpack/content.rhtml +12 -0
- data/components/plugins/sidebars/backpack_controller.rb +17 -0
- data/components/plugins/sidebars/category/content.rhtml +10 -0
- data/components/plugins/sidebars/category_controller.rb +13 -0
- data/components/plugins/sidebars/delicious/content.rhtml +20 -0
- data/components/plugins/sidebars/delicious_controller.rb +29 -0
- data/components/plugins/sidebars/flickr/content.rhtml +15 -0
- data/components/plugins/sidebars/flickr_controller.rb +16 -0
- data/components/plugins/sidebars/fortythree/content.rhtml +8 -0
- data/components/plugins/sidebars/fortythree_controller.rb +12 -0
- data/components/plugins/sidebars/fortythreeplaces/content.rhtml +8 -0
- data/components/plugins/sidebars/fortythreeplaces_controller.rb +12 -0
- data/components/plugins/sidebars/magnolia/content.rhtml +12 -0
- data/components/plugins/sidebars/magnolia_controller.rb +17 -0
- data/components/plugins/sidebars/recent_comments/content.rhtml +12 -0
- data/components/plugins/sidebars/recent_comments_controller.rb +23 -0
- data/components/plugins/sidebars/static/content.rhtml +2 -0
- data/components/plugins/sidebars/static_controller.rb +23 -0
- data/components/plugins/sidebars/tada/content.rhtml +12 -0
- data/components/plugins/sidebars/tada_controller.rb +12 -0
- data/components/plugins/sidebars/tag/content.rhtml +8 -0
- data/components/plugins/sidebars/tag_controller.rb +18 -0
- data/components/plugins/sidebars/technorati/content.rhtml +8 -0
- data/components/plugins/sidebars/technorati_controller.rb +12 -0
- data/components/plugins/sidebars/upcoming/content.rhtml +8 -0
- data/components/plugins/sidebars/upcoming_controller.rb +11 -0
- data/components/plugins/sidebars/xbox/content.rhtml +2 -0
- data/components/plugins/sidebars/xbox_controller.rb +6 -0
- data/components/plugins/sidebars/xml/content.rhtml +12 -0
- data/components/plugins/sidebars/xml_controller.rb +11 -0
- data/components/plugins/textfilters/amazon_controller.rb +39 -0
- data/components/plugins/textfilters/code_controller.rb +59 -0
- data/components/plugins/textfilters/flickr_controller.rb +75 -0
- data/components/plugins/textfilters/htmlfilter_controller.rb +8 -0
- data/components/plugins/textfilters/lightbox_controller.rb +122 -0
- data/components/plugins/textfilters/macropost_controller.rb +14 -0
- data/components/plugins/textfilters/macropre_controller.rb +14 -0
- data/components/plugins/textfilters/markdown_controller.rb +32 -0
- data/components/plugins/textfilters/none_controller.rb +8 -0
- data/components/plugins/textfilters/smartypants_controller.rb +8 -0
- data/components/plugins/textfilters/sparkline_controller.rb +87 -0
- data/components/plugins/textfilters/textile_controller.rb +8 -0
- data/components/sidebars/README +36 -0
- data/config/boot.rb +44 -0
- data/config/database.yml +17 -0
- data/config/database.yml-pgsql +17 -0
- data/config/database.yml.example +18 -0
- data/config/environment.rb +145 -0
- data/config/environments/development.rb +17 -0
- data/config/environments/production.rb +19 -0
- data/config/environments/test.rb +26 -0
- data/config/iTunes.yml +72 -0
- data/config/lighttpd.conf +46 -0
- data/config/mail.yml +8 -0
- data/config/mail.yml.example +8 -0
- data/config/routes.rb +92 -0
- data/db/DB +0 -0
- data/db/DB.test +0 -0
- data/db/converters/README +14 -0
- data/db/converters/feed.rb +68 -0
- data/db/converters/mt-import.rb +72 -0
- data/db/converters/mt3.rb +172 -0
- data/db/converters/rss.rb +67 -0
- data/db/converters/s9y.rb +182 -0
- data/db/converters/textpattern.rb +137 -0
- data/db/converters/wordpress.rb +187 -0
- data/db/development_structure.sql +691 -0
- data/db/migrate/001_initial_schema.rb +127 -0
- data/db/migrate/002_add_user_email.rb +17 -0
- data/db/migrate/003_add_article_user_id.rb +20 -0
- data/db/migrate/004_add_sidebars.rb +31 -0
- data/db/migrate/005_add_cache_table.rb +20 -0
- data/db/migrate/006_add_pages.rb +17 -0
- data/db/migrate/007_add_permalink.rb +36 -0
- data/db/migrate/008_add_page_title.rb +9 -0
- data/db/migrate/009_add_article_guid.rb +10 -0
- data/db/migrate/010_add_tags.rb +19 -0
- data/db/migrate/011_add_article_id.rb +17 -0
- data/db/migrate/012_enlarge_settings.rb +11 -0
- data/db/migrate/013_add_textfilters.rb +33 -0
- data/db/migrate/014_move_text_filter_to_text_filter_id.rb +43 -0
- data/db/migrate/015_convert_mysql_to_innodb.rb +19 -0
- data/db/migrate/016_fix_is_primary_postgres.rb +19 -0
- data/db/migrate/017_add_comment_user_id.rb +23 -0
- data/db/migrate/018_add_guids.rb +13 -0
- data/db/migrate/019_add_whiteboards_to_content.rb +15 -0
- data/db/migrate/020_superclass_articles.rb +167 -0
- data/db/migrate/021_superclass_comments.rb +94 -0
- data/db/migrate/022_superclass_trackbacks.rb +71 -0
- data/db/migrate/023_superclass_pages.rb +64 -0
- data/db/migrate/024_cleanup_contents.rb +54 -0
- data/db/migrate/025_add_itunes_metadata.rb +29 -0
- data/db/migrate/026_add_redirect_table.rb +13 -0
- data/db/migrate/027_set_comment_published_flag.rb +19 -0
- data/db/migrate/028_rename_redirect_to.rb +12 -0
- data/db/migrate/029_add_user_notification.rb +29 -0
- data/db/migrate/030_index_sessions.rb +9 -0
- data/db/migrate/031_add_notifications_table.rb +14 -0
- data/db/migrate/032_add_jabber_notification.rb +11 -0
- data/db/migrate/033_add_count_caching.rb +34 -0
- data/db/migrate/034_boolify_published.rb +36 -0
- data/db/migrate/035_boolify_content_allow_foo.rb +36 -0
- data/db/migrate/036_add_tag_display_name.rb +53 -0
- data/db/migrate/037_enlarge_ip_field.rb +9 -0
- data/db/migrate/038_add_blog_object.rb +52 -0
- data/db/migrate/039_serialize_blog_attributes.rb +160 -0
- data/db/migrate/040_attach_content_to_blog.rb +28 -0
- data/db/migrate/041_fixup_default_sidebars.rb +18 -0
- data/db/migrate/042_remove_sidebar_staged_config.rb +22 -0
- data/db/migrate/043_create_triggers.rb +14 -0
- data/db/migrate/044_add_published_at_to_content.rb +18 -0
- data/db/migrate/045_fix_contents_published_default.rb +9 -0
- data/db/migrate/046_fixup_forthcoming_publications.rb +40 -0
- data/db/schema.mysql-v3.sql +218 -0
- data/db/schema.mysql.sql +218 -0
- data/db/schema.postgresql.sql +218 -0
- data/db/schema.rb +169 -0
- data/db/schema.sqlite.sql +218 -0
- data/db/schema.sqlserver.sql +232 -0
- data/db/schema_version +1 -0
- data/db/scripts/fix_permalinks.rb +5 -0
- data/db/updates/update.168.to.200.mysql.sql +33 -0
- data/db/updates/update.168.to.200.psql.sql +30 -0
- data/doc/Installer.txt +55 -0
- data/doc/README_FOR_APP +2 -0
- data/installer/rails-installer.rb +488 -0
- data/installer/rails_installer_defaults.yml +4 -0
- data/installer/typo-installer.rb +35 -0
- data/lib/backpack_api.rb +202 -0
- data/lib/bare_migration.rb +142 -0
- data/lib/email_notify.rb +32 -0
- data/lib/format.rb +19 -0
- data/lib/generators/sidebar/sidebar_generator.rb +13 -0
- data/lib/generators/sidebar/templates/components/plugins/sidebars/controller_template.rb +20 -0
- data/lib/generators/sidebar/templates/components/plugins/sidebars/views/content_template.rhtml +4 -0
- data/lib/jabber_notify.rb +32 -0
- data/lib/login_system.rb +85 -0
- data/lib/migrator.rb +28 -0
- data/lib/rails_patch/active_record.rb +36 -0
- data/lib/rails_patch/components.rb +14 -0
- data/lib/sidebars/component_plugin.rb +5 -0
- data/lib/sidebars/plugin.rb +241 -0
- data/lib/spam_protection.rb +126 -0
- data/lib/tasks/release.rake +171 -0
- data/lib/tasks/schemas.rake +6 -0
- data/lib/tasks/sweep_cache.rake +6 -0
- data/lib/text_filter_plugin.rb +97 -0
- data/lib/transforms.rb +26 -0
- data/lib/typo_guid.rb +10 -0
- data/lib/typo_plugins.rb +19 -0
- data/lib/typo_version.rb +1 -0
- data/lib/xmlrpc_fix.rb +13 -0
- data/public/.htaccess +34 -0
- data/public/404.html +8 -0
- data/public/500.html +8 -0
- data/public/dispatch.cgi +10 -0
- data/public/dispatch.fcgi +24 -0
- data/public/dispatch.rb +10 -0
- data/public/favicon.ico +0 -0
- data/public/images/admin/dot-vertical.gif +0 -0
- data/public/images/admin/h-tile.gif +0 -0
- data/public/images/admin/hdr-tile.gif +0 -0
- data/public/images/admin/toggle.gif +0 -0
- data/public/images/bg.jpg +0 -0
- data/public/images/bgcolor.jpg +0 -0
- data/public/images/body_bg.png +0 -0
- data/public/images/branding_bg.png +0 -0
- data/public/images/branding_logo.png +0 -0
- data/public/images/checked.gif +0 -0
- data/public/images/content_bg.png +0 -0
- data/public/images/delete.png +0 -0
- data/public/images/footer.jpg +0 -0
- data/public/images/footer.png +0 -0
- data/public/images/global_bg.png +0 -0
- data/public/images/global_logo.png +0 -0
- data/public/images/go.png +0 -0
- data/public/images/header.jpg +0 -0
- data/public/images/loading.gif +0 -0
- data/public/images/not-checked copy.gif +0 -0
- data/public/images/not-checked.gif +0 -0
- data/public/images/overlay.png +0 -0
- data/public/images/powered.gif +0 -0
- data/public/images/section_bg.png +0 -0
- data/public/images/sections_bg.png +0 -0
- data/public/images/sections_hilite.png +0 -0
- data/public/images/sections_hover.png +0 -0
- data/public/images/spinner-blue.gif +0 -0
- data/public/images/spinner.gif +0 -0
- data/public/images/spot-header.gif +0 -0
- data/public/images/spot-title.gif +0 -0
- data/public/images/x-ed.gif +0 -0
- data/public/javascripts/application.js +2 -0
- data/public/javascripts/controls.js +815 -0
- data/public/javascripts/cookies.js +60 -0
- data/public/javascripts/dragdrop.js +724 -0
- data/public/javascripts/effects.js +953 -0
- data/public/javascripts/lightbox.js +348 -0
- data/public/javascripts/prototype.js +1985 -0
- data/public/javascripts/scriptaculous.js +47 -0
- data/public/javascripts/slider.js +258 -0
- data/public/javascripts/typo.js +85 -0
- data/public/robots.txt +2 -0
- data/public/stylesheets/administration.css +585 -0
- data/public/stylesheets/lightbox.css +22 -0
- data/public/stylesheets/rss.css +54 -0
- data/public/stylesheets/user-styles.css +0 -0
- data/script/about +3 -0
- data/script/benchmarker +19 -0
- data/script/breakpointer +3 -0
- data/script/console +3 -0
- data/script/destroy +3 -0
- data/script/generate +3 -0
- data/script/lighttpd +2 -0
- data/script/logreport +79 -0
- data/script/migrate +31 -0
- data/script/performance/benchmarker +3 -0
- data/script/performance/profiler +3 -0
- data/script/plugin +3 -0
- data/script/process/reaper +3 -0
- data/script/process/spawner +3 -0
- data/script/process/spinner +3 -0
- data/script/profiler +34 -0
- data/script/runner +3 -0
- data/script/server +3 -0
- data/script/spacecheck +40 -0
- data/test/fixtures/articles_categories.yml +31 -0
- data/test/fixtures/articles_tags.yml +19 -0
- data/test/fixtures/blacklist_patterns.yml +10 -0
- data/test/fixtures/blogs.yml +74 -0
- data/test/fixtures/categories.yml +35 -0
- data/test/fixtures/contents.yml +297 -0
- data/test/fixtures/notification_mailer/article +3 -0
- data/test/fixtures/notification_mailer/comment +3 -0
- data/test/fixtures/notification_mailer/trackback +3 -0
- data/test/fixtures/notifications.yml +0 -0
- data/test/fixtures/page_caches.yml +7 -0
- data/test/fixtures/redirects.yml +13 -0
- data/test/fixtures/resources.yml +24 -0
- data/test/fixtures/sidebars.yml +5 -0
- data/test/fixtures/tags.yml +13 -0
- data/test/fixtures/text_filters.yml +42 -0
- data/test/fixtures/triggers.yml +1 -0
- data/test/fixtures/users.yml +56 -0
- data/test/functional/accounts_controller_test.rb +82 -0
- data/test/functional/admin/article_preview_test.rb +67 -0
- data/test/functional/admin/blacklist_controller_test.rb +63 -0
- data/test/functional/admin/categories_controller_test.rb +112 -0
- data/test/functional/admin/comments_controller_test.rb +78 -0
- data/test/functional/admin/content_controller_test.rb +234 -0
- data/test/functional/admin/general_controller_test.rb +26 -0
- data/test/functional/admin/pages_controller_test.rb +103 -0
- data/test/functional/admin/resources_controller_test.rb +49 -0
- data/test/functional/admin/textfilters_controller_test.rb +29 -0
- data/test/functional/admin/themes_controller_test.rb +34 -0
- data/test/functional/admin/trackbacks_controller_test.rb +76 -0
- data/test/functional/admin/users_controller_test.rb +72 -0
- data/test/functional/articles_controller_test.rb +525 -0
- data/test/functional/backend_controller_test.rb +273 -0
- data/test/functional/redirect_controller_test.rb +40 -0
- data/test/functional/textfilter_controller_test.rb +275 -0
- data/test/functional/theme_controller_test.rb +45 -0
- data/test/functional/xml_controller_test.rb +353 -0
- data/test/mocks/test/dns_mock.rb +13 -0
- data/test/mocks/test/flickr_mock.rb +30 -0
- data/test/mocks/test/http_mock.rb +38 -0
- data/test/mocks/test/theme_mock.rb +5 -0
- data/test/mocks/test/xmlrpc_mock.rb +27 -0
- data/test/mocks/themes/123-numbers-in-path/about.markdown +0 -0
- data/test/mocks/themes/CamelCaseDirectory/about.markdown +0 -0
- data/test/mocks/themes/azure/about.markdown +5 -0
- data/test/mocks/themes/azure/layouts/default.rhtml +50 -0
- data/test/mocks/themes/azure/preview.png +0 -0
- data/test/mocks/themes/azure/views/theme/static_view_test.rhtml +1 -0
- data/test/mocks/themes/i-have-special-chars/about.markdown +0 -0
- data/test/test_helper.rb +95 -0
- data/test/unit/article_test.rb +245 -0
- data/test/unit/assumptions_tests.rb +54 -0
- data/test/unit/audioscrobbler_test.rb +132 -0
- data/test/unit/blacklist_pattern_test.rb +14 -0
- data/test/unit/blog_test.rb +83 -0
- data/test/unit/category_test.rb +37 -0
- data/test/unit/comment_test.rb +117 -0
- data/test/unit/configuration_test.rb +21 -0
- data/test/unit/content_state/factory_test.rb +84 -0
- data/test/unit/delicious_test.rb +96 -0
- data/test/unit/flickr_test.rb +134 -0
- data/test/unit/fortythree_test.rb +66 -0
- data/test/unit/magnolia_test.rb +87 -0
- data/test/unit/metafragment_test.rb +63 -0
- data/test/unit/notification_mailer_test.rb +55 -0
- data/test/unit/observer_test.rb +40 -0
- data/test/unit/page_cache_test.rb +34 -0
- data/test/unit/page_test.rb +25 -0
- data/test/unit/ping_test.rb +111 -0
- data/test/unit/redirect_test.rb +19 -0
- data/test/unit/resource_test.rb +71 -0
- data/test/unit/sidebar_test.rb +14 -0
- data/test/unit/tag_test.rb +66 -0
- data/test/unit/text_filter_test.rb +126 -0
- data/test/unit/theme_test.rb +44 -0
- data/test/unit/trackback_test.rb +45 -0
- data/test/unit/trigger_test.rb +40 -0
- data/test/unit/user_test.rb +111 -0
- data/themes/azure/about.markdown +5 -0
- data/themes/azure/images/bg-tile.gif +0 -0
- data/themes/azure/images/bracket.gif +0 -0
- data/themes/azure/images/bullet.gif +0 -0
- data/themes/azure/images/hdr.gif +0 -0
- data/themes/azure/images/q-close.gif +0 -0
- data/themes/azure/images/q-open.gif +0 -0
- data/themes/azure/images/sbar-tile.gif +0 -0
- data/themes/azure/images/spinner.gif +0 -0
- data/themes/azure/images/xlink.gif +0 -0
- data/themes/azure/layouts/default.rhtml +50 -0
- data/themes/azure/preview.png +0 -0
- data/themes/azure/stylesheets/azure.css +436 -0
- data/themes/azure/stylesheets/print.css +30 -0
- data/themes/azure/views/theme/static_view_test.rhtml +1 -0
- data/vendor/akismet/Akismet.rb +140 -0
- data/vendor/bluecloth/CHANGES +366 -0
- data/vendor/bluecloth/LICENSE +340 -0
- data/vendor/bluecloth/README +99 -0
- data/vendor/bluecloth/bin/bluecloth +83 -0
- data/vendor/bluecloth/install.rb +150 -0
- data/vendor/bluecloth/lib/bluecloth.rb +1144 -0
- data/vendor/bluecloth/test.rb +117 -0
- data/vendor/bluecloth/tests/00_Class.tests.rb +71 -0
- data/vendor/bluecloth/tests/05_Markdown.tests.rb +1527 -0
- data/vendor/bluecloth/tests/10_Bug.tests.rb +57 -0
- data/vendor/bluecloth/tests/15_Contrib.tests.rb +132 -0
- data/vendor/bluecloth/tests/bctestcase.rb +274 -0
- data/vendor/bluecloth/tests/data/antsugar.txt +34 -0
- data/vendor/bluecloth/tests/data/ml-announce.txt +17 -0
- data/vendor/bluecloth/tests/data/re-overflow.txt +67 -0
- data/vendor/bluecloth/tests/data/re-overflow2.txt +281 -0
- data/vendor/bluecloth/utils.rb +553 -0
- data/vendor/flickr/Rakefile +36 -0
- data/vendor/flickr/flickr.rb +490 -0
- data/vendor/flickr/index.html +129 -0
- data/vendor/flickr/test_flickr.rb +173 -0
- data/vendor/jabber4r/CHANGES +8 -0
- data/vendor/jabber4r/LICENSE.txt +12 -0
- data/vendor/jabber4r/README +180 -0
- data/vendor/jabber4r/Rakefile.rb +143 -0
- data/vendor/jabber4r/lib/jabber4r/jabber4r.rb +22 -0
- data/vendor/jabber4r/lib/jabber4r/jid.rb +93 -0
- data/vendor/jabber4r/lib/jabber4r/protocol.rb +1384 -0
- data/vendor/jabber4r/lib/jabber4r/rexml_1.8_patch.rb +16 -0
- data/vendor/jabber4r/lib/jabber4r/roster.rb +322 -0
- data/vendor/jabber4r/lib/jabber4r/session.rb +615 -0
- data/vendor/jabber4r/lib/jabber4r/vcard.rb +42 -0
- data/vendor/plugins/expiring_action_cache/init.rb +2 -0
- data/vendor/plugins/expiring_action_cache/lib/actionparamcache.rb +113 -0
- data/vendor/plugins/expiring_action_cache/lib/metafragment.rb +46 -0
- data/vendor/plugins/upload_progress/CHANGELOG +3 -0
- data/vendor/plugins/upload_progress/MIT-LICENSE +20 -0
- data/vendor/plugins/upload_progress/README +45 -0
- data/vendor/plugins/upload_progress/Rakefile +23 -0
- data/vendor/plugins/upload_progress/init.rb +7 -0
- data/vendor/plugins/upload_progress/lib/multipart_progress.rb +169 -0
- data/vendor/plugins/upload_progress/lib/progress.rb +145 -0
- data/vendor/plugins/upload_progress/lib/upload_progress.rb +303 -0
- data/vendor/plugins/upload_progress/lib/upload_progress_helper.rb +424 -0
- data/vendor/plugins/upload_progress/public/stylesheets/upload_progress.css +21 -0
- data/vendor/plugins/upload_progress/test/multipart_progress_testx.rb +364 -0
- data/vendor/plugins/upload_progress/test/upload_progress_helper_testx.rb +134 -0
- data/vendor/plugins/upload_progress/test/upload_progress_testx.rb +88 -0
- data/vendor/redcloth/RedCloth.gemspec +52 -0
- data/vendor/redcloth/bin/redcloth +3 -0
- data/vendor/redcloth/doc/CHANGELOG +160 -0
- data/vendor/redcloth/doc/COPYING +25 -0
- data/vendor/redcloth/doc/README +106 -0
- data/vendor/redcloth/doc/REFERENCE +216 -0
- data/vendor/redcloth/doc/make.rb +359 -0
- data/vendor/redcloth/install.rb +1032 -0
- data/vendor/redcloth/lib/redcloth.rb +1130 -0
- data/vendor/redcloth/run-tests.rb +28 -0
- data/vendor/redcloth/setup.rb +1376 -0
- data/vendor/redcloth/tests/code.yml +105 -0
- data/vendor/redcloth/tests/hard_breaks.yml +26 -0
- data/vendor/redcloth/tests/images.yml +171 -0
- data/vendor/redcloth/tests/instiki.yml +39 -0
- data/vendor/redcloth/tests/links.yml +155 -0
- data/vendor/redcloth/tests/lists.yml +77 -0
- data/vendor/redcloth/tests/markdown.yml +218 -0
- data/vendor/redcloth/tests/poignant.yml +64 -0
- data/vendor/redcloth/tests/table.yml +198 -0
- data/vendor/redcloth/tests/textism.yml +406 -0
- data/vendor/ruby-mp3info/lib/mp3info.rb +720 -0
- data/vendor/rubypants/README +114 -0
- data/vendor/rubypants/Rakefile +55 -0
- data/vendor/rubypants/html/classes/RubyPants.html +924 -0
- data/vendor/rubypants/html/created.rid +1 -0
- data/vendor/rubypants/html/files/README.html +248 -0
- data/vendor/rubypants/html/files/rubypants_rb.html +125 -0
- data/vendor/rubypants/html/fr_class_index.html +27 -0
- data/vendor/rubypants/html/fr_file_index.html +28 -0
- data/vendor/rubypants/html/fr_method_index.html +38 -0
- data/vendor/rubypants/html/index.html +24 -0
- data/vendor/rubypants/html/rdoc-style.css +172 -0
- data/vendor/rubypants/install.rb +9 -0
- data/vendor/rubypants/rubypants.rb +490 -0
- data/vendor/rubypants/test_rubypants.rb +162 -0
- data/vendor/sparklines/README.txt +47 -0
- data/vendor/sparklines/USAGE +14 -0
- data/vendor/sparklines/lib/sparklines.rb +435 -0
- data/vendor/sparklines/samples/sparklinestest.rb +26 -0
- data/vendor/sparklines/sparklines_generator.rb +9 -0
- data/vendor/sparklines/templates/sparklines_controller.rb +30 -0
- data/vendor/sparklines/templates/sparklines_helper.rb +30 -0
- data/vendor/syntax/LICENSE +27 -0
- data/vendor/syntax/NEWS +16 -0
- data/vendor/syntax/README +38 -0
- data/vendor/syntax/Rakefile +194 -0
- data/vendor/syntax/api/classes/Syntax.html +173 -0
- data/vendor/syntax/api/classes/Syntax/Convertors.html +91 -0
- data/vendor/syntax/api/classes/Syntax/Convertors/Abstract.html +159 -0
- data/vendor/syntax/api/classes/Syntax/Convertors/HTML.html +149 -0
- data/vendor/syntax/api/classes/Syntax/Default.html +123 -0
- data/vendor/syntax/api/classes/Syntax/Ruby.html +319 -0
- data/vendor/syntax/api/classes/Syntax/Token.html +151 -0
- data/vendor/syntax/api/classes/Syntax/Tokenizer.html +324 -0
- data/vendor/syntax/api/classes/Syntax/Version.html +109 -0
- data/vendor/syntax/api/classes/Syntax/XML.html +205 -0
- data/vendor/syntax/api/classes/Syntax/YAML.html +189 -0
- data/vendor/syntax/api/created.rid +1 -0
- data/vendor/syntax/api/files/README.html +155 -0
- data/vendor/syntax/api/files/lib/syntax/common_rb.html +96 -0
- data/vendor/syntax/api/files/lib/syntax/convertors/abstract_rb.html +96 -0
- data/vendor/syntax/api/files/lib/syntax/convertors/html_rb.html +96 -0
- data/vendor/syntax/api/files/lib/syntax/lang/ruby_rb.html +96 -0
- data/vendor/syntax/api/files/lib/syntax/lang/xml_rb.html +96 -0
- data/vendor/syntax/api/files/lib/syntax/lang/yaml_rb.html +96 -0
- data/vendor/syntax/api/files/lib/syntax/version_rb.html +92 -0
- data/vendor/syntax/api/files/lib/syntax_rb.html +96 -0
- data/vendor/syntax/api/fr_class_index.html +56 -0
- data/vendor/syntax/api/fr_file_index.html +54 -0
- data/vendor/syntax/api/fr_method_index.html +65 -0
- data/vendor/syntax/api/index.html +26 -0
- data/vendor/syntax/api/rdoc-style.css +175 -0
- data/vendor/syntax/doc/manual-html/chapter-1.html +198 -0
- data/vendor/syntax/doc/manual-html/chapter-2.html +262 -0
- data/vendor/syntax/doc/manual-html/chapter-3.html +266 -0
- data/vendor/syntax/doc/manual-html/chapter-4.html +267 -0
- data/vendor/syntax/doc/manual-html/index.html +152 -0
- data/vendor/syntax/doc/manual-html/stylesheets/manual.css +270 -0
- data/vendor/syntax/doc/manual-html/stylesheets/ruby.css +17 -0
- data/vendor/syntax/doc/manual/chapter.erb +38 -0
- data/vendor/syntax/doc/manual/example.erb +18 -0
- data/vendor/syntax/doc/manual/index.erb +29 -0
- data/vendor/syntax/doc/manual/manual.rb +311 -0
- data/vendor/syntax/doc/manual/manual.yml +43 -0
- data/vendor/syntax/doc/manual/page.erb +87 -0
- data/vendor/syntax/doc/manual/parts/0000.txt +5 -0
- data/vendor/syntax/doc/manual/parts/0001.txt +16 -0
- data/vendor/syntax/doc/manual/parts/0002.txt +24 -0
- data/vendor/syntax/doc/manual/parts/0003.txt +6 -0
- data/vendor/syntax/doc/manual/parts/0004.txt +32 -0
- data/vendor/syntax/doc/manual/parts/0005.txt +18 -0
- data/vendor/syntax/doc/manual/parts/0006.txt +62 -0
- data/vendor/syntax/doc/manual/parts/0007.txt +3 -0
- data/vendor/syntax/doc/manual/parts/0008.txt +5 -0
- data/vendor/syntax/doc/manual/parts/0009.txt +29 -0
- data/vendor/syntax/doc/manual/parts/0010.txt +21 -0
- data/vendor/syntax/doc/manual/stylesheets/manual.css +270 -0
- data/vendor/syntax/doc/manual/stylesheets/ruby.css +17 -0
- data/vendor/syntax/doc/manual/tutorial.erb +30 -0
- data/vendor/syntax/lib/syntax.rb +38 -0
- data/vendor/syntax/lib/syntax/common.rb +163 -0
- data/vendor/syntax/lib/syntax/convertors/abstract.rb +27 -0
- data/vendor/syntax/lib/syntax/convertors/html.rb +51 -0
- data/vendor/syntax/lib/syntax/lang/ruby.rb +317 -0
- data/vendor/syntax/lib/syntax/lang/xml.rb +108 -0
- data/vendor/syntax/lib/syntax/lang/yaml.rb +105 -0
- data/vendor/syntax/lib/syntax/version.rb +9 -0
- data/vendor/syntax/setup.rb +1331 -0
- data/vendor/syntax/syntax.gemspec +24 -0
- data/vendor/syntax/test/ALL-TESTS.rb +5 -0
- data/vendor/syntax/test/syntax/tc_ruby.rb +871 -0
- data/vendor/syntax/test/syntax/tc_xml.rb +202 -0
- data/vendor/syntax/test/syntax/tc_yaml.rb +228 -0
- data/vendor/syntax/test/syntax/tokenizer_testcase.rb +40 -0
- data/vendor/syntax/test/tc_syntax.rb +22 -0
- data/vendor/uuidtools/CHANGELOG +4 -0
- data/vendor/uuidtools/README +13 -0
- data/vendor/uuidtools/install.rb +30 -0
- data/vendor/uuidtools/lib/uuidtools.rb +555 -0
- data/vendor/uuidtools/rakefile +112 -0
- metadata +1022 -0
@@ -0,0 +1,76 @@
|
|
1
|
+
require File.dirname(__FILE__) + '/../../test_helper'
|
2
|
+
require 'admin/trackbacks_controller'
|
3
|
+
|
4
|
+
# Re-raise errors caught by the controller.
|
5
|
+
class Admin::TrackbacksController; def rescue_action(e) raise e end; end
|
6
|
+
|
7
|
+
class Admin::TrackbacksControllerTest < Test::Unit::TestCase
|
8
|
+
fixtures :contents, :users
|
9
|
+
|
10
|
+
def setup
|
11
|
+
@controller = Admin::TrackbacksController.new
|
12
|
+
@request = ActionController::TestRequest.new
|
13
|
+
@response = ActionController::TestResponse.new
|
14
|
+
|
15
|
+
@request.session = { :user => users(:tobi) }
|
16
|
+
end
|
17
|
+
|
18
|
+
def test_index
|
19
|
+
get :index, :article_id => 2
|
20
|
+
assert_rendered_file 'list'
|
21
|
+
end
|
22
|
+
|
23
|
+
def test_list
|
24
|
+
get :list, :article_id => 2
|
25
|
+
assert_rendered_file 'list'
|
26
|
+
assert_template_has 'trackbacks'
|
27
|
+
end
|
28
|
+
|
29
|
+
def test_show
|
30
|
+
get :show, :id => 7, :article_id => 2
|
31
|
+
assert_rendered_file 'show'
|
32
|
+
assert_template_has 'trackback'
|
33
|
+
assert_valid_record 'trackback'
|
34
|
+
end
|
35
|
+
|
36
|
+
def test_new
|
37
|
+
get :new, :article_id => 2
|
38
|
+
assert_rendered_file 'new'
|
39
|
+
assert_template_has 'trackback'
|
40
|
+
end
|
41
|
+
|
42
|
+
def test_create
|
43
|
+
num_trackbacks = Trackback.find_all.size
|
44
|
+
|
45
|
+
post :new, :trackback => { 'title' => 'title', 'excerpt' => 'excerpt', 'blog_name' => 'blog_name', 'url' => 'url' }, :article_id => 2
|
46
|
+
assert_redirected_to :action => 'show'
|
47
|
+
|
48
|
+
assert_equal num_trackbacks + 1, Trackback.find_all.size
|
49
|
+
end
|
50
|
+
|
51
|
+
def test_edit
|
52
|
+
get :edit, :id => 7, :article_id => 2
|
53
|
+
assert_rendered_file 'edit'
|
54
|
+
assert_template_has 'trackback'
|
55
|
+
assert_valid_record 'trackback'
|
56
|
+
end
|
57
|
+
|
58
|
+
def test_update
|
59
|
+
post :edit, :id => 7, :article_id => 2
|
60
|
+
assert_redirected_to :action => 'show', :id => 7
|
61
|
+
end
|
62
|
+
|
63
|
+
def test_destroy
|
64
|
+
assert_not_nil Trackback.find(7)
|
65
|
+
|
66
|
+
get :destroy, :id => 7, :article_id => 2
|
67
|
+
assert_success
|
68
|
+
|
69
|
+
post :destroy, :id => 7, :article_id => 2
|
70
|
+
assert_redirected_to :action => 'list'
|
71
|
+
|
72
|
+
assert_raise(ActiveRecord::RecordNotFound) {
|
73
|
+
trackback = Trackback.find(7)
|
74
|
+
}
|
75
|
+
end
|
76
|
+
end
|
@@ -0,0 +1,72 @@
|
|
1
|
+
require File.dirname(__FILE__) + '/../../test_helper'
|
2
|
+
require 'admin/users_controller'
|
3
|
+
|
4
|
+
# Re-raise errors caught by the controller.
|
5
|
+
class Admin::UsersController; def rescue_action(e) raise e end; end
|
6
|
+
|
7
|
+
class Admin::UsersControllerTest < Test::Unit::TestCase
|
8
|
+
fixtures :users, :blogs
|
9
|
+
|
10
|
+
def setup
|
11
|
+
@controller = Admin::UsersController.new
|
12
|
+
@request = ActionController::TestRequest.new
|
13
|
+
@response = ActionController::TestResponse.new
|
14
|
+
|
15
|
+
@request.session = { :user => users(:tobi) }
|
16
|
+
end
|
17
|
+
|
18
|
+
def test_index
|
19
|
+
get :index
|
20
|
+
assert_rendered_file 'list'
|
21
|
+
assert_template_has 'users'
|
22
|
+
end
|
23
|
+
|
24
|
+
def test_list
|
25
|
+
get :list
|
26
|
+
assert_rendered_file 'list'
|
27
|
+
assert_template_has 'users'
|
28
|
+
end
|
29
|
+
|
30
|
+
def test_new
|
31
|
+
get :new
|
32
|
+
assert_rendered_file 'new'
|
33
|
+
|
34
|
+
post :new, :user => { :login => 'errand', :email => 'corey@test.com',
|
35
|
+
:password => 'testpass', :password_confirmation => 'testpass' }
|
36
|
+
assert_redirected_to :action => 'list'
|
37
|
+
follow_redirect
|
38
|
+
assert_rendered_file 'list'
|
39
|
+
end
|
40
|
+
|
41
|
+
def test_show
|
42
|
+
get :show, :id => 1
|
43
|
+
assert_rendered_file 'show'
|
44
|
+
assert_valid_record 'user'
|
45
|
+
end
|
46
|
+
|
47
|
+
def test_edit
|
48
|
+
get :edit, :id => 1
|
49
|
+
assert_rendered_file 'edit'
|
50
|
+
assert_valid_record 'user'
|
51
|
+
|
52
|
+
post :edit, :id => 1, :user => { :login => 'errand',
|
53
|
+
:email => 'corey@test.com', :password => 'testpass',
|
54
|
+
:password_confirmation => 'testpass' }
|
55
|
+
assert_redirected_to :action => 'show'
|
56
|
+
follow_redirect
|
57
|
+
assert_rendered_file 'show'
|
58
|
+
assert_valid_record 'user'
|
59
|
+
end
|
60
|
+
|
61
|
+
def test_destroy
|
62
|
+
get :destroy, :id => 1
|
63
|
+
assert_rendered_file 'destroy'
|
64
|
+
assert_valid_record 'user'
|
65
|
+
|
66
|
+
post :destroy, :id => 1
|
67
|
+
assert_redirected_to :action => 'list'
|
68
|
+
follow_redirect
|
69
|
+
assert_rendered_file 'list'
|
70
|
+
end
|
71
|
+
|
72
|
+
end
|
@@ -0,0 +1,525 @@
|
|
1
|
+
require File.dirname(__FILE__) + '/../test_helper'
|
2
|
+
require 'articles_controller'
|
3
|
+
require 'dns_mock'
|
4
|
+
require 'http_mock'
|
5
|
+
|
6
|
+
require 'content'
|
7
|
+
|
8
|
+
#
|
9
|
+
# Re-raise errors caught by the controller.
|
10
|
+
class ArticlesController; def rescue_action(e) raise e end; end
|
11
|
+
|
12
|
+
class Content
|
13
|
+
def self.find_last_posted
|
14
|
+
self.find(:first, :conditions => ['created_at < ?', Time.now],
|
15
|
+
:order => 'created_at desc')
|
16
|
+
end
|
17
|
+
end
|
18
|
+
|
19
|
+
class ArticlesControllerTest < Test::Unit::TestCase
|
20
|
+
fixtures :contents, :categories, :blogs, :users, :articles_categories, :text_filters, :articles_tags, :tags
|
21
|
+
include ArticlesHelper
|
22
|
+
|
23
|
+
def setup
|
24
|
+
@controller = ArticlesController.new
|
25
|
+
@request, @response = ActionController::TestRequest.new, ActionController::TestResponse.new
|
26
|
+
|
27
|
+
Article.create!(:title => "News from the future!",
|
28
|
+
:body => "The future is cool!",
|
29
|
+
:keywords => "future",
|
30
|
+
:created_at => Time.now + 12.minutes)
|
31
|
+
|
32
|
+
end
|
33
|
+
|
34
|
+
# Category subpages
|
35
|
+
def test_category
|
36
|
+
get :category, :id => "software"
|
37
|
+
|
38
|
+
assert_response :success
|
39
|
+
assert_rendered_file "index"
|
40
|
+
|
41
|
+
# Check it works when permalink != name. Ticket #736
|
42
|
+
get :category, :id => "weird-permalink"
|
43
|
+
|
44
|
+
assert_response :success
|
45
|
+
assert_rendered_file "index"
|
46
|
+
end
|
47
|
+
|
48
|
+
def test_empty_category
|
49
|
+
get :category, :id => "life-on-mars"
|
50
|
+
assert_response :success
|
51
|
+
assert_rendered_file "error"
|
52
|
+
end
|
53
|
+
|
54
|
+
def test_nonexistent_category
|
55
|
+
get :category, :id => 'nonexistent-category'
|
56
|
+
assert_response :success
|
57
|
+
assert_rendered_file "error"
|
58
|
+
end
|
59
|
+
|
60
|
+
def test_tag
|
61
|
+
get :tag, :id => "foo"
|
62
|
+
|
63
|
+
assert_response :success
|
64
|
+
assert_rendered_file "index"
|
65
|
+
|
66
|
+
assert_tag :tag => 'h2', :content => 'Article 2!'
|
67
|
+
assert_tag :tag => 'h2', :content => 'Article 1!'
|
68
|
+
end
|
69
|
+
|
70
|
+
def test_nonexistent_tag
|
71
|
+
get :tag, :id => "nonexistent"
|
72
|
+
assert_response :success
|
73
|
+
assert_rendered_file "error"
|
74
|
+
end
|
75
|
+
|
76
|
+
def test_tag_routes
|
77
|
+
opts = {:controller => "articles", :action => "tag", :id => "foo", :page => "2"}
|
78
|
+
assert_routing("articles/tag/foo/page/2", opts)
|
79
|
+
end
|
80
|
+
|
81
|
+
def test_simple_tag_pagination
|
82
|
+
this_blog.limit_article_display = 1
|
83
|
+
get :tag, :id => "foo"
|
84
|
+
assert_equal 1, assigns(:articles).size
|
85
|
+
assert_tag(:tag => 'p',
|
86
|
+
:attributes =>{
|
87
|
+
:id => 'pagination'},
|
88
|
+
:content => 'Older posts: 1',
|
89
|
+
:descendant => {:tag => 'a',
|
90
|
+
:attributes =>{
|
91
|
+
:href => "/articles/tag/foo/page/2"},
|
92
|
+
:content => "2"})
|
93
|
+
end
|
94
|
+
|
95
|
+
# Main index
|
96
|
+
def test_index
|
97
|
+
get :index
|
98
|
+
assert_response :success
|
99
|
+
assert_rendered_file "index"
|
100
|
+
end
|
101
|
+
|
102
|
+
# Archives page
|
103
|
+
def test_archives
|
104
|
+
get :archives
|
105
|
+
assert_response :success
|
106
|
+
assert_rendered_file "archives"
|
107
|
+
end
|
108
|
+
|
109
|
+
# Permalinks
|
110
|
+
def test_permalink
|
111
|
+
get :permalink, :year => 2004, :month => 06, :day => 01, :title => "article-3"
|
112
|
+
assert_response :success
|
113
|
+
assert_template "read"
|
114
|
+
assert_not_nil assigns(:article)
|
115
|
+
assert_equal contents(:article3), assigns(:article)
|
116
|
+
end
|
117
|
+
|
118
|
+
# Posts for given day
|
119
|
+
def test_find_by_date
|
120
|
+
get :find_by_date, :year => 2004, :month => 06, :day => 01
|
121
|
+
assert_response :success
|
122
|
+
assert_rendered_file "index"
|
123
|
+
end
|
124
|
+
|
125
|
+
def test_comment_posting
|
126
|
+
emails = ActionMailer::Base.deliveries
|
127
|
+
emails.clear
|
128
|
+
|
129
|
+
assert_equal 0, emails.size
|
130
|
+
|
131
|
+
Article.find(1).notify_users << users(:tobi)
|
132
|
+
|
133
|
+
post :comment, { :id => 1, :comment => {'body' => 'This is *textile*', 'author' => 'bob' }}
|
134
|
+
|
135
|
+
assert_response :success
|
136
|
+
assert_tag :tag => 'strong', :content => 'textile'
|
137
|
+
|
138
|
+
comment = Article.find(1).comments.last
|
139
|
+
assert comment
|
140
|
+
|
141
|
+
assert_not_nil cookies["author"]
|
142
|
+
|
143
|
+
assert_equal "<p>This is <strong>textile</strong></p>", comment.html(@controller).to_s
|
144
|
+
|
145
|
+
assert_equal User.find(:all,
|
146
|
+
:conditions => ['(notify_via_email = ?) and (notify_on_comments = ?)', true, true],
|
147
|
+
:order => 'email').collect { |each| each.email },
|
148
|
+
emails.collect { |each| each.to[0] }.sort
|
149
|
+
end
|
150
|
+
|
151
|
+
def test_comment_spam_markdown_smarty
|
152
|
+
this_blog.comment_text_filter = "markdown smartypants"
|
153
|
+
test_comment_spam1
|
154
|
+
end
|
155
|
+
|
156
|
+
def comment_template_test(expected_html, source_text,
|
157
|
+
art_id=1, author='bob', email='foo', args={})
|
158
|
+
post :comment, {
|
159
|
+
:id => art_id,
|
160
|
+
:comment => {
|
161
|
+
'body' => source_text,
|
162
|
+
'author' => author,
|
163
|
+
'email' => email }.merge(args) }
|
164
|
+
|
165
|
+
assert_response :success
|
166
|
+
comment = Article.find(art_id).comments.last
|
167
|
+
assert comment
|
168
|
+
|
169
|
+
assert_match expected_html, comment.html(@controller).to_s
|
170
|
+
$do_breakpoints
|
171
|
+
end
|
172
|
+
|
173
|
+
def test_comment_spam1
|
174
|
+
comment_template_test "<p>Link to <a href='http://spammer.example.com' rel=\"nofollow\">spammy goodness</a></p>", 'Link to <a href="http://spammer.example.com">spammy goodness</a>'
|
175
|
+
end
|
176
|
+
|
177
|
+
def test_comment_spam2
|
178
|
+
comment_template_test %r{<p>Link to <a href=["']http://spammer.example.com['"] rel=["']nofollow['"]>spammy goodness</a></p>}, 'Link to "spammy goodness":http://spammer.example.com'
|
179
|
+
end
|
180
|
+
|
181
|
+
def test_comment_xss1
|
182
|
+
this_blog.comment_text_filter = "none"
|
183
|
+
comment_template_test %{Have you ever <script lang='javascript'>alert("foo");</script> been hacked?},
|
184
|
+
%{Have you ever <script lang="javascript">alert("foo");</script> been hacked?}
|
185
|
+
end
|
186
|
+
|
187
|
+
def test_comment_xss2
|
188
|
+
this_blog.comment_text_filter = "none"
|
189
|
+
comment_template_test "Have you ever <a href='#' rel=\"nofollow\">been hacked?</a>", 'Have you ever <a href="#" onclick="javascript">been hacked?</a>'
|
190
|
+
end
|
191
|
+
|
192
|
+
def test_comment_autolink
|
193
|
+
comment_template_test "<p>What’s up with <a href='http://slashdot.org' rel=\"nofollow\">http://slashdot.org</a> these days?</p>", "What's up with http://slashdot.org these days?"
|
194
|
+
end #"
|
195
|
+
|
196
|
+
### TODO -- there's a bug in Rails with auto_links
|
197
|
+
# def test_comment_autolink2
|
198
|
+
# comment_template_test "<p>My web page is <a href='http://somewhere.com/~me/index.html' rel=\"nofollow\">http://somewhere.com/~me/index.html</a></p>", "My web page is http://somewhere.com/~me/index.html"
|
199
|
+
# end
|
200
|
+
|
201
|
+
def test_comment_nuking
|
202
|
+
num_comments = Comment.count
|
203
|
+
post :nuke_comment, { :id => 5 }, {}
|
204
|
+
assert_response 403
|
205
|
+
|
206
|
+
get :nuke_comment, { :id => 5 }, { :user => users(:bob)}
|
207
|
+
assert_response 403
|
208
|
+
|
209
|
+
post :nuke_comment, { :id => 5 }, { :user => users(:bob)}
|
210
|
+
assert_response :success
|
211
|
+
assert_equal num_comments -1, Comment.count
|
212
|
+
end
|
213
|
+
|
214
|
+
def test_comment_user_blank
|
215
|
+
post :comment, { :id => 2, :comment => {'body' => 'foo', 'author' => 'bob' }}
|
216
|
+
assert_response :success
|
217
|
+
|
218
|
+
comment = Article.find(2).comments.last
|
219
|
+
assert comment
|
220
|
+
assert comment.published?
|
221
|
+
assert_nil comment.user_id
|
222
|
+
|
223
|
+
get :read, {:id => 2}
|
224
|
+
assert_response :success
|
225
|
+
assert_no_tag :tag => "li",
|
226
|
+
:attributes => { :class => "author_comment"}
|
227
|
+
|
228
|
+
end
|
229
|
+
|
230
|
+
def test_comment_user_set
|
231
|
+
@request.session = { :user => users(:tobi) }
|
232
|
+
post :comment, { :id => 2, :comment => {'body' => 'foo', 'author' => 'bob' }}
|
233
|
+
assert_response :success
|
234
|
+
|
235
|
+
comment = Article.find(2).comments.last
|
236
|
+
assert comment
|
237
|
+
assert_equal users(:tobi), comment.user
|
238
|
+
|
239
|
+
get :read, {:id => 2}
|
240
|
+
assert_response :success
|
241
|
+
assert_tag :tag => "li",
|
242
|
+
:attributes => { :class => "author_comment"}
|
243
|
+
end
|
244
|
+
|
245
|
+
def test_trackback
|
246
|
+
num_trackbacks = Article.find(2).trackbacks.count
|
247
|
+
post :trackback, { :id => 2, :url => "http://www.google.com", :title => "My Trackback", :excerpt => "This is a test" }
|
248
|
+
assert_response :success
|
249
|
+
assert_not_xpath(%{/response/error[text()="1"]}, "Error: " + get_xpath("/response/message/text()").first.to_s)
|
250
|
+
|
251
|
+
assert_equal num_trackbacks+1, Article.find(2).trackbacks.count
|
252
|
+
end
|
253
|
+
|
254
|
+
def test_trackback_nuking
|
255
|
+
num_comments = Trackback.count
|
256
|
+
|
257
|
+
post :nuke_trackback, { :id => 7 }, {}
|
258
|
+
assert_response 403
|
259
|
+
|
260
|
+
get :nuke_trackback, { :id => 7 }, { :user => users(:bob)}
|
261
|
+
assert_response 403
|
262
|
+
|
263
|
+
post :nuke_trackback, { :id => 7 }, { :user => users(:bob)}
|
264
|
+
assert_response :success
|
265
|
+
assert_equal num_comments -1, Trackback.count
|
266
|
+
end
|
267
|
+
|
268
|
+
def test_no_settings
|
269
|
+
this_blog.update_attribute(:settings, { })
|
270
|
+
|
271
|
+
get :index
|
272
|
+
|
273
|
+
assert_redirect
|
274
|
+
assert_redirected_to :controller => "admin/general", :action => "redirect"
|
275
|
+
|
276
|
+
end
|
277
|
+
|
278
|
+
def test_no_users_exist
|
279
|
+
this_blog.update_attribute(:settings, { })
|
280
|
+
|
281
|
+
User.destroy_all
|
282
|
+
assert User.count.zero?
|
283
|
+
|
284
|
+
get :index
|
285
|
+
assert_redirect
|
286
|
+
assert_redirected_to :controller => "accounts", :action => "signup"
|
287
|
+
|
288
|
+
end
|
289
|
+
|
290
|
+
def test_pages_static
|
291
|
+
get :view_page, :name => 'page_one'
|
292
|
+
assert_response :success
|
293
|
+
assert_rendered_file "view_page"
|
294
|
+
|
295
|
+
get :view_page, :name => 'page one'
|
296
|
+
assert_response 404
|
297
|
+
end
|
298
|
+
|
299
|
+
def test_read_non_published
|
300
|
+
get :read, :id => 4
|
301
|
+
assert_response :success
|
302
|
+
assert_template "error"
|
303
|
+
end
|
304
|
+
|
305
|
+
def test_tags_non_published
|
306
|
+
get :tag, :id => 'bar'
|
307
|
+
assert_response :success
|
308
|
+
assert_equal 1, assigns(:articles).size
|
309
|
+
assert ! assigns(:articles).include?(@article4), "Unpublished article displayed"
|
310
|
+
end
|
311
|
+
|
312
|
+
def test_gravatar
|
313
|
+
assert ! this_blog.use_gravatar
|
314
|
+
get :read, :id => 1
|
315
|
+
assert_response :success
|
316
|
+
assert_template "read"
|
317
|
+
assert_no_tag :tag => "img",
|
318
|
+
:attributes => { :class => "gravatar" }
|
319
|
+
|
320
|
+
# Switch gravatar integration to on
|
321
|
+
this_blog.use_gravatar = true
|
322
|
+
assert this_blog.use_gravatar
|
323
|
+
get :read, :id => 1
|
324
|
+
assert_response :success
|
325
|
+
assert_template "read"
|
326
|
+
assert_tag :tag => "img",
|
327
|
+
:attributes => {
|
328
|
+
:class => "gravatar",
|
329
|
+
:src => "http://www.gravatar.com/avatar.php?gravatar_id=740618d2fe0450ec244d8b86ac1fe3f8&size=60"
|
330
|
+
}
|
331
|
+
end
|
332
|
+
|
333
|
+
def test_comment_preview
|
334
|
+
get :comment_preview
|
335
|
+
assert_response :success
|
336
|
+
assert_template nil
|
337
|
+
|
338
|
+
get :comment_preview, :comment => { :author => "bob", :body => "comment preview" }
|
339
|
+
assert_response :success
|
340
|
+
assert_template "comment_preview"
|
341
|
+
|
342
|
+
assert_tag :tag => "cite",
|
343
|
+
:children => { :count => 1,
|
344
|
+
:only => { :tag => "strong",
|
345
|
+
:content => "bob" } }
|
346
|
+
|
347
|
+
assert_tag :tag => "p",
|
348
|
+
:content => "comment preview"
|
349
|
+
end
|
350
|
+
|
351
|
+
def test_read_article_with_comments_and_trackbacks
|
352
|
+
get :read, :id => contents(:article1).id
|
353
|
+
assert_response :success
|
354
|
+
assert_template "read"
|
355
|
+
|
356
|
+
assert_tag :tag => "ol",
|
357
|
+
:attributes => { :id => "commentList"},
|
358
|
+
:children => { :count => contents(:article1).comments.to_a.select{|c| c.published?}.size,
|
359
|
+
:only => { :tag => "li" } }
|
360
|
+
|
361
|
+
assert_tag :tag => "li",
|
362
|
+
:attributes => { :class => "author_comment"}
|
363
|
+
|
364
|
+
assert_tag :tag => "ol",
|
365
|
+
:attributes => { :id => "trackbackList" },
|
366
|
+
:children => { :count => contents(:article1).trackbacks.size,
|
367
|
+
:only => { :tag => "li" } }
|
368
|
+
end
|
369
|
+
|
370
|
+
def test_read_article_no_comments_no_trackbacks
|
371
|
+
get :read, :id => contents(:article3).id
|
372
|
+
assert_response :success
|
373
|
+
assert_template "read"
|
374
|
+
|
375
|
+
assert_tag :tag => "ol",
|
376
|
+
:attributes => { :id => "commentList"},
|
377
|
+
:children => { :count => 1,
|
378
|
+
:only => { :tag => "li",
|
379
|
+
:attributes => { :id => "dummy_comment", :style => "display: none" } } }
|
380
|
+
|
381
|
+
assert_no_tag :tag => "ol",
|
382
|
+
:attributes => { :id => "trackbackList" }
|
383
|
+
end
|
384
|
+
|
385
|
+
def test_autodiscovery_default
|
386
|
+
|
387
|
+
get :index
|
388
|
+
assert_response :success
|
389
|
+
assert_tag :tag => 'link', :attributes =>
|
390
|
+
{ :rel => 'alternate', :type => 'application/rss+xml', :title => 'RSS',
|
391
|
+
:href => 'http://test.host/xml/rss20/feed.xml'}
|
392
|
+
assert_tag :tag => 'link', :attributes =>
|
393
|
+
{ :rel => 'alternate', :type => 'application/atom+xml', :title => 'Atom',
|
394
|
+
:href => 'http://test.host/xml/atom/feed.xml'}
|
395
|
+
end
|
396
|
+
|
397
|
+
|
398
|
+
def test_autodiscovery_article
|
399
|
+
get :read, :id => 1
|
400
|
+
assert_response :success
|
401
|
+
assert_tag :tag => 'link', :attributes =>
|
402
|
+
{ :rel => 'alternate', :type => 'application/rss+xml', :title => 'RSS',
|
403
|
+
:href => 'http://test.host/xml/rss20/article/1/feed.xml'}
|
404
|
+
assert_tag :tag => 'link', :attributes =>
|
405
|
+
{ :rel => 'alternate', :type => 'application/atom+xml', :title => 'Atom',
|
406
|
+
:href => 'http://test.host/xml/atom/article/1/feed.xml'}
|
407
|
+
end
|
408
|
+
|
409
|
+
def test_autodiscovery_category
|
410
|
+
get :category, :id => 'hardware'
|
411
|
+
assert_response :success
|
412
|
+
assert_tag :tag => 'link', :attributes =>
|
413
|
+
{ :rel => 'alternate', :type => 'application/rss+xml', :title => 'RSS',
|
414
|
+
:href => 'http://test.host/xml/rss20/category/hardware/feed.xml'}
|
415
|
+
assert_tag :tag => 'link', :attributes =>
|
416
|
+
{ :rel => 'alternate', :type => 'application/atom+xml', :title => 'Atom',
|
417
|
+
:href => 'http://test.host/xml/atom/category/hardware/feed.xml'}
|
418
|
+
end
|
419
|
+
|
420
|
+
def test_autodiscovery_tag
|
421
|
+
get :tag, :id => 'hardware'
|
422
|
+
assert_response :success
|
423
|
+
assert_tag :tag => 'link', :attributes =>
|
424
|
+
{ :rel => 'alternate', :type => 'application/rss+xml', :title => 'RSS',
|
425
|
+
:href => 'http://test.host/xml/rss20/tag/hardware/feed.xml'}
|
426
|
+
assert_tag :tag => 'link', :attributes =>
|
427
|
+
{ :rel => 'alternate', :type => 'application/atom+xml', :title => 'Atom',
|
428
|
+
:href => 'http://test.host/xml/atom/tag/hardware/feed.xml'}
|
429
|
+
end
|
430
|
+
|
431
|
+
def test_disabled_ajax_comments
|
432
|
+
this_blog.sp_allow_non_ajax_comments = false
|
433
|
+
assert_equal false, this_blog.sp_allow_non_ajax_comments
|
434
|
+
|
435
|
+
post :comment, :id => 1, :comment => {'body' => 'This is posted without ajax', 'author' => 'bob' }
|
436
|
+
assert_response 500
|
437
|
+
assert_equal "non-ajax commenting is disabled", @response.body
|
438
|
+
|
439
|
+
@request.env['HTTP_X_REQUESTED_WITH'] = "XMLHttpRequest"
|
440
|
+
post :comment, :id => 1, :comment => {'body' => 'This is posted *with* ajax', 'author' => 'bob' }
|
441
|
+
assert_response :success
|
442
|
+
ajax_comment = Article.find(1).comments.last
|
443
|
+
assert_equal "This is posted *with* ajax", ajax_comment.body
|
444
|
+
end
|
445
|
+
|
446
|
+
def test_tag_max_article_count_is_first
|
447
|
+
tags = Tag.find_all_with_article_counters
|
448
|
+
assert tags.size > 1
|
449
|
+
max = tags[0].article_counter
|
450
|
+
tags.each do |tag|
|
451
|
+
assert tag.article_counter <= max
|
452
|
+
end
|
453
|
+
end
|
454
|
+
|
455
|
+
def test_calc_distributed_class_basic
|
456
|
+
assert_equal "prefix5", calc_distributed_class(0, 0, "prefix", 5, 15)
|
457
|
+
(0..10).each do |article|
|
458
|
+
assert_equal "prefix#{article}", calc_distributed_class(article, 10, "prefix", 0, 10)
|
459
|
+
end
|
460
|
+
(0..20).each do |article|
|
461
|
+
assert_equal "prefix#{(article/2).to_i}", calc_distributed_class(article, 20, "prefix", 0, 10)
|
462
|
+
end
|
463
|
+
(0..5).each do |article|
|
464
|
+
assert_equal "prefix#{(article*2).to_i}", calc_distributed_class(article, 5, "prefix", 0, 10)
|
465
|
+
end
|
466
|
+
end
|
467
|
+
|
468
|
+
def test_calc_distributed_class_offset
|
469
|
+
(0..10).each do |article|
|
470
|
+
assert_equal "prefix#{article+6}", calc_distributed_class(article, 10, "prefix", 6, 16)
|
471
|
+
end
|
472
|
+
end
|
473
|
+
|
474
|
+
def test_hide_future_article
|
475
|
+
@article = Article.find_last_posted
|
476
|
+
|
477
|
+
Article.create!(:title => "News from the future!",
|
478
|
+
:body => "The future is cool!",
|
479
|
+
:keywords => "future",
|
480
|
+
:published => true,
|
481
|
+
:created_at => Time.now + 12.minutes)
|
482
|
+
get :index
|
483
|
+
assert_equal @article, assigns(:articles).first
|
484
|
+
assert @response.lifetime <= 12.minutes
|
485
|
+
end
|
486
|
+
|
487
|
+
def test_search
|
488
|
+
get :search, :q => "search target"
|
489
|
+
assert_equal 1, assigns(:articles).size
|
490
|
+
end
|
491
|
+
|
492
|
+
def test_author
|
493
|
+
get :author, :id => 'tobi'
|
494
|
+
|
495
|
+
assert_success
|
496
|
+
assert_rendered_file 'index'
|
497
|
+
assert assigns(:articles)
|
498
|
+
assert_equal users(:tobi).articles.published, assigns(:articles)
|
499
|
+
# This is until we write a proper author feed
|
500
|
+
assert_equal('http://test.host/xml/rss20/feed.xml',
|
501
|
+
assigns(:auto_discovery_url_rss))
|
502
|
+
end
|
503
|
+
|
504
|
+
def test_nonexistent_author
|
505
|
+
get :author, :id => 'nonexistent-chap'
|
506
|
+
|
507
|
+
assert_success
|
508
|
+
assert_rendered_file 'error'
|
509
|
+
assert assigns(:message)
|
510
|
+
assert_equal "Can't find posts with author 'nonexistent-chap'", assigns(:message)
|
511
|
+
end
|
512
|
+
|
513
|
+
def test_author_list
|
514
|
+
get :author
|
515
|
+
|
516
|
+
assert_success
|
517
|
+
assert_rendered_file 'groupings'
|
518
|
+
|
519
|
+
assert_tag(:tag => 'ul',
|
520
|
+
:descendant => {\
|
521
|
+
:tag => 'a',
|
522
|
+
:attributes => { :href => '/articles/author/tobi' },
|
523
|
+
})
|
524
|
+
end
|
525
|
+
end
|