jpmobile 0.0.4 → 0.0.6
Sign up to get free protection for your applications and to get access to all the features.
- data/README.rdoc +227 -0
- data/Rakefile +6 -13
- data/lib/jpmobile/docomo_guid.rb +42 -0
- data/lib/jpmobile/filter.rb +1 -1
- data/lib/jpmobile/helpers.rb +2 -1
- data/lib/jpmobile/hook_action_controller.rb +12 -0
- data/lib/jpmobile/hook_action_view.rb +82 -72
- data/lib/jpmobile/{hook_abstract_request.rb → hook_request.rb} +1 -1
- data/lib/jpmobile/mobile/au.rb +9 -3
- data/lib/jpmobile/mobile/z_display_info_docomo.rb +10 -2
- data/lib/jpmobile/mobile/z_ip_addresses_au.rb +1 -26
- data/lib/jpmobile/mobile/z_ip_addresses_willcom.rb +2 -4
- data/lib/jpmobile/rack/auth.rb +55 -0
- data/lib/jpmobile/rack/combined_logger.rb +54 -0
- data/lib/jpmobile/rack/request.rb +7 -0
- data/lib/jpmobile/rack/trans_sid.rb +14 -0
- data/lib/jpmobile/trans_sid.rb +70 -62
- data/lib/jpmobile/version.rb +1 -1
- data/test/{au_test.rb → legacy/au_test.rb} +0 -0
- data/test/{autoload_test.rb → legacy/autoload_test.rb} +0 -0
- data/test/{docomo_test.rb → legacy/docomo_test.rb} +0 -0
- data/test/{emoticon_functional_test.rb → legacy/emoticon_functional_test.rb} +1 -1
- data/test/{emoticon_test.rb → legacy/emoticon_test.rb} +0 -0
- data/test/{filter_test.rb → legacy/filter_test.rb} +0 -0
- data/test/{helper.rb → legacy/helper.rb} +4 -5
- data/test/{helpers_test.rb → legacy/helpers_test.rb} +1 -1
- data/test/{softbank_test.rb → legacy/softbank_test.rb} +0 -0
- data/test/{willcom_test.rb → legacy/willcom_test.rb} +0 -0
- data/test/rails/overrides/app/controllers/application.rb +5 -0
- data/test/rails/overrides/app/controllers/docomo_guid_controller.rb +13 -0
- data/test/rails/overrides/app/controllers/filter_controller.rb +26 -0
- data/test/rails/overrides/app/controllers/mobile_spec_controller.rb +5 -0
- data/test/rails/overrides/app/controllers/template_path_controller.rb +6 -0
- data/test/rails/overrides/app/controllers/trans_sid_controller.rb +28 -0
- data/test/rails/overrides/app/views/filter/index.html.erb +0 -0
- data/test/rails/overrides/app/views/hankaku_filter/index.html.erb +0 -0
- data/test/rails/overrides/app/views/template_path/_partial.html.erb +1 -0
- data/test/rails/overrides/app/views/template_path/_partial_mobile.html.erb +1 -0
- data/test/rails/overrides/app/views/template_path/_partial_mobile_docomo.html.erb +1 -0
- data/test/rails/overrides/app/views/template_path/index.html.erb +1 -0
- data/test/rails/overrides/app/views/template_path/index_mobile.html.erb +1 -0
- data/test/rails/overrides/app/views/template_path/index_mobile_docomo.html.erb +1 -0
- data/test/rails/overrides/app/views/template_path/partial.html.erb +2 -0
- data/test/rails/overrides/lib/tasks/rspec.rake +165 -0
- data/test/rails/overrides/spec/controllers/docomo_guid_spec.rb +77 -0
- data/test/rails/overrides/spec/controllers/docomo_spec.rb +28 -0
- data/test/rails/overrides/spec/controllers/emobile_spec.rb +35 -0
- data/test/rails/overrides/spec/controllers/filter_spec.rb +157 -0
- data/test/rails/overrides/spec/controllers/pc_spec.rb +11 -0
- data/test/rails/overrides/spec/controllers/softbank_emulator_spec.rb +40 -0
- data/test/rails/overrides/spec/controllers/template_path_spec.rb +115 -0
- data/test/rails/overrides/spec/controllers/trans_sid_spec.rb +98 -0
- data/test/rails/overrides/spec/helpers/helpers_spec.rb +13 -0
- data/test/rails/overrides/spec/rcov.opts +2 -0
- data/test/rails/overrides/spec/rspec.rake +165 -0
- data/test/rails/overrides/spec/spec.opts +4 -0
- data/test/rails/overrides/spec/spec_helper.rb +47 -0
- data/test/rails/rails_root/README +256 -0
- data/test/rails/rails_root/Rakefile +10 -0
- data/test/rails/rails_root/app/controllers/application.rb +5 -0
- data/test/rails/rails_root/app/controllers/docomo_guid_controller.rb +13 -0
- data/test/rails/rails_root/app/controllers/filter_controller.rb +26 -0
- data/test/rails/rails_root/app/controllers/mobile_spec_controller.rb +5 -0
- data/test/rails/rails_root/app/controllers/template_path_controller.rb +6 -0
- data/test/rails/rails_root/app/controllers/trans_sid_controller.rb +26 -0
- data/test/rails/rails_root/app/helpers/application_helper.rb +3 -0
- data/test/rails/rails_root/app/views/template_path/index.html.erb +1 -0
- data/test/rails/rails_root/app/views/template_path/index_mobile.html.erb +1 -0
- data/test/rails/rails_root/app/views/template_path/index_mobile_docomo.html.erb +1 -0
- data/test/rails/rails_root/config/boot.rb +109 -0
- data/test/rails/rails_root/config/database.yml +22 -0
- data/test/rails/rails_root/config/environment.rb +75 -0
- data/test/rails/rails_root/config/environments/development.rb +17 -0
- data/test/rails/rails_root/config/environments/production.rb +24 -0
- data/test/rails/rails_root/config/environments/test.rb +22 -0
- data/test/rails/rails_root/config/initializers/inflections.rb +10 -0
- data/test/rails/rails_root/config/initializers/mime_types.rb +5 -0
- data/test/rails/rails_root/config/initializers/new_rails_defaults.rb +17 -0
- data/test/rails/rails_root/config/locales/en.yml +5 -0
- data/test/rails/rails_root/config/routes.rb +43 -0
- data/test/rails/rails_root/db/development.sqlite3 +0 -0
- data/test/rails/rails_root/db/schema.rb +14 -0
- data/test/rails/rails_root/db/test.sqlite3 +0 -0
- data/test/rails/rails_root/doc/README_FOR_APP +5 -0
- data/test/rails/rails_root/lib/tasks/rspec.rake +165 -0
- data/test/rails/rails_root/log/development.log +38 -0
- data/test/rails/rails_root/log/production.log +0 -0
- data/test/rails/rails_root/log/server.log +0 -0
- data/test/rails/rails_root/log/test.log +401 -0
- data/test/rails/rails_root/public/404.html +30 -0
- data/test/rails/rails_root/public/422.html +30 -0
- data/test/rails/rails_root/public/500.html +33 -0
- data/test/rails/rails_root/public/dispatch.cgi +10 -0
- data/test/rails/rails_root/public/dispatch.fcgi +24 -0
- data/test/rails/rails_root/public/dispatch.rb +10 -0
- data/test/rails/rails_root/public/favicon.ico +0 -0
- data/test/rails/rails_root/public/images/rails.png +0 -0
- data/test/rails/rails_root/public/index.html +274 -0
- data/test/rails/rails_root/public/javascripts/application.js +2 -0
- data/test/rails/rails_root/public/javascripts/controls.js +963 -0
- data/test/rails/rails_root/public/javascripts/dragdrop.js +973 -0
- data/test/rails/rails_root/public/javascripts/effects.js +1128 -0
- data/test/rails/rails_root/public/javascripts/prototype.js +4320 -0
- data/test/rails/rails_root/public/robots.txt +5 -0
- data/test/rails/rails_root/script/about +4 -0
- data/test/rails/rails_root/script/console +3 -0
- data/test/rails/rails_root/script/dbconsole +3 -0
- data/test/rails/rails_root/script/destroy +3 -0
- data/test/rails/rails_root/script/generate +3 -0
- data/test/rails/rails_root/script/performance/benchmarker +3 -0
- data/test/rails/rails_root/script/performance/profiler +3 -0
- data/test/rails/rails_root/script/performance/request +3 -0
- data/test/rails/rails_root/script/plugin +3 -0
- data/test/rails/rails_root/script/process/inspector +3 -0
- data/test/rails/rails_root/script/process/reaper +3 -0
- data/test/rails/rails_root/script/process/spawner +3 -0
- data/test/rails/rails_root/script/runner +3 -0
- data/test/rails/rails_root/script/server +3 -0
- data/test/rails/rails_root/spec/controllers/docomo_guid_spec.rb +77 -0
- data/test/rails/rails_root/spec/controllers/docomo_spec.rb +28 -0
- data/test/rails/rails_root/spec/controllers/emobile_spec.rb +35 -0
- data/test/rails/rails_root/spec/controllers/filter_spec.rb +157 -0
- data/test/rails/rails_root/spec/controllers/pc_spec.rb +11 -0
- data/test/rails/rails_root/spec/controllers/softbank_emulator_spec.rb +40 -0
- data/test/rails/rails_root/spec/controllers/template_path_spec.rb +85 -0
- data/test/rails/rails_root/spec/controllers/trans_sid_spec.rb +96 -0
- data/test/rails/rails_root/spec/helpers/helpers_spec.rb +13 -0
- data/test/rails/rails_root/spec/rcov.opts +2 -0
- data/test/rails/rails_root/spec/rspec.rake +165 -0
- data/test/rails/rails_root/spec/spec.opts +4 -0
- data/test/rails/rails_root/spec/spec_helper.rb +47 -0
- data/test/rails/rails_root/test/performance/browsing_test.rb +9 -0
- data/test/rails/rails_root/test/test_helper.rb +38 -0
- data/test/rails/rails_root/vendor/plugins/jpmobile/CHANGELOG +7 -0
- data/test/rails/rails_root/vendor/plugins/jpmobile/MIT-LICENSE +7 -0
- data/{README → test/rails/rails_root/vendor/plugins/jpmobile/README.rdoc} +15 -17
- data/test/rails/rails_root/vendor/plugins/jpmobile/Rakefile +116 -0
- data/test/rails/rails_root/vendor/plugins/jpmobile/init.rb +3 -0
- data/test/rails/rails_root/vendor/plugins/jpmobile/install.rb +1 -0
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile.rb +42 -0
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/datum_conv.rb +72 -0
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/docomo_guid.rb +42 -0
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/email.rb +19 -0
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/emoticon.rb +123 -0
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/emoticon/au.rb +1287 -0
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/emoticon/conversion_table.rb +3908 -0
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/emoticon/docomo.rb +255 -0
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/emoticon/softbank.rb +477 -0
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/emoticon/z_combine.rb +20 -0
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/filter.rb +173 -0
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/helpers.rb +185 -0
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/hook_action_controller.rb +11 -0
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/hook_action_view.rb +142 -0
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/hook_request.rb +13 -0
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/mobile/abstract_mobile.rb +73 -0
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/mobile/au.rb +97 -0
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/mobile/display.rb +33 -0
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/mobile/docomo.rb +97 -0
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/mobile/emobile.rb +17 -0
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/mobile/softbank.rb +110 -0
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/mobile/willcom.rb +39 -0
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/mobile/z_display_info_docomo.rb +688 -0
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/mobile/z_ip_addresses_au.rb +22 -0
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/mobile/z_ip_addresses_docomo.rb +12 -0
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/mobile/z_ip_addresses_emobile.rb +10 -0
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/mobile/z_ip_addresses_softbank.rb +17 -0
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/mobile/z_ip_addresses_willcom.rb +117 -0
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/position.rb +67 -0
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/request_with_mobile.rb +44 -0
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/trans_sid.rb +105 -0
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/util.rb +21 -0
- data/test/rails/rails_root/vendor/plugins/jpmobile/lib/jpmobile/version.rb +9 -0
- data/test/rails/rails_root/vendor/plugins/jpmobile/spec/spec.opts +6 -0
- data/test/rails/rails_root/vendor/plugins/jpmobile/spec/spec_helper.rb +36 -0
- data/test/rails/rails_root/vendor/plugins/jpmobile/spec/unit/detect_by_email_spec.rb +31 -0
- data/test/rails/rails_root/vendor/plugins/jpmobile/spec/unit/detect_by_ua_spec.rb +42 -0
- data/test/rails/rails_root/vendor/plugins/jpmobile/spec/unit/is_carrier_spec.rb +93 -0
- data/test/rails/rails_root/vendor/plugins/jpmobile/spec/unit/spec_helper.rb +5 -0
- data/test/rails/rails_root/vendor/plugins/jpmobile/spec/unit/util_spec.rb +28 -0
- data/test/rails/rails_root/vendor/plugins/jpmobile/spec/unit/valid_ip_spec.rb +60 -0
- data/test/rails/rails_root/vendor/plugins/jpmobile/tasks/jpmobile_tasks.rake +59 -0
- data/test/rails/rails_root/vendor/plugins/jpmobile/tools/emoji/genregexp.rb +47 -0
- data/test/rails/rails_root/vendor/plugins/jpmobile/tools/generate_au_emoticon_table.rb +34 -0
- data/test/rails/rails_root/vendor/plugins/jpmobile/tools/generate_docomo_emoticon_table.rb +34 -0
- data/test/rails/rails_root/vendor/plugins/jpmobile/tools/generate_emoticon_conversion_table.rb +107 -0
- data/test/rails/rails_root/vendor/plugins/jpmobile/tools/generate_softbank_emoticon_table.rb +32 -0
- data/test/rails/rails_root/vendor/plugins/jpmobile/tools/list_gps_unsupported_au.rb +23 -0
- data/test/rails/rails_root/vendor/plugins/jpmobile/tools/update_display_info_docomo.rb +45 -0
- data/test/rails/rails_root/vendor/plugins/jpmobile/tools/update_ip_addresses_au.rb +29 -0
- data/test/rails/rails_root/vendor/plugins/jpmobile/tools/update_ip_addresses_willcom.rb +17 -0
- data/tools/update_ip_addresses_au.rb +15 -5
- metadata +188 -22
@@ -0,0 +1,96 @@
|
|
1
|
+
require File.dirname(__FILE__) + '/../spec_helper'
|
2
|
+
|
3
|
+
describe "trans_sid が起動しないとき", :shared => true do
|
4
|
+
it "で link_to の自動書き換えが行われない" do
|
5
|
+
get :link
|
6
|
+
response.body.should =~ %r{^<a href="/.+?/link">linkto</a>$}
|
7
|
+
end
|
8
|
+
it "で form の自動書き換えが行われない" do
|
9
|
+
get :form
|
10
|
+
response.body.should =~ %r{^<form action="/.+?/form" method="post">Hello</form>$}
|
11
|
+
end
|
12
|
+
end
|
13
|
+
|
14
|
+
describe "trans_sid が起動するとき", :shared => true do
|
15
|
+
before :each do
|
16
|
+
request.session.session_id = "mysessionid"
|
17
|
+
end
|
18
|
+
it "で link_to の自動書き換えが行われる" do
|
19
|
+
get :link
|
20
|
+
response.body.should =~ %r{^<a href="/.+?/link\?_session_id=mysessionid">linkto</a>$}
|
21
|
+
end
|
22
|
+
it "で form の自動書き換えが行われる" do
|
23
|
+
get :form
|
24
|
+
response.body.should =~ %r{^<form action="/.+?/form\?_session_id=mysessionid" method="post">Hello<input type="hidden" name="_session_id" value="mysessionid" /></form>$}
|
25
|
+
end
|
26
|
+
end
|
27
|
+
|
28
|
+
describe TransSidBaseController, "という trans_sid が有効になっていないコントローラ" do
|
29
|
+
controller_name :trans_sid_base
|
30
|
+
it "の trans_sid_mode は nil" do
|
31
|
+
controller.trans_sid_mode.should be_nil
|
32
|
+
end
|
33
|
+
it_should_behave_like "trans_sid が起動しないとき"
|
34
|
+
end
|
35
|
+
|
36
|
+
describe TransSidNoneController, "という trans_sid :none が指定されているコントローラ" do
|
37
|
+
controller_name :trans_sid_none
|
38
|
+
it "の trans_sid_mode は :none" do
|
39
|
+
controller.trans_sid_mode.should == :none
|
40
|
+
end
|
41
|
+
it_should_behave_like "trans_sid が起動しないとき"
|
42
|
+
end
|
43
|
+
|
44
|
+
describe TransSidAlwaysController, "という trans_sid :always が指定されているコントローラ" do
|
45
|
+
controller_name :trans_sid_always
|
46
|
+
before :each do
|
47
|
+
request.session.session_id = "mysessionid"
|
48
|
+
end
|
49
|
+
it "の trans_sid_mode は :always" do
|
50
|
+
controller.trans_sid_mode.should == :always
|
51
|
+
end
|
52
|
+
it_should_behave_like "trans_sid が起動するとき"
|
53
|
+
end
|
54
|
+
|
55
|
+
describe TransSidMobileController, "という trans_sid :mobile が指定されているコントローラ" do
|
56
|
+
controller_name :trans_sid_mobile
|
57
|
+
it "の trans_sid_mode は :mobile" do
|
58
|
+
controller.trans_sid_mode.should == :mobile
|
59
|
+
end
|
60
|
+
end
|
61
|
+
|
62
|
+
def describe_mobile_with_ua(user_agent, &block)
|
63
|
+
describe("trans_sid :mobile が指定されているコントローラに #{user_agent} からアクセスしたとき") do
|
64
|
+
controller_name :trans_sid_mobile
|
65
|
+
before do
|
66
|
+
request.user_agent = user_agent
|
67
|
+
end
|
68
|
+
instance_eval(&block)
|
69
|
+
end
|
70
|
+
end
|
71
|
+
|
72
|
+
describe_mobile_with_ua "DoCoMo/2.0 SH902i(c100;TB;W24H12)" do
|
73
|
+
it_should_behave_like "trans_sid が起動するとき"
|
74
|
+
end
|
75
|
+
|
76
|
+
describe_mobile_with_ua "J-PHONE/3.0/V301D" do
|
77
|
+
it_should_behave_like "trans_sid が起動するとき"
|
78
|
+
end
|
79
|
+
|
80
|
+
describe_mobile_with_ua "KDDI-CA32 UP.Browser/6.2.0.7.3.129 (GUI) MMP/2.0" do
|
81
|
+
it_should_behave_like "trans_sid が起動しないとき"
|
82
|
+
end
|
83
|
+
|
84
|
+
describe_mobile_with_ua "SoftBank/1.0/910T/TJ001/SN000000000000000 Browser/NetFront/3.3 Profile/MIDP-2.0 Configuration/CLDC-1.1" do
|
85
|
+
it_should_behave_like "trans_sid が起動しないとき"
|
86
|
+
end
|
87
|
+
|
88
|
+
describe_mobile_with_ua "Vodafone/1.0/V903T/TJ001 Browser/VF-Browser/1.0 Profile/MIDP-2.0 Configuration/CLDC-1.1 Ext-J-Profile/JSCL-1.2.2 Ext-V-Profile/VSCL-2.0.0" do
|
89
|
+
it_should_behave_like "trans_sid が起動しないとき"
|
90
|
+
end
|
91
|
+
|
92
|
+
|
93
|
+
describe TransSidAlwaysAndSessionOffController, "という trans_sid :always と session :off を同時に指定しているコントローラ" do
|
94
|
+
controller_name :trans_sid_always_and_session_off
|
95
|
+
it_should_behave_like "trans_sid が起動しないとき"
|
96
|
+
end
|
@@ -0,0 +1,13 @@
|
|
1
|
+
require File.dirname(__FILE__) + '/../spec_helper'
|
2
|
+
|
3
|
+
describe Jpmobile::Helpers do
|
4
|
+
include Jpmobile::Helpers
|
5
|
+
it "docomo_guid_link_to が guid=ON を付けたリンクを生成すること" do
|
6
|
+
docomo_guid_link_to("STRING", :controller => "MyController", :action => "myaction").should == %{<a href="/mycontroller/myaction?guid=ON">STRING</a>}
|
7
|
+
end
|
8
|
+
|
9
|
+
it "softbank_location_link_to がリンク先にパラメータを含んでいても正常に動作すること" do
|
10
|
+
# http://d.hatena.ne.jp/mizincogrammer/20090123/1232702067
|
11
|
+
softbank_location_link_to("STRING", :controller => "MyController", :action => "myaction", :p => "param").should == %{<a href="location:auto?url=http://test.host/mycontroller/myaction&p=param">STRING</a>}
|
12
|
+
end
|
13
|
+
end
|
@@ -0,0 +1,165 @@
|
|
1
|
+
gem 'test-unit', '1.2.3' if RUBY_VERSION.to_f >= 1.9
|
2
|
+
|
3
|
+
# Don't load rspec if running "rake gems:*"
|
4
|
+
unless ARGV.any? {|a| a =~ /^gems/}
|
5
|
+
|
6
|
+
begin
|
7
|
+
require 'spec/rake/spectask'
|
8
|
+
rescue MissingSourceFile
|
9
|
+
module Spec
|
10
|
+
module Rake
|
11
|
+
class SpecTask
|
12
|
+
def initialize(name)
|
13
|
+
task name do
|
14
|
+
# if rspec-rails is a configured gem, this will output helpful material and exit ...
|
15
|
+
require File.expand_path(File.dirname(__FILE__) + "/../../config/environment")
|
16
|
+
|
17
|
+
# ... otherwise, do this:
|
18
|
+
raise <<-MSG
|
19
|
+
|
20
|
+
#{"*" * 80}
|
21
|
+
* You are trying to run an rspec rake task defined in
|
22
|
+
* #{__FILE__},
|
23
|
+
* but rspec can not be found in vendor/gems, vendor/plugins or system gems.
|
24
|
+
#{"*" * 80}
|
25
|
+
MSG
|
26
|
+
end
|
27
|
+
end
|
28
|
+
end
|
29
|
+
end
|
30
|
+
end
|
31
|
+
end
|
32
|
+
|
33
|
+
Rake.application.instance_variable_get('@tasks').delete('default')
|
34
|
+
|
35
|
+
spec_prereq = File.exist?(File.join(RAILS_ROOT, 'config', 'database.yml')) ? "db:test:prepare" : :noop
|
36
|
+
task :noop do
|
37
|
+
end
|
38
|
+
|
39
|
+
task :default => :spec
|
40
|
+
task :stats => "spec:statsetup"
|
41
|
+
|
42
|
+
desc "Run all specs in spec directory (excluding plugin specs)"
|
43
|
+
Spec::Rake::SpecTask.new(:spec => spec_prereq) do |t|
|
44
|
+
t.spec_opts = ['--options', "\"#{RAILS_ROOT}/spec/spec.opts\""]
|
45
|
+
t.spec_files = FileList['spec/**/*/*_spec.rb']
|
46
|
+
end
|
47
|
+
|
48
|
+
namespace :spec do
|
49
|
+
desc "Run all specs in spec directory with RCov (excluding plugin specs)"
|
50
|
+
Spec::Rake::SpecTask.new(:rcov) do |t|
|
51
|
+
t.spec_opts = ['--options', "\"#{RAILS_ROOT}/spec/spec.opts\""]
|
52
|
+
t.spec_files = FileList['spec/**/*/*_spec.rb']
|
53
|
+
t.rcov = true
|
54
|
+
t.rcov_opts = lambda do
|
55
|
+
IO.readlines("#{RAILS_ROOT}/spec/rcov.opts").map {|l| l.chomp.split " "}.flatten
|
56
|
+
end
|
57
|
+
end
|
58
|
+
|
59
|
+
desc "Print Specdoc for all specs (excluding plugin specs)"
|
60
|
+
Spec::Rake::SpecTask.new(:doc) do |t|
|
61
|
+
t.spec_opts = ["--format", "specdoc", "--dry-run"]
|
62
|
+
t.spec_files = FileList['spec/**/*/*_spec.rb']
|
63
|
+
end
|
64
|
+
|
65
|
+
desc "Print Specdoc for all plugin examples"
|
66
|
+
Spec::Rake::SpecTask.new(:plugin_doc) do |t|
|
67
|
+
t.spec_opts = ["--format", "specdoc", "--dry-run"]
|
68
|
+
t.spec_files = FileList['vendor/plugins/**/spec/**/*/*_spec.rb'].exclude('vendor/plugins/rspec/*')
|
69
|
+
end
|
70
|
+
|
71
|
+
[:models, :controllers, :views, :helpers, :lib].each do |sub|
|
72
|
+
desc "Run the code examples in spec/#{sub}"
|
73
|
+
Spec::Rake::SpecTask.new(sub => spec_prereq) do |t|
|
74
|
+
t.spec_opts = ['--options', "\"#{RAILS_ROOT}/spec/spec.opts\""]
|
75
|
+
t.spec_files = FileList["spec/#{sub}/**/*_spec.rb"]
|
76
|
+
end
|
77
|
+
end
|
78
|
+
|
79
|
+
desc "Run the code examples in vendor/plugins (except RSpec's own)"
|
80
|
+
Spec::Rake::SpecTask.new(:plugins => spec_prereq) do |t|
|
81
|
+
t.spec_opts = ['--options', "\"#{RAILS_ROOT}/spec/spec.opts\""]
|
82
|
+
t.spec_files = FileList['vendor/plugins/**/spec/**/*/*_spec.rb'].exclude('vendor/plugins/rspec/*').exclude("vendor/plugins/rspec-rails/*")
|
83
|
+
end
|
84
|
+
|
85
|
+
namespace :plugins do
|
86
|
+
desc "Runs the examples for rspec_on_rails"
|
87
|
+
Spec::Rake::SpecTask.new(:rspec_on_rails) do |t|
|
88
|
+
t.spec_opts = ['--options', "\"#{RAILS_ROOT}/spec/spec.opts\""]
|
89
|
+
t.spec_files = FileList['vendor/plugins/rspec-rails/spec/**/*/*_spec.rb']
|
90
|
+
end
|
91
|
+
end
|
92
|
+
|
93
|
+
# Setup specs for stats
|
94
|
+
task :statsetup do
|
95
|
+
require 'code_statistics'
|
96
|
+
::STATS_DIRECTORIES << %w(Model\ specs spec/models) if File.exist?('spec/models')
|
97
|
+
::STATS_DIRECTORIES << %w(View\ specs spec/views) if File.exist?('spec/views')
|
98
|
+
::STATS_DIRECTORIES << %w(Controller\ specs spec/controllers) if File.exist?('spec/controllers')
|
99
|
+
::STATS_DIRECTORIES << %w(Helper\ specs spec/helpers) if File.exist?('spec/helpers')
|
100
|
+
::STATS_DIRECTORIES << %w(Library\ specs spec/lib) if File.exist?('spec/lib')
|
101
|
+
::STATS_DIRECTORIES << %w(Routing\ specs spec/lib) if File.exist?('spec/routing')
|
102
|
+
::CodeStatistics::TEST_TYPES << "Model specs" if File.exist?('spec/models')
|
103
|
+
::CodeStatistics::TEST_TYPES << "View specs" if File.exist?('spec/views')
|
104
|
+
::CodeStatistics::TEST_TYPES << "Controller specs" if File.exist?('spec/controllers')
|
105
|
+
::CodeStatistics::TEST_TYPES << "Helper specs" if File.exist?('spec/helpers')
|
106
|
+
::CodeStatistics::TEST_TYPES << "Library specs" if File.exist?('spec/lib')
|
107
|
+
::CodeStatistics::TEST_TYPES << "Routing specs" if File.exist?('spec/routing')
|
108
|
+
end
|
109
|
+
|
110
|
+
namespace :db do
|
111
|
+
namespace :fixtures do
|
112
|
+
desc "Load fixtures (from spec/fixtures) into the current environment's database. Load specific fixtures using FIXTURES=x,y. Load from subdirectory in test/fixtures using FIXTURES_DIR=z."
|
113
|
+
task :load => :environment do
|
114
|
+
ActiveRecord::Base.establish_connection(Rails.env)
|
115
|
+
base_dir = File.join(Rails.root, 'spec', 'fixtures')
|
116
|
+
fixtures_dir = ENV['FIXTURES_DIR'] ? File.join(base_dir, ENV['FIXTURES_DIR']) : base_dir
|
117
|
+
|
118
|
+
require 'active_record/fixtures'
|
119
|
+
(ENV['FIXTURES'] ? ENV['FIXTURES'].split(/,/).map {|f| File.join(fixtures_dir, f) } : Dir.glob(File.join(fixtures_dir, '*.{yml,csv}'))).each do |fixture_file|
|
120
|
+
Fixtures.create_fixtures(File.dirname(fixture_file), File.basename(fixture_file, '.*'))
|
121
|
+
end
|
122
|
+
end
|
123
|
+
end
|
124
|
+
end
|
125
|
+
|
126
|
+
namespace :server do
|
127
|
+
daemonized_server_pid = File.expand_path("#{RAILS_ROOT}/tmp/pids/spec_server.pid")
|
128
|
+
|
129
|
+
desc "start spec_server."
|
130
|
+
task :start do
|
131
|
+
if File.exist?(daemonized_server_pid)
|
132
|
+
$stderr.puts "spec_server is already running."
|
133
|
+
else
|
134
|
+
$stderr.puts %Q{Starting up spec_server ...}
|
135
|
+
FileUtils.mkdir_p('tmp/pids') unless test ?d, 'tmp/pids'
|
136
|
+
system("ruby", "script/spec_server", "--daemon", "--pid", daemonized_server_pid)
|
137
|
+
end
|
138
|
+
end
|
139
|
+
|
140
|
+
desc "stop spec_server."
|
141
|
+
task :stop do
|
142
|
+
unless File.exist?(daemonized_server_pid)
|
143
|
+
$stderr.puts "No server running."
|
144
|
+
else
|
145
|
+
$stderr.puts "Shutting down spec_server ..."
|
146
|
+
system("kill", "-s", "TERM", File.read(daemonized_server_pid).strip) &&
|
147
|
+
File.delete(daemonized_server_pid)
|
148
|
+
end
|
149
|
+
end
|
150
|
+
|
151
|
+
desc "restart spec_server."
|
152
|
+
task :restart => [:stop, :start]
|
153
|
+
|
154
|
+
desc "check if spec server is running"
|
155
|
+
task :status do
|
156
|
+
if File.exist?(daemonized_server_pid)
|
157
|
+
$stderr.puts %Q{spec_server is running (PID: #{File.read(daemonized_server_pid).gsub("\n","")})}
|
158
|
+
else
|
159
|
+
$stderr.puts "No server running."
|
160
|
+
end
|
161
|
+
end
|
162
|
+
end
|
163
|
+
end
|
164
|
+
|
165
|
+
end
|
@@ -0,0 +1,47 @@
|
|
1
|
+
# This file is copied to ~/spec when you run 'ruby script/generate rspec'
|
2
|
+
# from the project root directory.
|
3
|
+
ENV["RAILS_ENV"] ||= 'test'
|
4
|
+
require File.dirname(__FILE__) + "/../config/environment" unless defined?(RAILS_ROOT)
|
5
|
+
require 'spec/autorun'
|
6
|
+
require 'spec/rails'
|
7
|
+
|
8
|
+
Spec::Runner.configure do |config|
|
9
|
+
# If you're not using ActiveRecord you should remove these
|
10
|
+
# lines, delete config/database.yml and disable :active_record
|
11
|
+
# in your config/boot.rb
|
12
|
+
config.use_transactional_fixtures = true
|
13
|
+
config.use_instantiated_fixtures = false
|
14
|
+
config.fixture_path = RAILS_ROOT + '/spec/fixtures/'
|
15
|
+
|
16
|
+
# == Fixtures
|
17
|
+
#
|
18
|
+
# You can declare fixtures for each example_group like this:
|
19
|
+
# describe "...." do
|
20
|
+
# fixtures :table_a, :table_b
|
21
|
+
#
|
22
|
+
# Alternatively, if you prefer to declare them only once, you can
|
23
|
+
# do so right here. Just uncomment the next line and replace the fixture
|
24
|
+
# names with your fixtures.
|
25
|
+
#
|
26
|
+
# config.global_fixtures = :table_a, :table_b
|
27
|
+
#
|
28
|
+
# If you declare global fixtures, be aware that they will be declared
|
29
|
+
# for all of your examples, even those that don't use them.
|
30
|
+
#
|
31
|
+
# You can also declare which fixtures to use (for example fixtures for test/fixtures):
|
32
|
+
#
|
33
|
+
# config.fixture_path = RAILS_ROOT + '/spec/fixtures/'
|
34
|
+
#
|
35
|
+
# == Mock Framework
|
36
|
+
#
|
37
|
+
# RSpec uses it's own mocking framework by default. If you prefer to
|
38
|
+
# use mocha, flexmock or RR, uncomment the appropriate line:
|
39
|
+
#
|
40
|
+
# config.mock_with :mocha
|
41
|
+
# config.mock_with :flexmock
|
42
|
+
# config.mock_with :rr
|
43
|
+
#
|
44
|
+
# == Notes
|
45
|
+
#
|
46
|
+
# For more information take a look at Spec::Runner::Configuration and Spec::Runner
|
47
|
+
end
|
@@ -0,0 +1,38 @@
|
|
1
|
+
ENV["RAILS_ENV"] = "test"
|
2
|
+
require File.expand_path(File.dirname(__FILE__) + "/../config/environment")
|
3
|
+
require 'test_help'
|
4
|
+
|
5
|
+
class Test::Unit::TestCase
|
6
|
+
# Transactional fixtures accelerate your tests by wrapping each test method
|
7
|
+
# in a transaction that's rolled back on completion. This ensures that the
|
8
|
+
# test database remains unchanged so your fixtures don't have to be reloaded
|
9
|
+
# between every test method. Fewer database queries means faster tests.
|
10
|
+
#
|
11
|
+
# Read Mike Clark's excellent walkthrough at
|
12
|
+
# http://clarkware.com/cgi/blosxom/2005/10/24#Rails10FastTesting
|
13
|
+
#
|
14
|
+
# Every Active Record database supports transactions except MyISAM tables
|
15
|
+
# in MySQL. Turn off transactional fixtures in this case; however, if you
|
16
|
+
# don't care one way or the other, switching from MyISAM to InnoDB tables
|
17
|
+
# is recommended.
|
18
|
+
#
|
19
|
+
# The only drawback to using transactional fixtures is when you actually
|
20
|
+
# need to test transactions. Since your test is bracketed by a transaction,
|
21
|
+
# any transactions started in your code will be automatically rolled back.
|
22
|
+
self.use_transactional_fixtures = true
|
23
|
+
|
24
|
+
# Instantiated fixtures are slow, but give you @david where otherwise you
|
25
|
+
# would need people(:david). If you don't want to migrate your existing
|
26
|
+
# test cases which use the @david style and don't mind the speed hit (each
|
27
|
+
# instantiated fixtures translates to a database query per test method),
|
28
|
+
# then set this back to true.
|
29
|
+
self.use_instantiated_fixtures = false
|
30
|
+
|
31
|
+
# Setup all fixtures in test/fixtures/*.(yml|csv) for all tests in alphabetical order.
|
32
|
+
#
|
33
|
+
# Note: You'll currently still have to declare fixtures explicitly in integration tests
|
34
|
+
# -- they do not yet inherit this setting
|
35
|
+
fixtures :all
|
36
|
+
|
37
|
+
# Add more helper methods to be used by all tests here...
|
38
|
+
end
|
@@ -0,0 +1,7 @@
|
|
1
|
+
Copyright (c) 2006 Yohji Shidara
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
4
|
+
|
5
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
6
|
+
|
7
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
@@ -19,7 +19,7 @@
|
|
19
19
|
=== pluginとしてインストールする場合
|
20
20
|
|
21
21
|
リリース版:
|
22
|
-
% ./script/plugin install
|
22
|
+
% ./script/plugin install git://github.com/darashi/jpmobile.git -r 'tag x.x.x'
|
23
23
|
(x.x.xはバージョン)
|
24
24
|
|
25
25
|
開発版:
|
@@ -64,28 +64,19 @@ RAILS_ROOT/config/environment.rb の Rails::Initializer.run do |config| 〜 end
|
|
64
64
|
end
|
65
65
|
|
66
66
|
class MobileController < ApplicationController
|
67
|
-
|
68
|
-
|
69
|
-
def index
|
70
|
-
end
|
71
|
-
|
72
|
-
private
|
73
|
-
def to_sjis
|
74
|
-
@headers["Content-Type"] = "text/html; charset=Shift_JIS"
|
75
|
-
response.body = response.body.tosjis
|
76
|
-
end
|
67
|
+
mobile_filter
|
77
68
|
end
|
78
69
|
|
79
70
|
|
80
71
|
=== 携帯電話viewの自動振分け
|
81
72
|
DoCoMo携帯電話からアクセスすると、
|
82
|
-
* index_mobile_docomo.
|
83
|
-
* index_mobile.
|
84
|
-
* index.
|
73
|
+
* index_mobile_docomo.html.erb
|
74
|
+
* index_mobile.html.erb
|
75
|
+
* index.html.erb
|
85
76
|
の順でテンプレートを検索し、最初に見付かったテンプレートが利用される。
|
86
|
-
Auの場合は、index_mobile_au.
|
77
|
+
Auの場合は、index_mobile_au.html.erb、Softbankの場合はindex_mobile_softbank.html.erbが最初に検索される。
|
87
78
|
|
88
|
-
BUG: 現状、上記の例では index.
|
79
|
+
BUG: 現状、上記の例では index.html.erb が存在しない場合に振り分けが行われない(ダミーファイルを置くことで回避可能)。
|
89
80
|
|
90
81
|
==== キャリアの識別
|
91
82
|
|
@@ -146,7 +137,7 @@ BUG: 現状、上記の例では index.rhtml が存在しない場合に振り
|
|
146
137
|
キャリアが公開しているIPアドレス帯域からのアクセスか判定する。
|
147
138
|
request.mobile.valid_ip?
|
148
139
|
|
149
|
-
=== セッションIDの付与(
|
140
|
+
=== セッションIDの付与(Trans SID)
|
150
141
|
==== Cookie非対応携帯だけに付与する
|
151
142
|
class MyController
|
152
143
|
trans_sid
|
@@ -157,6 +148,13 @@ BUG: 現状、上記の例では index.rhtml が存在しない場合に振り
|
|
157
148
|
trans_sid :always
|
158
149
|
end
|
159
150
|
|
151
|
+
trans_sid 機能を使う場合には cookie session store を使用することができません。
|
152
|
+
trans_sid を使用する際には、例えば environment.rb で
|
153
|
+
config.action_controller.session_store = :active_record_store
|
154
|
+
として active_record_store を使用します。
|
155
|
+
このとき ApplicationController において protect_from_forgery の :secret を指定するか、
|
156
|
+
あるいは protect_from_forgery を解除する必要があるでしょう。
|
157
|
+
|
160
158
|
=== 端末の画面サイズ
|
161
159
|
request.mobile.display で Jpmobile::Display クラスのインスタンスが返る。
|
162
160
|
画面幅 <%= request.mobile.display.width %>
|