tdiary 3.2.2.20130507
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.coveralls.yml +1 -0
- data/.gitignore +16 -0
- data/.travis.yml +29 -0
- data/Capfile +2 -0
- data/ChangeLog +3173 -0
- data/Gemfile +58 -0
- data/Gemfile.lock +201 -0
- data/LICENSE +340 -0
- data/Procfile +1 -0
- data/README.md +33 -0
- data/Rakefile +26 -0
- data/bin/tdiary +7 -0
- data/config.ru +61 -0
- data/data/.htaccess +2 -0
- data/doc/HOWTO-authenticate-in-rack.md +89 -0
- data/doc/HOWTO-make-io.md +305 -0
- data/doc/HOWTO-make-plugin.md +279 -0
- data/doc/HOWTO-make-theme.md +67 -0
- data/doc/HOWTO-testing-tDiary.md +44 -0
- data/doc/HOWTO-use-plugin.md +148 -0
- data/doc/HOWTO-write-tDiary.en.md +131 -0
- data/doc/HOWTO-write-tDiary.md +136 -0
- data/doc/INSTALL-paas.md +202 -0
- data/doc/INSTALL.md +160 -0
- data/doc/README.en.md +174 -0
- data/doc/README.md +56 -0
- data/doc/UPGRADE.md +164 -0
- data/doc/doc.css +115 -0
- data/dot.htaccess +27 -0
- data/index.fcgi +45 -0
- data/index.rb +57 -0
- data/js/00default.js +60 -0
- data/js/01conf.js +62 -0
- data/js/02edit.coffee +5 -0
- data/js/02edit.js +15 -0
- data/js/amazon.js +43 -0
- data/js/calendar3.js +130 -0
- data/js/caretposition.js +170 -0
- data/js/category.js +29 -0
- data/js/category_autocomplete.js +96 -0
- data/js/comment_ajax.js +27 -0
- data/js/draft.js +149 -0
- data/js/highlight.js +36 -0
- data/js/image.js +181 -0
- data/misc/convert2.rb +123 -0
- data/misc/filter/antispamservice.rb +101 -0
- data/misc/filter/limitdays.rb +40 -0
- data/misc/filter/linkcheck.rb +81 -0
- data/misc/filter/plugin/antispamservice.rb +82 -0
- data/misc/filter/plugin/en/antispamservice.rb +21 -0
- data/misc/filter/plugin/ja/antispamservice.rb +20 -0
- data/misc/lib/README +4 -0
- data/misc/lib/compatible.rb +1 -0
- data/misc/lib/fcgi_patch.rb +90 -0
- data/misc/migrate.rb +157 -0
- data/misc/paas/cloudfoundry/Gemfile +26 -0
- data/misc/paas/cloudfoundry/Gemfile.lock +85 -0
- data/misc/paas/heroku/Gemfile +22 -0
- data/misc/paas/heroku/Gemfile.lock +85 -0
- data/misc/paas/sqale/Gemfile +19 -0
- data/misc/paas/sqale/Gemfile.lock +85 -0
- data/misc/paas/sqale/Procfile +1 -0
- data/misc/paas/sqale/dot.env +1 -0
- data/misc/plugin/ChangeLog.DO_NOT_UPDATE +2333 -0
- data/misc/plugin/a.rb +211 -0
- data/misc/plugin/amazon.rb +403 -0
- data/misc/plugin/amazon/README.en +17 -0
- data/misc/plugin/amazon/README.ja +29 -0
- data/misc/plugin/amazon/amazonimg.rb +113 -0
- data/misc/plugin/amazon/large.png +0 -0
- data/misc/plugin/amazon/medium.png +0 -0
- data/misc/plugin/amazon/small.png +0 -0
- data/misc/plugin/append-css.rb +51 -0
- data/misc/plugin/bq.rb +48 -0
- data/misc/plugin/calendar2.rb +184 -0
- data/misc/plugin/calendar3.rb +256 -0
- data/misc/plugin/category.rb +779 -0
- data/misc/plugin/category_autocomplete.rb +33 -0
- data/misc/plugin/comment_ajax.rb +11 -0
- data/misc/plugin/comment_mail-qmail.rb +57 -0
- data/misc/plugin/comment_mail-sendmail.rb +56 -0
- data/misc/plugin/comment_mail-smtp.rb +59 -0
- data/misc/plugin/comment_rank.rb +36 -0
- data/misc/plugin/counter.rb +631 -0
- data/misc/plugin/daily_theme.rb +55 -0
- data/misc/plugin/disp_referrer.rb +1486 -0
- data/misc/plugin/doctype-html401tr.rb +16 -0
- data/misc/plugin/draft.rb +20 -0
- data/misc/plugin/dropdown_calendar.rb +32 -0
- data/misc/plugin/edit_today.rb +50 -0
- data/misc/plugin/en/a.rb +10 -0
- data/misc/plugin/en/amazon.rb +71 -0
- data/misc/plugin/en/append-css.rb +17 -0
- data/misc/plugin/en/bq.rb +12 -0
- data/misc/plugin/en/calendar2.rb +12 -0
- data/misc/plugin/en/category.rb +204 -0
- data/misc/plugin/en/counter.rb +48 -0
- data/misc/plugin/en/daily_theme.rb +14 -0
- data/misc/plugin/en/disp_referrer.rb +387 -0
- data/misc/plugin/en/dropdown_calendar.rb +14 -0
- data/misc/plugin/en/edit_today.rb +22 -0
- data/misc/plugin/en/hide-mail-field.rb +19 -0
- data/misc/plugin/en/highlight.rb +29 -0
- data/misc/plugin/en/image.rb +54 -0
- data/misc/plugin/en/kw.rb +22 -0
- data/misc/plugin/en/makerss.rb +47 -0
- data/misc/plugin/en/pb-show.rb +21 -0
- data/misc/plugin/en/ping.rb +16 -0
- data/misc/plugin/en/recent_comment.rb +44 -0
- data/misc/plugin/en/recent_comment3.rb +56 -0
- data/misc/plugin/en/recent_rss.rb +33 -0
- data/misc/plugin/en/referer_scheme.rb +48 -0
- data/misc/plugin/en/search_control.rb +74 -0
- data/misc/plugin/en/search_form.rb +22 -0
- data/misc/plugin/en/speed_comment.rb +19 -0
- data/misc/plugin/en/tb-show.rb +37 -0
- data/misc/plugin/en/todo.rb +43 -0
- data/misc/plugin/en/weather.rb +185 -0
- data/misc/plugin/en/xmlrpc.rb +14 -0
- data/misc/plugin/footnote.rb +92 -0
- data/misc/plugin/gradation.rb +39 -0
- data/misc/plugin/gradient.rb +36 -0
- data/misc/plugin/hide-mail-field.rb +50 -0
- data/misc/plugin/highlight.rb +22 -0
- data/misc/plugin/html_anchor.rb +34 -0
- data/misc/plugin/image.rb +290 -0
- data/misc/plugin/ja/amazon.rb +89 -0
- data/misc/plugin/ja/bq.rb +13 -0
- data/misc/plugin/ja/calendar2.rb +12 -0
- data/misc/plugin/ja/category.rb +212 -0
- data/misc/plugin/ja/daily_theme.rb +15 -0
- data/misc/plugin/ja/disp_referrer.rb +644 -0
- data/misc/plugin/ja/edit_today.rb +23 -0
- data/misc/plugin/ja/hide-mail-field.rb +20 -0
- data/misc/plugin/ja/highlight.rb +30 -0
- data/misc/plugin/ja/makerss.rb +44 -0
- data/misc/plugin/ja/my-sequel.rb +52 -0
- data/misc/plugin/ja/pb-show.rb +23 -0
- data/misc/plugin/ja/ping.rb +17 -0
- data/misc/plugin/ja/recent_comment.rb +45 -0
- data/misc/plugin/ja/recent_comment3.rb +57 -0
- data/misc/plugin/ja/recent_rss.rb +34 -0
- data/misc/plugin/ja/referer_scheme.rb +86 -0
- data/misc/plugin/ja/search_control.rb +75 -0
- data/misc/plugin/ja/search_form.rb +32 -0
- data/misc/plugin/ja/tb-show.rb +38 -0
- data/misc/plugin/ja/todo.rb +46 -0
- data/misc/plugin/ja/weather.rb +402 -0
- data/misc/plugin/ja/xmlrpc.rb +15 -0
- data/misc/plugin/kw.rb +150 -0
- data/misc/plugin/list.rb +40 -0
- data/misc/plugin/makelirs.rb +89 -0
- data/misc/plugin/makerss.rb +744 -0
- data/misc/plugin/my-ex.rb +68 -0
- data/misc/plugin/my-sequel.rb +539 -0
- data/misc/plugin/navi_user.rb +19 -0
- data/misc/plugin/number_anchor.rb +47 -0
- data/misc/plugin/pb-show.rb +165 -0
- data/misc/plugin/ping.rb +99 -0
- data/misc/plugin/pre_wrap.rb +19 -0
- data/misc/plugin/random_google.rb +165 -0
- data/misc/plugin/recent_comment.rb +82 -0
- data/misc/plugin/recent_comment3.rb +192 -0
- data/misc/plugin/recent_list.rb +91 -0
- data/misc/plugin/recent_namazu.rb +50 -0
- data/misc/plugin/recent_rss.rb +305 -0
- data/misc/plugin/referer-antibot.rb +53 -0
- data/misc/plugin/referer-utf8.rb +12 -0
- data/misc/plugin/referer_scheme.rb +87 -0
- data/misc/plugin/search_control.rb +227 -0
- data/misc/plugin/search_form.rb +53 -0
- data/misc/plugin/sn.rb +107 -0
- data/misc/plugin/speed_comment.rb +68 -0
- data/misc/plugin/squeeze.rb +272 -0
- data/misc/plugin/src.rb +30 -0
- data/misc/plugin/tb-show.rb +212 -0
- data/misc/plugin/title_list.rb +41 -0
- data/misc/plugin/title_tag.rb +80 -0
- data/misc/plugin/tlink.rb +163 -0
- data/misc/plugin/todo.rb +182 -0
- data/misc/plugin/weather.rb +505 -0
- data/misc/plugin/whatsnew.rb +100 -0
- data/misc/plugin/xmlrpc.rb +80 -0
- data/misc/plugin/xmlrpc/README +20 -0
- data/misc/plugin/xmlrpc/xmlrpc.rb +575 -0
- data/misc/style/emptdiary/README.rd +83 -0
- data/misc/style/emptdiary/README.rd.en +78 -0
- data/misc/style/emptdiary/emptdiary_style.rb +199 -0
- data/misc/style/etdiary/README.rd +83 -0
- data/misc/style/etdiary/etdiary_style.rb +446 -0
- data/misc/style/gfm/gfm_style.rb +194 -0
- data/misc/style/rd/README.rd +71 -0
- data/misc/style/rd/rd_style.rb +366 -0
- data/misc/style/wiki/README +116 -0
- data/misc/style/wiki/README.en +101 -0
- data/misc/style/wiki/wiki_parser.rb +273 -0
- data/misc/style/wiki/wiki_style.rb +478 -0
- data/misc/theme_convert/Readme.rd +21 -0
- data/misc/theme_convert/append.rcss +150 -0
- data/misc/theme_convert/theme_convert.rb +453 -0
- data/plugin/00default.rb +1015 -0
- data/plugin/05referer.rb +298 -0
- data/plugin/10spamfilter.rb +183 -0
- data/plugin/50sp.rb +146 -0
- data/plugin/60sf.rb +152 -0
- data/plugin/90migrate.rb +109 -0
- data/plugin/en/00default.rb +390 -0
- data/plugin/en/05referer.rb +49 -0
- data/plugin/en/10spamfilter.rb +81 -0
- data/plugin/en/50sp.rb +56 -0
- data/plugin/en/60sf.rb +60 -0
- data/plugin/ja/00default.rb +401 -0
- data/plugin/ja/05referer.rb +47 -0
- data/plugin/ja/10spamfilter.rb +79 -0
- data/plugin/ja/50sp.rb +66 -0
- data/plugin/ja/60sf.rb +73 -0
- data/public/.gitkeep +0 -0
- data/public/images/.gitkeep +0 -0
- data/public/javascripts/.gitkeep +0 -0
- data/public/stylesheets/.gitkeep +0 -0
- data/skel/category.rhtml +9 -0
- data/skel/conf.rhtml +23 -0
- data/skel/day.rhtml +33 -0
- data/skel/diary.rhtml +83 -0
- data/skel/footer.rhtml +8 -0
- data/skel/header.rhtml +10 -0
- data/skel/i.category.rhtml +6 -0
- data/skel/i.conf.rhtml +14 -0
- data/skel/i.day.rhtml +28 -0
- data/skel/i.diary.rhtml +17 -0
- data/skel/i.footer.rhtml +2 -0
- data/skel/i.header.rhtml +3 -0
- data/skel/i.latest.rhtml +24 -0
- data/skel/i.month.rhtml +39 -0
- data/skel/i.search.rhtml +5 -0
- data/skel/i.update.rhtml +40 -0
- data/skel/i.update.rhtml.en +40 -0
- data/skel/latest.rhtml +27 -0
- data/skel/mail.rtxt +18 -0
- data/skel/mail.rtxt.en +18 -0
- data/skel/month.rhtml +27 -0
- data/skel/plugin_error.rhtml +27 -0
- data/skel/preview.rhtml +85 -0
- data/skel/preview.rhtml.en +72 -0
- data/skel/referer.rhtml +24 -0
- data/skel/search.rhtml +14 -0
- data/skel/tdiary.rconf +76 -0
- data/skel/update.rhtml +103 -0
- data/skel/update.rhtml.en +83 -0
- data/spec/acceptance/append_comment_spec.rb +94 -0
- data/spec/acceptance/append_diary_spec.rb +98 -0
- data/spec/acceptance/bugfix/encoding_error_spec.rb +27 -0
- data/spec/acceptance/save_conf_comment_spec.rb +87 -0
- data/spec/acceptance/save_conf_default_spec.rb +169 -0
- data/spec/acceptance/save_conf_dnsbl_spec.rb +152 -0
- data/spec/acceptance/save_conf_filter_spec.rb +50 -0
- data/spec/acceptance/save_conf_plugin_spec.rb +69 -0
- data/spec/acceptance/save_conf_referer_spec.rb +60 -0
- data/spec/acceptance/save_conf_security_spec.rb +280 -0
- data/spec/acceptance/support/helpers.rb +49 -0
- data/spec/acceptance/support/paths.rb +7 -0
- data/spec/acceptance/update_diary_spec.rb +113 -0
- data/spec/acceptance/view_category_spec.rb +38 -0
- data/spec/acceptance/view_comment_spec.rb +67 -0
- data/spec/acceptance/view_diary_spec.rb +126 -0
- data/spec/acceptance/view_referer_spec.rb +31 -0
- data/spec/acceptance_helper.rb +101 -0
- data/spec/core/compatible_spec.rb +54 -0
- data/spec/core/core_ext_spec.rb +59 -0
- data/spec/core/plugin_spec.rb +389 -0
- data/spec/core/rack/assets/precompile_spec.rb +76 -0
- data/spec/core/rack/html_anchor_spec.rb +57 -0
- data/spec/core/rack/valid_request_path_spec.rb +67 -0
- data/spec/core/style/emptdiary_style_spec.rb +165 -0
- data/spec/core/style/etdiary_style_spec.rb +512 -0
- data/spec/core/style/gfm_style_spec.rb +334 -0
- data/spec/core/style/rd_style_spec.rb +202 -0
- data/spec/core/style/tdiary_style_spec.rb +240 -0
- data/spec/core/style/wiki_style_spec.rb +441 -0
- data/spec/fixtures/ascii8bit-pstore.db +0 -0
- data/spec/fixtures/invalid-sequence-volatile.tdr +9 -0
- data/spec/fixtures/just_installed.conf +1 -0
- data/spec/fixtures/plugin/ja/sample.rb +4 -0
- data/spec/fixtures/plugin/sample.rb +6 -0
- data/spec/fixtures/sample.rb +12 -0
- data/spec/fixtures/tdiary.conf.gem +212 -0
- data/spec/fixtures/tdiary.conf.rack +212 -0
- data/spec/fixtures/tdiary.conf.rdb +227 -0
- data/spec/fixtures/tdiary.conf.secure +204 -0
- data/spec/fixtures/tdiary.conf.webrick +212 -0
- data/spec/javascripts/00default_spec.js +35 -0
- data/spec/javascripts/fixtures/00default.html +1 -0
- data/spec/javascripts/support/jasmine.yml +76 -0
- data/spec/plugin/bq_spec.rb +24 -0
- data/spec/plugin/plugin_helper.rb +203 -0
- data/spec/spec_helper.rb +32 -0
- data/tdiary.conf.beginner +244 -0
- data/tdiary.conf.sample +345 -0
- data/tdiary.conf.sample-en +333 -0
- data/tdiary.gemspec +26 -0
- data/tdiary.rb +151 -0
- data/tdiary/admin.rb +236 -0
- data/tdiary/application.rb +57 -0
- data/tdiary/author_only_base.rb +171 -0
- data/tdiary/base.rb +220 -0
- data/tdiary/cli.rb +116 -0
- data/tdiary/comment.rb +40 -0
- data/tdiary/comment_manager.rb +94 -0
- data/tdiary/compatible.rb +72 -0
- data/tdiary/config.rb +270 -0
- data/tdiary/core_ext.rb +122 -0
- data/tdiary/deploy.rb +50 -0
- data/tdiary/dispatcher.rb +77 -0
- data/tdiary/dispatcher/index_main.rb +122 -0
- data/tdiary/dispatcher/update_main.rb +101 -0
- data/tdiary/environment.rb +15 -0
- data/tdiary/filter.rb +48 -0
- data/tdiary/filter/default.rb +54 -0
- data/tdiary/filter/spam.rb +304 -0
- data/tdiary/io/base.rb +70 -0
- data/tdiary/io/cache/file.rb +123 -0
- data/tdiary/io/cache/memcached.rb +88 -0
- data/tdiary/io/cache/redis.rb +100 -0
- data/tdiary/io/default.rb +297 -0
- data/tdiary/io/pstore.rb +252 -0
- data/tdiary/io/rdb.rb +213 -0
- data/tdiary/lang/en.rb +79 -0
- data/tdiary/lang/ja.rb +72 -0
- data/tdiary/plugin.rb +375 -0
- data/tdiary/rack/assets/precompile.rb +37 -0
- data/tdiary/rack/auth/basic.rb +38 -0
- data/tdiary/rack/auth/omniauth.rb +51 -0
- data/tdiary/rack/html_anchor.rb +31 -0
- data/tdiary/rack/valid_request_path.rb +36 -0
- data/tdiary/referer_manager.rb +80 -0
- data/tdiary/request.rb +217 -0
- data/tdiary/response.rb +29 -0
- data/tdiary/server.rb +85 -0
- data/tdiary/style.rb +194 -0
- data/tdiary/style/tdiary_style.rb +198 -0
- data/tdiary/style/wiki_style.rb +213 -0
- data/tdiary/tasks.rb +1 -0
- data/tdiary/tasks/assets.rake +31 -0
- data/tdiary/tasks/auth.rake +28 -0
- data/tdiary/tasks/db.rake +110 -0
- data/tdiary/tasks/doc.rake +31 -0
- data/tdiary/tasks/heroku.rake +37 -0
- data/tdiary/tasks/jasmine.rake +16 -0
- data/tdiary/tasks/rdoc.rake +24 -0
- data/tdiary/tasks/release.rake +122 -0
- data/tdiary/tasks/rspec.rake +51 -0
- data/tdiary/tasks/server.rake +33 -0
- data/tdiary/tasks/test.rake +17 -0
- data/tdiary/version.rb +3 -0
- data/tdiary/view.rb +468 -0
- data/tdiary/view_helper.rb +15 -0
- data/test/disp_referrer_test.rb +93 -0
- data/test/my-sequel_test.rb +238 -0
- data/test/test_helper.rb +7 -0
- data/test/test_plugin_helper.rb +64 -0
- data/test/test_plugin_helper_test.rb +28 -0
- data/test/weather_test.rb +33 -0
- data/theme/base.css +268 -0
- data/theme/conf.block.png +0 -0
- data/theme/conf.css +254 -0
- data/theme/default/README +11 -0
- data/theme/default/body.png +0 -0
- data/theme/default/default.css +743 -0
- data/theme/help.png +0 -0
- data/theme/loading.gif +0 -0
- data/theme/tdiary1/README +7 -0
- data/theme/tdiary1/tdiary1.css +394 -0
- data/theme/tdiary2/README +19 -0
- data/theme/tdiary2/tdiary2.css +624 -0
- data/update.fcgi +45 -0
- data/update.rb +57 -0
- data/vendor/hikidoc-0.0.6/COPYING +28 -0
- data/vendor/hikidoc-0.0.6/NEWS +30 -0
- data/vendor/hikidoc-0.0.6/NEWS.ja +30 -0
- data/vendor/hikidoc-0.0.6/README +86 -0
- data/vendor/hikidoc-0.0.6/README.ja +83 -0
- data/vendor/hikidoc-0.0.6/Rakefile +68 -0
- data/vendor/hikidoc-0.0.6/TextFormattingRules +320 -0
- data/vendor/hikidoc-0.0.6/TextFormattingRules.ja +318 -0
- data/vendor/hikidoc-0.0.6/bin/hikidoc +66 -0
- data/vendor/hikidoc-0.0.6/lib/hikidoc.rb +914 -0
- data/vendor/hikidoc-0.0.6/setup.rb +1360 -0
- data/vendor/hikidoc-0.0.6/test/run-test.rb +13 -0
- data/vendor/hikidoc-0.0.6/test/test_hikidoc.rb +506 -0
- data/vendor/imagesize-0.1.1/Manifest.txt +19 -0
- data/vendor/imagesize-0.1.1/README.txt +49 -0
- data/vendor/imagesize-0.1.1/lib/image_size.rb +305 -0
- data/vendor/imagesize-0.1.1/lib/image_size/version.rb +9 -0
- data/vendor/imagesize-0.1.1/setup.rb +1585 -0
- data/vendor/imagesize-0.1.1/test/2-4-7.png +0 -0
- data/vendor/imagesize-0.1.1/test/4_1_2.gif +0 -0
- data/vendor/imagesize-0.1.1/test/bmp.bmp +0 -0
- data/vendor/imagesize-0.1.1/test/cursor.xbm +6 -0
- data/vendor/imagesize-0.1.1/test/detect.swf +0 -0
- data/vendor/imagesize-0.1.1/test/pbm.pbm +0 -0
- data/vendor/imagesize-0.1.1/test/pcx.pcx +0 -0
- data/vendor/imagesize-0.1.1/test/pgm.pgm +5 -0
- data/vendor/imagesize-0.1.1/test/test.xpm +38 -0
- data/vendor/imagesize-0.1.1/test/test_helper.rb +2 -0
- data/vendor/imagesize-0.1.1/test/test_image_size.rb +71 -0
- data/vendor/imagesize-0.1.1/test/tiff.tiff +0 -0
- data/vendor/imagesize-0.1.1/test/tokyo_tower.jpg +0 -0
- data/vendor/imagesize-0.1.1/test/tower_e.gif.psd +0 -0
- data/vendor/jasmine-jquery-1.4.2/jasmine-jquery.js +548 -0
- data/vendor/jquery-1.8/jquery.js +9227 -0
- data/vendor/rdtool-0.6.38/COPYING.txt +339 -0
- data/vendor/rdtool-0.6.38/Gemfile +3 -0
- data/vendor/rdtool-0.6.38/HISTORY +318 -0
- data/vendor/rdtool-0.6.38/LGPL-2.1 +502 -0
- data/vendor/rdtool-0.6.38/LICENSE.txt +58 -0
- data/vendor/rdtool-0.6.38/README.html +66 -0
- data/vendor/rdtool-0.6.38/README.ja.html +73 -0
- data/vendor/rdtool-0.6.38/README.rd +76 -0
- data/vendor/rdtool-0.6.38/README.rd.ja +85 -0
- data/vendor/rdtool-0.6.38/Rakefile +152 -0
- data/vendor/rdtool-0.6.38/TODO +22 -0
- data/vendor/rdtool-0.6.38/bin/rd2 +283 -0
- data/vendor/rdtool-0.6.38/bin/rdswap.rb +207 -0
- data/vendor/rdtool-0.6.38/doc/rd-draft.html +456 -0
- data/vendor/rdtool-0.6.38/doc/rd-draft.ja.html +466 -0
- data/vendor/rdtool-0.6.38/doc/rd-draft.rd +479 -0
- data/vendor/rdtool-0.6.38/doc/rd-draft.rd.ja +487 -0
- data/vendor/rdtool-0.6.38/lib/rd/block-element.rb +114 -0
- data/vendor/rdtool-0.6.38/lib/rd/complex-list-item.rb +65 -0
- data/vendor/rdtool-0.6.38/lib/rd/desclist.rb +55 -0
- data/vendor/rdtool-0.6.38/lib/rd/document-struct.rb +46 -0
- data/vendor/rdtool-0.6.38/lib/rd/dot.rd2rc +18 -0
- data/vendor/rdtool-0.6.38/lib/rd/element.rb +160 -0
- data/vendor/rdtool-0.6.38/lib/rd/filter.rb +255 -0
- data/vendor/rdtool-0.6.38/lib/rd/head-filter.rb +14 -0
- data/vendor/rdtool-0.6.38/lib/rd/inline-element.rb +233 -0
- data/vendor/rdtool-0.6.38/lib/rd/labeled-element.rb +14 -0
- data/vendor/rdtool-0.6.38/lib/rd/list.rb +57 -0
- data/vendor/rdtool-0.6.38/lib/rd/loose-struct.rb +11 -0
- data/vendor/rdtool-0.6.38/lib/rd/methodlist.rb +57 -0
- data/vendor/rdtool-0.6.38/lib/rd/output-format-visitor.rb +30 -0
- data/vendor/rdtool-0.6.38/lib/rd/package.rb +4 -0
- data/vendor/rdtool-0.6.38/lib/rd/parser-util.rb +14 -0
- data/vendor/rdtool-0.6.38/lib/rd/post-install +1 -0
- data/vendor/rdtool-0.6.38/lib/rd/pre-setup.rb +18 -0
- data/vendor/rdtool-0.6.38/lib/rd/rbl-file.rb +69 -0
- data/vendor/rdtool-0.6.38/lib/rd/rbl-suite.rb +37 -0
- data/vendor/rdtool-0.6.38/lib/rd/rd-struct.rb +86 -0
- data/vendor/rdtool-0.6.38/lib/rd/rd2html-ext-lib.rb +266 -0
- data/vendor/rdtool-0.6.38/lib/rd/rd2html-ext-opt.rb +34 -0
- data/vendor/rdtool-0.6.38/lib/rd/rd2html-lib.rb +490 -0
- data/vendor/rdtool-0.6.38/lib/rd/rd2html-opt.rb +67 -0
- data/vendor/rdtool-0.6.38/lib/rd/rd2man-lib.rb +251 -0
- data/vendor/rdtool-0.6.38/lib/rd/rd2rdo-lib.rb +19 -0
- data/vendor/rdtool-0.6.38/lib/rd/rd2rmi-lib.rb +32 -0
- data/vendor/rdtool-0.6.38/lib/rd/rdblockparser.ry +518 -0
- data/vendor/rdtool-0.6.38/lib/rd/rdblockparser.tab.rb +1061 -0
- data/vendor/rdtool-0.6.38/lib/rd/rdfmt.rb +15 -0
- data/vendor/rdtool-0.6.38/lib/rd/rdinlineparser.ry +503 -0
- data/vendor/rdtool-0.6.38/lib/rd/rdinlineparser.tab.rb +1243 -0
- data/vendor/rdtool-0.6.38/lib/rd/rdvisitor.rb +214 -0
- data/vendor/rdtool-0.6.38/lib/rd/reference-resolver.rb +114 -0
- data/vendor/rdtool-0.6.38/lib/rd/search-file.rb +14 -0
- data/vendor/rdtool-0.6.38/lib/rd/tree.rb +103 -0
- data/vendor/rdtool-0.6.38/lib/rd/version.rb +41 -0
- data/vendor/rdtool-0.6.38/lib/rd/visitor.rb +86 -0
- data/vendor/rdtool-0.6.38/rdtool.gemspec +125 -0
- data/vendor/rdtool-0.6.38/setup.rb +1596 -0
- data/vendor/rdtool-0.6.38/test/data/includee1.html +1 -0
- data/vendor/rdtool-0.6.38/test/data/includee2.html +1 -0
- data/vendor/rdtool-0.6.38/test/data/includee3.nothtml +1 -0
- data/vendor/rdtool-0.6.38/test/data/includee4.xhtml +0 -0
- data/vendor/rdtool-0.6.38/test/data/label.rbl +2 -0
- data/vendor/rdtool-0.6.38/test/data/label2.rbl +2 -0
- data/vendor/rdtool-0.6.38/test/data/sub/includee2.html +1 -0
- data/vendor/rdtool-0.6.38/test/data/sub/includee4.html +0 -0
- data/vendor/rdtool-0.6.38/test/dummy-observer.rb +6 -0
- data/vendor/rdtool-0.6.38/test/dummy.rb +33 -0
- data/vendor/rdtool-0.6.38/test/temp-dir.rb +19 -0
- data/vendor/rdtool-0.6.38/test/test-block-parser.rb +46 -0
- data/vendor/rdtool-0.6.38/test/test-desclist-item.rb +219 -0
- data/vendor/rdtool-0.6.38/test/test-document-element.rb +46 -0
- data/vendor/rdtool-0.6.38/test/test-document-struct.rb +66 -0
- data/vendor/rdtool-0.6.38/test/test-element.rb +46 -0
- data/vendor/rdtool-0.6.38/test/test-headline.rb +80 -0
- data/vendor/rdtool-0.6.38/test/test-inline-parser.rb +46 -0
- data/vendor/rdtool-0.6.38/test/test-list-item.rb +54 -0
- data/vendor/rdtool-0.6.38/test/test-list.rb +53 -0
- data/vendor/rdtool-0.6.38/test/test-methodlist-item.rb +73 -0
- data/vendor/rdtool-0.6.38/test/test-nonterminal-element.rb +170 -0
- data/vendor/rdtool-0.6.38/test/test-nonterminal-inline.rb +33 -0
- data/vendor/rdtool-0.6.38/test/test-output-format-visitor.rb +48 -0
- data/vendor/rdtool-0.6.38/test/test-parser-util.rb +41 -0
- data/vendor/rdtool-0.6.38/test/test-rbl-file.rb +156 -0
- data/vendor/rdtool-0.6.38/test/test-rbl-suite.rb +43 -0
- data/vendor/rdtool-0.6.38/test/test-rd2html-lib.rb +496 -0
- data/vendor/rdtool-0.6.38/test/test-rdtree.rb +17 -0
- data/vendor/rdtool-0.6.38/test/test-rdvisitor.rb +29 -0
- data/vendor/rdtool-0.6.38/test/test-reference-resolver.rb +202 -0
- data/vendor/rdtool-0.6.38/test/test-reference.rb +132 -0
- data/vendor/rdtool-0.6.38/test/test-search-file.rb +22 -0
- data/vendor/rdtool-0.6.38/test/test-terminal-inline.rb +41 -0
- data/vendor/rdtool-0.6.38/test/test-textblock.rb +44 -0
- data/vendor/rdtool-0.6.38/test/test-tree.rb +82 -0
- data/vendor/rdtool-0.6.38/test/test-version.rb +57 -0
- data/vendor/rdtool-0.6.38/test/test-visitor.rb +230 -0
- data/vendor/rdtool-0.6.38/utils/rd-mode.el +464 -0
- metadata +666 -0
@@ -0,0 +1,93 @@
|
|
1
|
+
# -*- coding: utf-8 -*-
|
2
|
+
|
3
|
+
require File.expand_path('../test_helper', __FILE__)
|
4
|
+
require File.expand_path('../test_plugin_helper', __FILE__)
|
5
|
+
|
6
|
+
include TDiary::PluginTestStub
|
7
|
+
|
8
|
+
require 'ja/disp_referrer'
|
9
|
+
require 'nkf'
|
10
|
+
require 'uri'
|
11
|
+
|
12
|
+
# Test cases which are far from complete:
|
13
|
+
# run this script to unit-test just small part of the features
|
14
|
+
|
15
|
+
# I am sorry that the language resouce has been loaded to the
|
16
|
+
# top level. Therefore, we will spit required objects defined
|
17
|
+
# in tdiary.rb to the top level.
|
18
|
+
|
19
|
+
# Stab for @conf
|
20
|
+
class StabConf
|
21
|
+
def secure; false; end
|
22
|
+
def options; {}; end
|
23
|
+
def referer_table; []; end
|
24
|
+
def no_referer; []; end
|
25
|
+
def io_class; nil; end
|
26
|
+
end
|
27
|
+
@conf = StabConf.new
|
28
|
+
|
29
|
+
# Required module and class structures
|
30
|
+
module TDiary
|
31
|
+
class TDiaryLatest
|
32
|
+
end
|
33
|
+
|
34
|
+
class DefaultIO
|
35
|
+
end
|
36
|
+
end
|
37
|
+
|
38
|
+
# Methods that shuold have been defined in Plugin
|
39
|
+
class Object
|
40
|
+
def referer_today; '本日のリンク元'; end
|
41
|
+
end
|
42
|
+
|
43
|
+
# load the main plugin file
|
44
|
+
require 'disp_referrer'
|
45
|
+
|
46
|
+
class TestSearchEngines < Test::Unit::TestCase
|
47
|
+
def setup
|
48
|
+
@dr2_setup = DispRef2Setup.new(StabConf.new, nil, true, [], '')
|
49
|
+
end
|
50
|
+
|
51
|
+
def match(url, keyword, provider = nil)
|
52
|
+
x = DispRef2URL.new(url).parse(@dr2_setup)
|
53
|
+
assert_equal(:search, x.category, url)
|
54
|
+
assert_equal(to_native(keyword), to_native(x.key), url)
|
55
|
+
assert_equal(to_native(provider), to_native(x.title_ignored), url) if provider
|
56
|
+
end
|
57
|
+
|
58
|
+
def test_search_engines
|
59
|
+
[
|
60
|
+
# simple test to test the unittest code
|
61
|
+
['http://www.google.com/search?q=test', 'test', '.comのGoogle検索'],
|
62
|
+
['http://www.google.com/search?q=test', 'test'],
|
63
|
+
['http://images.google.com/images?q=qwertz&start=240&ndsp=20&svnum=10&hl=fr&lr=&sa=N', 'qwertz'],
|
64
|
+
['http://bloger.x0.com/result/%E3%83%86%E3%82%B9%E3%83%88%E3%81%A7%E3%81%99%E3%81%A8/%E3%83%86%E3%82%B9%E3%83%88%E3%81%A7%E3%81%99%E3%81%A8', 'テストですと', 'YGブログ検索'],
|
65
|
+
['http://wordtantei.com/result/%E3%83%86%E3%82%B9%E3%83%88/%E3%83%86%E3%82%B9%E3%83%88', 'テスト', 'ワード探偵'],
|
66
|
+
['http://www.sfa-cms.net/word/zunda/zunda+%E3%81%9A%E3%82%93%E3%81%A0', 'zunda ずんだ', '入れ⇔替え検索'],
|
67
|
+
['http://search.hatena.ne.jp/search?word=zunda&site=', 'zunda', 'はてな検索'],
|
68
|
+
['http://search.live.com/results.aspx?q=%E3%81%8A%E3%81%BE%E3%81%AC%E3%81%91%E6%B4%BB%E5%8B%95%E6%97%A5%E8%AA%8C&go=%E6%A4%9C%E7%B4%A2&mkt=ja-jp&scope=&FORM=LIVSOP', 'おまぬけ活動日誌', 'Live Search'],
|
69
|
+
].each do |url, keyword, provider|
|
70
|
+
match(url, keyword, provider)
|
71
|
+
end
|
72
|
+
end
|
73
|
+
|
74
|
+
def test_cached_urls
|
75
|
+
[
|
76
|
+
['http://72.14.235.104/search?q=cache:gj71ka2AWYgJ:zunda.freeshell.org/d/20071019.html+rsync+error+error+in+file+IO&hl=ja&ct=clnk&cd=2&gl=jp', 'rsync error error in file IO', 'Google検索(zunda.freeshell.org/d/20071019.htmlのキャッシュ)'],
|
77
|
+
].each do |url, keyword, provider|
|
78
|
+
match(url, keyword, provider)
|
79
|
+
end
|
80
|
+
end
|
81
|
+
|
82
|
+
def test_recursive_conversion
|
83
|
+
[
|
84
|
+
['http://images.google.com/imgres?imgurl=http://zunda.freeshell.org/p/020302_GermanKbdSml.jpg&imgrefurl=http://zunda.freeshell.org/d/20050629.html&h=170&w=512&sz=30&hl=fr&start=256&tbnid=TlfDZCEB4H1PTM:&tbnh=43&tbnw=131&prev=/images%3Fq%3Dqwertz%26start%3D240%26ndsp%3D20%26svnum%3D10%26hl%3Dfr%26lr%3D%26sa%3DN', 'qwertz', '.comのGoogleイメージ検索'],
|
85
|
+
['http://translate.google.com/translate?hl=en&sl=ja&u=http://zunda.freeshell.org/d/20070706.html&sa=X&oi=translate&resnum=2&ct=result&prev=/search%3Fq%3Del%2Bcombote%2Binternational%2Blotto%2Bcommission%26hl%3Den', 'el combote international lotto commission', '.comのGoogle検索'],
|
86
|
+
['http://64.233.179.104/translate_c?hl=en&sl=ja&u=http://zunda.freeshell.org/d/20070501.html&prev=/search%3Fq%3Dhtaccess%2Bbrowser%2Bagent%2BDoCoMo/1.0/N505i/c20/TB/W20H10%26hl%3Den%26client%3Dfirefox-a%26rls%3Dorg.mozilla:en-US:official%26hs%3DKUR', 'htaccess browser agent DoCoMo/1.0/N505i/c20/TB/W20H10', 'Google検索'],
|
87
|
+
['http://216.239.37.104/translate_c?hl=en&sl=ja&u=http://zunda.freeshell.org/d/20050907.html&prev=/search%3Fq%3Drnbovdd.dll%26start%3D10%26hl%3Den%26lr%3D%26client%3Dfirefox-a%26rls%3Dorg.mozilla:en-US:official%26sa%3DN', 'rnbovdd.dll', 'Google検索'],
|
88
|
+
['http://66.249.93.104/translate_c?hl=en&sl=ja&u=http://zunda.freeshell.org/d/20051017.html&prev=/search%3Fq%3Dgperf%2Bwarning%2B%2522missing%2Binitializer%2522%26hl%3Den%26sa%3DG', 'gperf warning "missing initializer"']
|
89
|
+
].each do |url, keyword, provider|
|
90
|
+
match(url, keyword, provider)
|
91
|
+
end
|
92
|
+
end
|
93
|
+
end
|
@@ -0,0 +1,238 @@
|
|
1
|
+
require File.expand_path('../test_helper', __FILE__)
|
2
|
+
require 'my-sequel'
|
3
|
+
require 'fileutils'
|
4
|
+
require 'tmpdir'
|
5
|
+
|
6
|
+
# test cases for updates of links: run this file as a Ruby script
|
7
|
+
class TestMySequel < Test::Unit::TestCase
|
8
|
+
OrigLinks = {
|
9
|
+
'20061231#p01' => '20061101#p01',
|
10
|
+
'20061231#p02' => '20061001#p01',
|
11
|
+
'20061130#p01' => '20061001#p01',
|
12
|
+
}
|
13
|
+
|
14
|
+
def setup
|
15
|
+
@cache_path = File.join(Dir.tmpdir, "#{__FILE__}-#{$$}")
|
16
|
+
FileUtils.mkdir_p(@cache_path)
|
17
|
+
|
18
|
+
@orig_src_dates = OrigLinks.keys.map{|a| MySequel.date(a)}
|
19
|
+
@orig_dst_dates = OrigLinks.values.map{|a| MySequel.date(a)}
|
20
|
+
orig = MySequel.new(@cache_path)
|
21
|
+
orig.restore(@orig_src_dates)
|
22
|
+
@orig_src_dates.each do |date|
|
23
|
+
orig.clean_dsts(Time.local(*(date.scan(/(\d{4,4})(\d\d)(\d\d)/)[0])))
|
24
|
+
end
|
25
|
+
OrigLinks.each_pair do |src, dst|
|
26
|
+
orig.add(src, dst)
|
27
|
+
end
|
28
|
+
orig.clean_srcs
|
29
|
+
orig.commit
|
30
|
+
end
|
31
|
+
|
32
|
+
def testsrcs # confirms setup really cached the OrigLinks
|
33
|
+
cached = MySequel.new(@cache_path)
|
34
|
+
cached.restore(@orig_dst_dates)
|
35
|
+
OrigLinks.values.uniq.each do |dst|
|
36
|
+
srcs = OrigLinks.find_all{|e| dst == e[1]}.map{|e| e[0]}
|
37
|
+
assert_equal(srcs.sort, cached.srcs(dst).sort)
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
def testadd # confirms addition of a day
|
42
|
+
# write the diary for 2007-01-01
|
43
|
+
cached = MySequel.new(@cache_path)
|
44
|
+
cached.restore(@orig_dst_dates)
|
45
|
+
cached.clean_dsts(Time.local(2007,1,1))
|
46
|
+
cached.add('20070101#p01', '20060101#p01')
|
47
|
+
assert_equal(['20070101#p01'], cached.srcs('20060101#p01'))
|
48
|
+
cached.clean_srcs
|
49
|
+
cached.commit
|
50
|
+
# display the diary for 2006-01-01
|
51
|
+
cached = MySequel.new(@cache_path)
|
52
|
+
cached.restore(['20060101'])
|
53
|
+
assert_equal(['20070101#p01'], cached.srcs('20060101#p01'))
|
54
|
+
# confirmation of other links
|
55
|
+
testsrcs
|
56
|
+
end
|
57
|
+
|
58
|
+
def testadd_two_months # http://zunda.freeshell.org/d/20070122.html#c01
|
59
|
+
# write the diary for 2007-02-15
|
60
|
+
cached = MySequel.new(@cache_path)
|
61
|
+
cached.restore('20070215')
|
62
|
+
cached.clean_dsts(Time.local(2007,2,15))
|
63
|
+
cached.add('20070215#p01', '20070115#p01')
|
64
|
+
cached.clean_srcs
|
65
|
+
cached.commit
|
66
|
+
# write the diary for 2007-03-10
|
67
|
+
cached = MySequel.new(@cache_path)
|
68
|
+
cached.restore('20070310')
|
69
|
+
cached.clean_dsts(Time.local(2007,3,10))
|
70
|
+
cached.add('20070310#p01', '20070115#p01')
|
71
|
+
cached.clean_srcs
|
72
|
+
cached.commit
|
73
|
+
# display the diary on 2007-01-15
|
74
|
+
cached = MySequel.new(@cache_path)
|
75
|
+
cached.restore('20070115')
|
76
|
+
assert_equal(['20070215#p01', '20070310#p01'], cached.srcs('20070115#p01'))
|
77
|
+
|
78
|
+
end
|
79
|
+
|
80
|
+
def testedit # confirms edition of a link
|
81
|
+
# edit the diary for 2006-11-31
|
82
|
+
cached = MySequel.new(@cache_path)
|
83
|
+
cached.restore(@orig_dst_dates)
|
84
|
+
cached.clean_dsts(Time.local(2006,11,30))
|
85
|
+
cached.add('20061130#p01', '20060901#p01')
|
86
|
+
cached.clean_srcs
|
87
|
+
cached.commit
|
88
|
+
# display the diary on 2006-09-01
|
89
|
+
cached = MySequel.new(@cache_path)
|
90
|
+
cached.restore(['20060901'])
|
91
|
+
assert_equal(['20061130#p01'], cached.srcs('20060901#p01'))
|
92
|
+
# display the diary on 2006-10-01
|
93
|
+
cached.restore(['20061001'])
|
94
|
+
assert_equal(['20061231#p02'], cached.srcs('20061001#p01'))
|
95
|
+
end
|
96
|
+
|
97
|
+
def testdelete # confirms deletion of a link
|
98
|
+
# edit the diary for 2006-11-31
|
99
|
+
cached = MySequel.new(@cache_path)
|
100
|
+
cached.restore(@orig_dst_dates)
|
101
|
+
cached.clean_dsts(Time.local(2006,11,30))
|
102
|
+
cached.clean_srcs
|
103
|
+
cached.commit
|
104
|
+
# display the diary on 2006-10-01
|
105
|
+
cached.restore(['20061001'])
|
106
|
+
assert_equal(['20061231#p02'], cached.srcs('20061001#p01'))
|
107
|
+
end
|
108
|
+
|
109
|
+
def teardown
|
110
|
+
FileUtils.rmtree(@cache_path)
|
111
|
+
end
|
112
|
+
end
|
113
|
+
|
114
|
+
class TestMySequelCss < Test::Unit::TestCase
|
115
|
+
def test_usual
|
116
|
+
assert_equal(<<"_TARGET", MySequel::css(<<'_INNER'))
|
117
|
+
\t<style type="text/css" media="all"><!--
|
118
|
+
\tdiv.sequel {
|
119
|
+
\t\thogehoge: <mogemoge>
|
120
|
+
\t}
|
121
|
+
\t--></style>
|
122
|
+
_TARGET
|
123
|
+
hogehoge: <mogemoge>
|
124
|
+
_INNER
|
125
|
+
end
|
126
|
+
|
127
|
+
def test_empty
|
128
|
+
assert_equal('', MySequel::css(''))
|
129
|
+
end
|
130
|
+
|
131
|
+
def test_space
|
132
|
+
assert_equal('', MySequel::css(' '))
|
133
|
+
end
|
134
|
+
|
135
|
+
def test_crlf
|
136
|
+
assert_equal('', MySequel::css("\r\n"))
|
137
|
+
end
|
138
|
+
|
139
|
+
end
|
140
|
+
|
141
|
+
class TestMySequelConf < Test::Unit::TestCase
|
142
|
+
include ERB::Util
|
143
|
+
|
144
|
+
def setup
|
145
|
+
@defaults = {
|
146
|
+
:label => {
|
147
|
+
:title => 'Link label',
|
148
|
+
:default => 'default label',
|
149
|
+
:index => 1,
|
150
|
+
},
|
151
|
+
:format => {
|
152
|
+
:title => 'Date format<sup>*</sup>',
|
153
|
+
:description => 'Format of the dates of the link',
|
154
|
+
:default => '<date>',
|
155
|
+
:index => 2,
|
156
|
+
},
|
157
|
+
:textarea => {
|
158
|
+
:title => 'Test to show text area',
|
159
|
+
:default => "a\nb\ncc",
|
160
|
+
:index => 3,
|
161
|
+
:textarea => true,
|
162
|
+
},
|
163
|
+
:textarea_with_size => {
|
164
|
+
:title => 'Test to show text area',
|
165
|
+
:default => "a\nb\ncc",
|
166
|
+
:index => 4,
|
167
|
+
:textarea => {:rows => 2},
|
168
|
+
}
|
169
|
+
}
|
170
|
+
@my_sequel_conf = MySequel::Conf.new(@defaults)
|
171
|
+
end
|
172
|
+
|
173
|
+
def testdefaults # retrieve default configuration
|
174
|
+
assert_equal('default label', @my_sequel_conf[:label])
|
175
|
+
end
|
176
|
+
|
177
|
+
def testmerge
|
178
|
+
options = {'my_sequel.label' => 'configured label'}
|
179
|
+
@my_sequel_conf.merge_hash(options)
|
180
|
+
assert_equal('configured label', @my_sequel_conf[:label])
|
181
|
+
end
|
182
|
+
|
183
|
+
def testparams
|
184
|
+
options = {'label' => ['configured label']}
|
185
|
+
@my_sequel_conf.merge_params(options)
|
186
|
+
assert_equal('configured label', @my_sequel_conf[:label])
|
187
|
+
end
|
188
|
+
|
189
|
+
def testparams_with_empty_array
|
190
|
+
options = {'label' => ['configured label'], 'label.reset' => []}
|
191
|
+
@my_sequel_conf.merge_params(options)
|
192
|
+
assert_equal('configured label', @my_sequel_conf[:label])
|
193
|
+
end
|
194
|
+
|
195
|
+
def testtohash
|
196
|
+
testmerge
|
197
|
+
conf_hash = {'dummy' => 'dummy'}
|
198
|
+
@my_sequel_conf.to_conf_hash(conf_hash)
|
199
|
+
assert_equal({'my_sequel.label' => 'configured label', 'dummy' => 'dummy'}, conf_hash)
|
200
|
+
end
|
201
|
+
|
202
|
+
def testparams_with_empty
|
203
|
+
testmerge
|
204
|
+
options = {'label' => ['']}
|
205
|
+
@my_sequel_conf.merge_params(options)
|
206
|
+
assert_equal('', @my_sequel_conf[:label])
|
207
|
+
end
|
208
|
+
|
209
|
+
def testparams_with_reset
|
210
|
+
testmerge
|
211
|
+
options = {'label' => ['any value'], 'label.reset' => 't'}
|
212
|
+
@my_sequel_conf.merge_params(options)
|
213
|
+
assert_equal('default label', @my_sequel_conf[:label])
|
214
|
+
end
|
215
|
+
|
216
|
+
def test_delete_confhash
|
217
|
+
options = {'my_sequel.label' => 'configured label'}
|
218
|
+
@my_sequel_conf.merge_hash(options)
|
219
|
+
params = {'label' => ['any value'],'label.reset' => 't'}
|
220
|
+
@my_sequel_conf.merge_params(params)
|
221
|
+
@my_sequel_conf.to_conf_hash(options)
|
222
|
+
assert(!options.has_key?('my_sequel.label'))
|
223
|
+
end
|
224
|
+
|
225
|
+
def testparams_with_nil
|
226
|
+
testmerge
|
227
|
+
options = {'label' => nil}
|
228
|
+
@my_sequel_conf.merge_params(options)
|
229
|
+
assert_equal('configured label', @my_sequel_conf[:label])
|
230
|
+
end
|
231
|
+
|
232
|
+
def testparams_with_nokey
|
233
|
+
testmerge
|
234
|
+
options = {}
|
235
|
+
@my_sequel_conf.merge_params(options)
|
236
|
+
assert_equal('configured label', @my_sequel_conf[:label])
|
237
|
+
end
|
238
|
+
end
|
data/test/test_helper.rb
ADDED
@@ -0,0 +1,64 @@
|
|
1
|
+
module TDiary
|
2
|
+
module PluginTestStub
|
3
|
+
def add_header_proc(*args); end
|
4
|
+
def add_body_enter_proc(*args); end
|
5
|
+
def add_update_proc(*args); end
|
6
|
+
def add_conf_proc(*args); end
|
7
|
+
def add_title_proc(*args); end
|
8
|
+
def add_subtitle_proc(*args); end
|
9
|
+
def add_footer_proc(*args); end
|
10
|
+
def feed?; false; end
|
11
|
+
def enable_js(*args); end
|
12
|
+
def add_js_setting(*args); end
|
13
|
+
def to_native( str, charset = nil )
|
14
|
+
from = case charset
|
15
|
+
when /^utf-8$/i
|
16
|
+
'W'
|
17
|
+
when /^shift_jis/i
|
18
|
+
'S'
|
19
|
+
when /^EUC-JP/i
|
20
|
+
'E'
|
21
|
+
else
|
22
|
+
''
|
23
|
+
end
|
24
|
+
NKF::nkf( "-m0 -#{from}w", str )
|
25
|
+
end
|
26
|
+
end
|
27
|
+
|
28
|
+
module PluginTestHelper
|
29
|
+
def PluginTestHelper.absolute_path_of(plugin_relative_path)
|
30
|
+
File.expand_path(File.join(File.dirname(__FILE__), '..', plugin_relative_path))
|
31
|
+
end
|
32
|
+
|
33
|
+
def PluginTestHelper.resource_relative_path_of(plugin_relative_path, lang)
|
34
|
+
File.join(File.dirname(plugin_relative_path), lang, File.basename(plugin_relative_path))
|
35
|
+
end
|
36
|
+
|
37
|
+
def PluginTestHelper.resource_absolute_path_of(plugin_relative_path, lang)
|
38
|
+
ppath = PluginTestHelper.absolute_path_of(plugin_relative_path)
|
39
|
+
File.join(File.dirname(ppath), lang, File.basename(ppath))
|
40
|
+
end
|
41
|
+
end
|
42
|
+
|
43
|
+
class ConfStub
|
44
|
+
def style; 'tDiary'; end
|
45
|
+
end
|
46
|
+
|
47
|
+
class PluginTestCase < Test::Unit::TestCase
|
48
|
+
include TDiary::PluginTestStub
|
49
|
+
|
50
|
+
def add_stub_ivars
|
51
|
+
@options = {}
|
52
|
+
@conf_genre_label = {}
|
53
|
+
@conf = TDiary::ConfStub.new
|
54
|
+
end
|
55
|
+
|
56
|
+
def load_plugin(plugin_relative_path, lang = 'en', context = binding)
|
57
|
+
add_stub_ivars
|
58
|
+
ppath = PluginTestHelper.absolute_path_of(plugin_relative_path)
|
59
|
+
pl10n = PluginTestHelper.resource_absolute_path_of(plugin_relative_path, lang)
|
60
|
+
File.open(pl10n){|f| eval(f.read, context, PluginTestHelper.resource_relative_path_of(plugin_relative_path, lang))}
|
61
|
+
File.open(ppath){|f| eval(f.read, context, plugin_relative_path)}
|
62
|
+
end
|
63
|
+
end
|
64
|
+
end
|
@@ -0,0 +1,28 @@
|
|
1
|
+
# Test cases for test_plugin_helper.rb
|
2
|
+
require File.expand_path('../test_helper', __FILE__)
|
3
|
+
require File.expand_path('../test_plugin_helper', __FILE__)
|
4
|
+
|
5
|
+
class TestPluginHelper < TDiary::PluginTestCase
|
6
|
+
def test_absolute_path_of
|
7
|
+
abspath = File.expand_path(File.join(File.dirname(__FILE__), '..', 'plugin', '00default.rb'))
|
8
|
+
assert_equal(abspath, TDiary::PluginTestHelper.absolute_path_of('plugin/00default.rb'))
|
9
|
+
end
|
10
|
+
|
11
|
+
def test_resource_absolute_path_of
|
12
|
+
abspath = File.expand_path(File.join(File.dirname(__FILE__), '..', 'plugin', 'en', '00default.rb'))
|
13
|
+
assert_equal(abspath, TDiary::PluginTestHelper.resource_absolute_path_of('plugin/00default.rb', 'en'))
|
14
|
+
end
|
15
|
+
|
16
|
+
def test_resource_relative_path_of
|
17
|
+
abspath = File.join('plugin', 'en', '00default.rb')
|
18
|
+
assert_equal(abspath, TDiary::PluginTestHelper.resource_relative_path_of('plugin/00default.rb', 'en'))
|
19
|
+
end
|
20
|
+
|
21
|
+
def test_load_plugin_en
|
22
|
+
assert_nothing_raised{load_plugin('plugin/00default.rb', 'en', binding)}
|
23
|
+
end
|
24
|
+
|
25
|
+
def test_load_plugin_ja
|
26
|
+
assert_nothing_raised{load_plugin('plugin/00default.rb', 'ja', binding)}
|
27
|
+
end
|
28
|
+
end
|