catarse_wepay 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +8 -0
- data/.rspec +2 -0
- data/.ruby-gemset +1 -0
- data/.ruby-version +1 -0
- data/.travis.yml +14 -0
- data/Gemfile +6 -0
- data/Gemfile.lock +122 -0
- data/MIT-LICENSE +20 -0
- data/README.md +63 -0
- data/Rakefile +36 -0
- data/app/assets/javascripts/catarse_wepay/paypal_form.js +18 -0
- data/app/assets/javascripts/catarse_wepay.js +5 -0
- data/app/controllers/.gitkeep +0 -0
- data/app/controllers/catarse_wepay/wepay_controller.rb +105 -0
- data/app/views/catarse_wepay/wepay/review.html.slim +10 -0
- data/catarse_wepay.gemspec +27 -0
- data/config/initializers/register.rb +14 -0
- data/config/locales/en.yml +17 -0
- data/config/locales/pt.yml +18 -0
- data/config/routes.rb +15 -0
- data/lib/catarse_wepay/engine.rb +6 -0
- data/lib/catarse_wepay/version.rb +3 -0
- data/lib/catarse_wepay.rb +5 -0
- data/lib/tasks/catarse_paypal_express_tasks.rake +4 -0
- data/script/rails +9 -0
- data/spec/controllers/catarse_wepay/wepay_controller_spec.rb +234 -0
- data/spec/spec_helper.rb +65 -0
- data/spec/support/payment_engines.rb +3 -0
- data/test/dummy/README.rdoc +261 -0
- data/test/dummy/Rakefile +7 -0
- data/test/dummy/app/assets/javascripts/application.js +15 -0
- data/test/dummy/app/assets/stylesheets/application.css +13 -0
- data/test/dummy/app/controllers/application_controller.rb +3 -0
- data/test/dummy/app/helpers/application_helper.rb +2 -0
- data/test/dummy/app/mailers/.gitkeep +0 -0
- data/test/dummy/app/models/.gitkeep +0 -0
- data/test/dummy/app/views/layouts/application.html.erb +14 -0
- data/test/dummy/config/application.rb +23 -0
- data/test/dummy/config/boot.rb +10 -0
- data/test/dummy/config/database.example.yml +53 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +29 -0
- data/test/dummy/config/environments/production.rb +80 -0
- data/test/dummy/config/environments/test.rb +36 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/test/dummy/config/initializers/inflections.rb +16 -0
- data/test/dummy/config/initializers/mime_types.rb +5 -0
- data/test/dummy/config/initializers/secret_token.rb +12 -0
- data/test/dummy/config/initializers/session_store.rb +3 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/test/dummy/config/locales/en.yml +5 -0
- data/test/dummy/config/routes.rb +4 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/lib/assets/.gitkeep +0 -0
- data/test/dummy/log/.gitkeep +0 -0
- data/test/dummy/public/404.html +26 -0
- data/test/dummy/public/422.html +26 -0
- data/test/dummy/public/500.html +25 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/dummy/script/rails +6 -0
- metadata +224 -0
@@ -0,0 +1,234 @@
|
|
1
|
+
# encoding: utf-8
|
2
|
+
require 'spec_helper'
|
3
|
+
|
4
|
+
describe CatarseWepay::WepayController do
|
5
|
+
SCOPE = CatarseWepay::WepayController::SCOPE
|
6
|
+
before do
|
7
|
+
PaymentEngines.configuration.stub(:[]).with(:wepay_client_id).and_return('client-id')
|
8
|
+
PaymentEngines.configuration.stub(:[]).with(:wepay_client_secret).and_return('client-secret')
|
9
|
+
PaymentEngines.configuration.stub(:[]).with(:wepay_access_token).and_return('access-token')
|
10
|
+
PaymentEngines.configuration.stub(:[]).with(:wepay_account_id).and_return('account-id')
|
11
|
+
PaymentEngines.stub(:find_payment).and_return(contribution)
|
12
|
+
PaymentEngines.stub(:create_payment_notification)
|
13
|
+
controller.stub(:main_app).and_return(main_app)
|
14
|
+
controller.stub(:current_user).and_return(current_user)
|
15
|
+
controller.stub(:gateway).and_return(gateway)
|
16
|
+
end
|
17
|
+
subject{ response }
|
18
|
+
let(:gateway){ double('gateway') }
|
19
|
+
let(:main_app){ double('main_app') }
|
20
|
+
let(:current_user) { double('current_user') }
|
21
|
+
let(:project){ double('project', id: 1, name: 'test project') }
|
22
|
+
let(:contribution){ double('contribution', {
|
23
|
+
id: 1,
|
24
|
+
key: 'contribution key',
|
25
|
+
payment_id: 'payment id',
|
26
|
+
project: project,
|
27
|
+
pending?: true,
|
28
|
+
value: 10,
|
29
|
+
display_value: 'R$ 10,00',
|
30
|
+
price_in_cents: 1000,
|
31
|
+
user: current_user,
|
32
|
+
payer_name: 'foo',
|
33
|
+
payer_email: 'foo@bar.com',
|
34
|
+
payment_token: 'token',
|
35
|
+
address_street: 'test',
|
36
|
+
address_number: '123',
|
37
|
+
address_complement: '123',
|
38
|
+
address_neighbourhood: '123',
|
39
|
+
address_city: '123',
|
40
|
+
address_state: '123',
|
41
|
+
address_zip_code: '123',
|
42
|
+
address_phone_number: '123',
|
43
|
+
payment_method: 'WePay',
|
44
|
+
payment_token: '508637826'
|
45
|
+
}) }
|
46
|
+
let(:checkout_hash) { {"checkout_id"=>508637826,
|
47
|
+
"account_id"=>21212121,
|
48
|
+
"type"=>"DONATION",
|
49
|
+
"checkout_uri"=>"https://stage.wepay.com/api/checkout/508637826/4e51d293",
|
50
|
+
"short_description"=>"Back project MyProject",
|
51
|
+
"currency"=>"USD",
|
52
|
+
"amount"=>120,
|
53
|
+
"fee_payer"=>"payer",
|
54
|
+
"state"=>"captured",
|
55
|
+
"soft_descriptor"=>"WPY*PluribusFund",
|
56
|
+
"redirect_uri"=>"http://localhost:3000/en/payment/wepay/3/success",
|
57
|
+
"auto_capture"=>true,
|
58
|
+
"app_fee"=>0,
|
59
|
+
"create_time"=>1391132470,
|
60
|
+
"mode"=>"regular",
|
61
|
+
"amount_refunded"=>0,
|
62
|
+
"amount_charged_back"=>0,
|
63
|
+
"gross"=>123.78,
|
64
|
+
"fee"=>3.78,
|
65
|
+
"callback_uri"=>"http://52966c09.ngrok.com/en/payment/wepay/ipn",
|
66
|
+
"tax"=>0,
|
67
|
+
"payer_email"=>"payer@example.com",
|
68
|
+
"payer_name"=>"Payer Name",
|
69
|
+
"dispute_uri"=>
|
70
|
+
"https://stage.wepay.com/dispute/payer_create/633461/6a17d1cff4ec53e29d29"}
|
71
|
+
}
|
72
|
+
describe "POST refund" do
|
73
|
+
before do
|
74
|
+
success_refund = double
|
75
|
+
success_refund.stub(:success?).and_return(true)
|
76
|
+
main_app.should_receive(:admin_backers_path).and_return('admin_backers_path')
|
77
|
+
gateway.should_receive(:call).with("/checkout/refund", "access-token", {:account_id=>"account-id", :checkout_id=>"508637826", :refund_reason=>"The customer changed his mind"}).and_return({'state' => 'refunded'})
|
78
|
+
post :refund, id: contribution.id, use_route: 'catarse_wepay'
|
79
|
+
end
|
80
|
+
it { should redirect_to('admin_backers_path') }
|
81
|
+
end
|
82
|
+
describe "GET review" do
|
83
|
+
before do
|
84
|
+
get :review, id: contribution.id, use_route: 'catarse_wepay'
|
85
|
+
end
|
86
|
+
it{ should render_template(:review) }
|
87
|
+
end
|
88
|
+
describe "POST ipn" do
|
89
|
+
context "when is a valid ipn data" do
|
90
|
+
let(:params) { { use_route: 'catarse_wepay', checkout_id: '1477569800' } }
|
91
|
+
before do
|
92
|
+
gateway.should_receive(:call).with("/checkout", "access-token", {:checkout_id=>"508637826"}).and_return(checkout_hash)
|
93
|
+
contribution.should_receive(:confirm!)
|
94
|
+
contribution.should_receive(:update_attributes).with({
|
95
|
+
payment_service_fee: 3.78,
|
96
|
+
payer_email: 'payer@example.com'
|
97
|
+
})
|
98
|
+
post :ipn, params
|
99
|
+
end
|
100
|
+
its(:status){ should == 200 }
|
101
|
+
its(:body){ should == ' ' }
|
102
|
+
end
|
103
|
+
context "when is not valid ipn data" do
|
104
|
+
let(:params) { { use_route: 'catarse_wepay' } }
|
105
|
+
before do
|
106
|
+
contribution.should_not_receive(:update_attributes)
|
107
|
+
post :ipn, params
|
108
|
+
end
|
109
|
+
its(:status){ should == 500 }
|
110
|
+
its(:body){ should == ' ' }
|
111
|
+
end
|
112
|
+
end
|
113
|
+
describe "POST pay" do
|
114
|
+
before do
|
115
|
+
set_wepay_response
|
116
|
+
post :pay, { id: contribution.id, locale: 'en', use_route: 'catarse_wepay' }
|
117
|
+
end
|
118
|
+
context 'when fail' do
|
119
|
+
let(:set_wepay_response) do
|
120
|
+
gateway.should_receive(:call).with("/checkout/create", "access-token",{
|
121
|
+
account_id: "account-id",
|
122
|
+
amount: "10.0",
|
123
|
+
short_description: "Back project test project",
|
124
|
+
type: 'DONATION',
|
125
|
+
redirect_uri: "http://test.host/catarse_wepay/payment/wepay/1/success",
|
126
|
+
callback_uri: "http://test.host/catarse_wepay/payment/wepay/ipn"
|
127
|
+
}).and_return(checkout_hash.merge('checkout_uri' => nil))
|
128
|
+
main_app.should_receive(:edit_project_backer_path).with(project_id: 1, id: 1).and_return('error url')
|
129
|
+
contribution.should_not_receive(:update_attributes)
|
130
|
+
end
|
131
|
+
it 'should assign flash error' do
|
132
|
+
controller.flash[:failure].should == I18n.t('wepay_error', scope: SCOPE)
|
133
|
+
end
|
134
|
+
it{ should redirect_to 'error url' }
|
135
|
+
end
|
136
|
+
context 'when successul' do
|
137
|
+
let(:set_wepay_response) do
|
138
|
+
gateway.should_receive(:call).with("/checkout/create", "access-token",{
|
139
|
+
account_id: "account-id",
|
140
|
+
amount: "10.0",
|
141
|
+
short_description: "Back project test project",
|
142
|
+
type: 'DONATION',
|
143
|
+
redirect_uri: "http://test.host/catarse_wepay/payment/wepay/1/success",
|
144
|
+
callback_uri: "http://test.host/catarse_wepay/payment/wepay/ipn"
|
145
|
+
}).and_return(checkout_hash)
|
146
|
+
contribution.should_receive(:update_attributes).with({
|
147
|
+
payment_method: "WePay",
|
148
|
+
payment_token: 508637826
|
149
|
+
})
|
150
|
+
end
|
151
|
+
it{ should redirect_to 'https://stage.wepay.com/api/checkout/508637826/4e51d293' }
|
152
|
+
end
|
153
|
+
end
|
154
|
+
describe "GET success" do
|
155
|
+
let(:params){{ id: contribution.id, use_route: 'catarse_wepay' }}
|
156
|
+
before do
|
157
|
+
set_redirect_expectations
|
158
|
+
get :success, params
|
159
|
+
end
|
160
|
+
context "when purchase is authorized" do
|
161
|
+
let(:set_redirect_expectations) do
|
162
|
+
gateway.should_receive(:call).with("/checkout", "access-token", {:checkout_id=>"508637826"}).and_return(checkout_hash.merge('state' => 'authorized'))
|
163
|
+
main_app.
|
164
|
+
should_receive(:project_backer_path).
|
165
|
+
with(project_id: contribution.project.id, id: contribution.id).
|
166
|
+
and_return('back url')
|
167
|
+
end
|
168
|
+
it{ should redirect_to 'back url' }
|
169
|
+
it 'should assign flash message' do
|
170
|
+
controller.flash[:success].should == I18n.t('success', scope: SCOPE)
|
171
|
+
end
|
172
|
+
end
|
173
|
+
context 'when wepay purchase is not authorized' do
|
174
|
+
let(:set_redirect_expectations) do
|
175
|
+
gateway.should_receive(:call).with("/checkout", "access-token", {:checkout_id=>"508637826"}).and_return(checkout_hash.merge('state' => 'failed'))
|
176
|
+
main_app.
|
177
|
+
should_receive(:new_project_backer_path).
|
178
|
+
with(contribution.project).
|
179
|
+
and_return('new back url')
|
180
|
+
end
|
181
|
+
it 'should assign flash error' do
|
182
|
+
controller.flash[:failure].should == I18n.t('wepay_error', scope: SCOPE)
|
183
|
+
end
|
184
|
+
it{ should redirect_to 'new back url' }
|
185
|
+
end
|
186
|
+
end
|
187
|
+
describe "#gateway" do
|
188
|
+
before do
|
189
|
+
controller.stub(:gateway).and_call_original
|
190
|
+
PaymentEngines.stub(:configuration).and_return(wepay_config)
|
191
|
+
end
|
192
|
+
subject{ controller.gateway }
|
193
|
+
context "when we have the wepay configuration" do
|
194
|
+
let(:wepay_config) do
|
195
|
+
{ wepay_client_id: 'client-id', wepay_client_secret: 'client-secret'}
|
196
|
+
end
|
197
|
+
before do
|
198
|
+
WePay.should_receive(:new).with('client-id', 'client-secret').and_return('gateway instance')
|
199
|
+
end
|
200
|
+
it{ should == 'gateway instance' }
|
201
|
+
end
|
202
|
+
context "when we do not have the wepay configuration" do
|
203
|
+
let(:wepay_config){ {} }
|
204
|
+
before do
|
205
|
+
WePay.should_not_receive(:new)
|
206
|
+
end
|
207
|
+
it { expect { subject }.to raise_exception }
|
208
|
+
end
|
209
|
+
end
|
210
|
+
describe "#contribution" do
|
211
|
+
subject{ controller.contribution }
|
212
|
+
context "when we have an id" do
|
213
|
+
before do
|
214
|
+
controller.stub(:params).and_return({'id' => '1'})
|
215
|
+
PaymentEngines.should_receive(:find_payment).with(id: '1').and_return(contribution)
|
216
|
+
end
|
217
|
+
it{ should == contribution }
|
218
|
+
end
|
219
|
+
context "when we do not have any id" do
|
220
|
+
before do
|
221
|
+
controller.stub(:params).and_return({})
|
222
|
+
PaymentEngines.should_not_receive(:find_payment)
|
223
|
+
end
|
224
|
+
it{ should be_nil }
|
225
|
+
end
|
226
|
+
context "when we have an checkout_id" do
|
227
|
+
before do
|
228
|
+
controller.stub(:params).and_return({'checkout_id' => '1'})
|
229
|
+
PaymentEngines.should_receive(:find_payment).with(payment_token: '1').and_return(contribution)
|
230
|
+
end
|
231
|
+
it{ should == contribution }
|
232
|
+
end
|
233
|
+
end
|
234
|
+
end
|
data/spec/spec_helper.rb
ADDED
@@ -0,0 +1,65 @@
|
|
1
|
+
# This file is copied to spec/ when you run 'rails generate rspec:install'
|
2
|
+
ENV["RAILS_ENV"] ||= 'test'
|
3
|
+
|
4
|
+
raise "You should create file test/dummy/config/database.yml based on test/dummy/config/database.example.yml" unless File.exists?(File.expand_path("../../test/dummy/config/database.yml", __FILE__))
|
5
|
+
|
6
|
+
require File.expand_path("../../test/dummy/config/environment", __FILE__)
|
7
|
+
require 'rspec/rails'
|
8
|
+
require 'rspec/autorun'
|
9
|
+
|
10
|
+
|
11
|
+
ENGINE_RAILS_ROOT=File.join(File.dirname(__FILE__), '../')
|
12
|
+
|
13
|
+
# Requires supporting ruby files with custom matchers and macros, etc,
|
14
|
+
# in spec/support/ and its subdirectories.
|
15
|
+
Dir[File.join(ENGINE_RAILS_ROOT, 'spec/support/**/*.rb')].each {|f| require f }
|
16
|
+
|
17
|
+
RSpec.configure do |config|
|
18
|
+
# Remove this line if you're not using ActiveRecord or ActiveRecord fixtures
|
19
|
+
config.fixture_path = "#{ENGINE_RAILS_ROOT}/spec/fixtures"
|
20
|
+
|
21
|
+
# If you're not using ActiveRecord, or you'd prefer not to run each of your
|
22
|
+
# examples within a transaction, remove the following line or assign false
|
23
|
+
# instead of true.
|
24
|
+
config.use_transactional_fixtures = true
|
25
|
+
|
26
|
+
# If true, the base class of anonymous controllers will be inferred
|
27
|
+
# automatically. This will be the default behavior in future versions of
|
28
|
+
# rspec-rails.
|
29
|
+
config.infer_base_class_for_anonymous_controllers = false
|
30
|
+
|
31
|
+
# Include Engine routes (needed for Controller specs)
|
32
|
+
config.include CatarseWepay::Engine.routes.url_helpers
|
33
|
+
|
34
|
+
config.before(:each) do
|
35
|
+
PaymentEngines.stub(:configuration).and_return({})
|
36
|
+
end
|
37
|
+
end
|
38
|
+
|
39
|
+
def fixture_file(filename)
|
40
|
+
return nil if filename.nil?
|
41
|
+
file_path = File.expand_path(File.dirname(__FILE__) + '/fixtures/' + filename)
|
42
|
+
File.read(file_path)
|
43
|
+
end
|
44
|
+
|
45
|
+
def wepay_setup_purchase_success_response
|
46
|
+
{ "timestamp"=>"2012-07-23T00:24:21Z", "ack"=>"Success", "correlation_id"=>"dcb8596be51cd", "version"=>"62.0", "build"=>"3332236",
|
47
|
+
"token"=>"EC-49X25168KR2556548", "Timestamp"=>"2012-07-23T00:24:21Z", "Ack"=>"Success", "CorrelationID"=>"dcb8596be51cd",
|
48
|
+
"Version"=>"62.0", "Build"=>"3332236", "Token"=>"EC-49X25168KR2556548" }
|
49
|
+
end
|
50
|
+
|
51
|
+
def wepay_details_response
|
52
|
+
{
|
53
|
+
"transaction_id" => "1234",
|
54
|
+
"checkout_status" => "PaymentActionCompleted",
|
55
|
+
"payment_status" => 'Completed'
|
56
|
+
}
|
57
|
+
end
|
58
|
+
|
59
|
+
def wepay_details_response_refunded
|
60
|
+
{
|
61
|
+
"transaction_id" => "1234",
|
62
|
+
"checkout_status" => "PaymentActionCompleted",
|
63
|
+
"payment_status" => 'Refunded'
|
64
|
+
}
|
65
|
+
end
|
@@ -0,0 +1,261 @@
|
|
1
|
+
== Welcome to Rails
|
2
|
+
|
3
|
+
Rails is a web-application framework that includes everything needed to create
|
4
|
+
database-backed web applications according to the Model-View-Control pattern.
|
5
|
+
|
6
|
+
This pattern splits the view (also called the presentation) into "dumb"
|
7
|
+
templates that are primarily responsible for inserting pre-built data in between
|
8
|
+
HTML tags. The model contains the "smart" domain objects (such as Account,
|
9
|
+
Product, Person, Post) that holds all the business logic and knows how to
|
10
|
+
persist themselves to a database. The controller handles the incoming requests
|
11
|
+
(such as Save New Account, Update Product, Show Post) by manipulating the model
|
12
|
+
and directing data to the view.
|
13
|
+
|
14
|
+
In Rails, the model is handled by what's called an object-relational mapping
|
15
|
+
layer entitled Active Record. This layer allows you to present the data from
|
16
|
+
database rows as objects and embellish these data objects with business logic
|
17
|
+
methods. You can read more about Active Record in
|
18
|
+
link:files/vendor/rails/activerecord/README.html.
|
19
|
+
|
20
|
+
The controller and view are handled by the Action Pack, which handles both
|
21
|
+
layers by its two parts: Action View and Action Controller. These two layers
|
22
|
+
are bundled in a single package due to their heavy interdependence. This is
|
23
|
+
unlike the relationship between the Active Record and Action Pack that is much
|
24
|
+
more separate. Each of these packages can be used independently outside of
|
25
|
+
Rails. You can read more about Action Pack in
|
26
|
+
link:files/vendor/rails/actionpack/README.html.
|
27
|
+
|
28
|
+
|
29
|
+
== Getting Started
|
30
|
+
|
31
|
+
1. At the command prompt, create a new Rails application:
|
32
|
+
<tt>rails new myapp</tt> (where <tt>myapp</tt> is the application name)
|
33
|
+
|
34
|
+
2. Change directory to <tt>myapp</tt> and start the web server:
|
35
|
+
<tt>cd myapp; rails server</tt> (run with --help for options)
|
36
|
+
|
37
|
+
3. Go to http://localhost:3000/ and you'll see:
|
38
|
+
"Welcome aboard: You're riding Ruby on Rails!"
|
39
|
+
|
40
|
+
4. Follow the guidelines to start developing your application. You can find
|
41
|
+
the following resources handy:
|
42
|
+
|
43
|
+
* The Getting Started Guide: http://guides.rubyonrails.org/getting_started.html
|
44
|
+
* Ruby on Rails Tutorial Book: http://www.railstutorial.org/
|
45
|
+
|
46
|
+
|
47
|
+
== Debugging Rails
|
48
|
+
|
49
|
+
Sometimes your application goes wrong. Fortunately there are a lot of tools that
|
50
|
+
will help you debug it and get it back on the rails.
|
51
|
+
|
52
|
+
First area to check is the application log files. Have "tail -f" commands
|
53
|
+
running on the server.log and development.log. Rails will automatically display
|
54
|
+
debugging and runtime information to these files. Debugging info will also be
|
55
|
+
shown in the browser on requests from 127.0.0.1.
|
56
|
+
|
57
|
+
You can also log your own messages directly into the log file from your code
|
58
|
+
using the Ruby logger class from inside your controllers. Example:
|
59
|
+
|
60
|
+
class WeblogController < ActionController::Base
|
61
|
+
def destroy
|
62
|
+
@weblog = Weblog.find(params[:id])
|
63
|
+
@weblog.destroy
|
64
|
+
logger.info("#{Time.now} Destroyed Weblog ID ##{@weblog.id}!")
|
65
|
+
end
|
66
|
+
end
|
67
|
+
|
68
|
+
The result will be a message in your log file along the lines of:
|
69
|
+
|
70
|
+
Mon Oct 08 14:22:29 +1000 2007 Destroyed Weblog ID #1!
|
71
|
+
|
72
|
+
More information on how to use the logger is at http://www.ruby-doc.org/core/
|
73
|
+
|
74
|
+
Also, Ruby documentation can be found at http://www.ruby-lang.org/. There are
|
75
|
+
several books available online as well:
|
76
|
+
|
77
|
+
* Programming Ruby: http://www.ruby-doc.org/docs/ProgrammingRuby/ (Pickaxe)
|
78
|
+
* Learn to Program: http://pine.fm/LearnToProgram/ (a beginners guide)
|
79
|
+
|
80
|
+
These two books will bring you up to speed on the Ruby language and also on
|
81
|
+
programming in general.
|
82
|
+
|
83
|
+
|
84
|
+
== Debugger
|
85
|
+
|
86
|
+
Debugger support is available through the debugger command when you start your
|
87
|
+
Mongrel or WEBrick server with --debugger. This means that you can break out of
|
88
|
+
execution at any point in the code, investigate and change the model, and then,
|
89
|
+
resume execution! You need to install ruby-debug to run the server in debugging
|
90
|
+
mode. With gems, use <tt>sudo gem install ruby-debug</tt>. Example:
|
91
|
+
|
92
|
+
class WeblogController < ActionController::Base
|
93
|
+
def index
|
94
|
+
@posts = Post.all
|
95
|
+
debugger
|
96
|
+
end
|
97
|
+
end
|
98
|
+
|
99
|
+
So the controller will accept the action, run the first line, then present you
|
100
|
+
with a IRB prompt in the server window. Here you can do things like:
|
101
|
+
|
102
|
+
>> @posts.inspect
|
103
|
+
=> "[#<Post:0x14a6be8
|
104
|
+
@attributes={"title"=>nil, "body"=>nil, "id"=>"1"}>,
|
105
|
+
#<Post:0x14a6620
|
106
|
+
@attributes={"title"=>"Rails", "body"=>"Only ten..", "id"=>"2"}>]"
|
107
|
+
>> @posts.first.title = "hello from a debugger"
|
108
|
+
=> "hello from a debugger"
|
109
|
+
|
110
|
+
...and even better, you can examine how your runtime objects actually work:
|
111
|
+
|
112
|
+
>> f = @posts.first
|
113
|
+
=> #<Post:0x13630c4 @attributes={"title"=>nil, "body"=>nil, "id"=>"1"}>
|
114
|
+
>> f.
|
115
|
+
Display all 152 possibilities? (y or n)
|
116
|
+
|
117
|
+
Finally, when you're ready to resume execution, you can enter "cont".
|
118
|
+
|
119
|
+
|
120
|
+
== Console
|
121
|
+
|
122
|
+
The console is a Ruby shell, which allows you to interact with your
|
123
|
+
application's domain model. Here you'll have all parts of the application
|
124
|
+
configured, just like it is when the application is running. You can inspect
|
125
|
+
domain models, change values, and save to the database. Starting the script
|
126
|
+
without arguments will launch it in the development environment.
|
127
|
+
|
128
|
+
To start the console, run <tt>rails console</tt> from the application
|
129
|
+
directory.
|
130
|
+
|
131
|
+
Options:
|
132
|
+
|
133
|
+
* Passing the <tt>-s, --sandbox</tt> argument will rollback any modifications
|
134
|
+
made to the database.
|
135
|
+
* Passing an environment name as an argument will load the corresponding
|
136
|
+
environment. Example: <tt>rails console production</tt>.
|
137
|
+
|
138
|
+
To reload your controllers and models after launching the console run
|
139
|
+
<tt>reload!</tt>
|
140
|
+
|
141
|
+
More information about irb can be found at:
|
142
|
+
link:http://www.rubycentral.org/pickaxe/irb.html
|
143
|
+
|
144
|
+
|
145
|
+
== dbconsole
|
146
|
+
|
147
|
+
You can go to the command line of your database directly through <tt>rails
|
148
|
+
dbconsole</tt>. You would be connected to the database with the credentials
|
149
|
+
defined in database.yml. Starting the script without arguments will connect you
|
150
|
+
to the development database. Passing an argument will connect you to a different
|
151
|
+
database, like <tt>rails dbconsole production</tt>. Currently works for MySQL,
|
152
|
+
PostgreSQL and SQLite 3.
|
153
|
+
|
154
|
+
== Description of Contents
|
155
|
+
|
156
|
+
The default directory structure of a generated Ruby on Rails application:
|
157
|
+
|
158
|
+
|-- app
|
159
|
+
| |-- assets
|
160
|
+
| | |-- images
|
161
|
+
| | |-- javascripts
|
162
|
+
| | `-- stylesheets
|
163
|
+
| |-- controllers
|
164
|
+
| |-- helpers
|
165
|
+
| |-- mailers
|
166
|
+
| |-- models
|
167
|
+
| `-- views
|
168
|
+
| `-- layouts
|
169
|
+
|-- config
|
170
|
+
| |-- environments
|
171
|
+
| |-- initializers
|
172
|
+
| `-- locales
|
173
|
+
|-- db
|
174
|
+
|-- doc
|
175
|
+
|-- lib
|
176
|
+
| |-- assets
|
177
|
+
| `-- tasks
|
178
|
+
|-- log
|
179
|
+
|-- public
|
180
|
+
|-- script
|
181
|
+
|-- test
|
182
|
+
| |-- fixtures
|
183
|
+
| |-- functional
|
184
|
+
| |-- integration
|
185
|
+
| |-- performance
|
186
|
+
| `-- unit
|
187
|
+
|-- tmp
|
188
|
+
| `-- cache
|
189
|
+
| `-- assets
|
190
|
+
`-- vendor
|
191
|
+
|-- assets
|
192
|
+
| |-- javascripts
|
193
|
+
| `-- stylesheets
|
194
|
+
`-- plugins
|
195
|
+
|
196
|
+
app
|
197
|
+
Holds all the code that's specific to this particular application.
|
198
|
+
|
199
|
+
app/assets
|
200
|
+
Contains subdirectories for images, stylesheets, and JavaScript files.
|
201
|
+
|
202
|
+
app/controllers
|
203
|
+
Holds controllers that should be named like weblogs_controller.rb for
|
204
|
+
automated URL mapping. All controllers should descend from
|
205
|
+
ApplicationController which itself descends from ActionController::Base.
|
206
|
+
|
207
|
+
app/models
|
208
|
+
Holds models that should be named like post.rb. Models descend from
|
209
|
+
ActiveRecord::Base by default.
|
210
|
+
|
211
|
+
app/views
|
212
|
+
Holds the template files for the view that should be named like
|
213
|
+
weblogs/index.html.erb for the WeblogsController#index action. All views use
|
214
|
+
eRuby syntax by default.
|
215
|
+
|
216
|
+
app/views/layouts
|
217
|
+
Holds the template files for layouts to be used with views. This models the
|
218
|
+
common header/footer method of wrapping views. In your views, define a layout
|
219
|
+
using the <tt>layout :default</tt> and create a file named default.html.erb.
|
220
|
+
Inside default.html.erb, call <% yield %> to render the view using this
|
221
|
+
layout.
|
222
|
+
|
223
|
+
app/helpers
|
224
|
+
Holds view helpers that should be named like weblogs_helper.rb. These are
|
225
|
+
generated for you automatically when using generators for controllers.
|
226
|
+
Helpers can be used to wrap functionality for your views into methods.
|
227
|
+
|
228
|
+
config
|
229
|
+
Configuration files for the Rails environment, the routing map, the database,
|
230
|
+
and other dependencies.
|
231
|
+
|
232
|
+
db
|
233
|
+
Contains the database schema in schema.rb. db/migrate contains all the
|
234
|
+
sequence of Migrations for your schema.
|
235
|
+
|
236
|
+
doc
|
237
|
+
This directory is where your application documentation will be stored when
|
238
|
+
generated using <tt>rake doc:app</tt>
|
239
|
+
|
240
|
+
lib
|
241
|
+
Application specific libraries. Basically, any kind of custom code that
|
242
|
+
doesn't belong under controllers, models, or helpers. This directory is in
|
243
|
+
the load path.
|
244
|
+
|
245
|
+
public
|
246
|
+
The directory available for the web server. Also contains the dispatchers and the
|
247
|
+
default HTML files. This should be set as the DOCUMENT_ROOT of your web
|
248
|
+
server.
|
249
|
+
|
250
|
+
script
|
251
|
+
Helper scripts for automation and generation.
|
252
|
+
|
253
|
+
test
|
254
|
+
Unit and functional tests along with fixtures. When using the rails generate
|
255
|
+
command, template test files will be generated for you and placed in this
|
256
|
+
directory.
|
257
|
+
|
258
|
+
vendor
|
259
|
+
External libraries that the application depends on. Also includes the plugins
|
260
|
+
subdirectory. If the app has frozen rails, those gems also go here, under
|
261
|
+
vendor/rails/. This directory is in the load path.
|
data/test/dummy/Rakefile
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
#!/usr/bin/env rake
|
2
|
+
# Add your own tasks in files placed in lib/tasks ending in .rake,
|
3
|
+
# for example lib/tasks/capistrano.rake, and they will automatically be available to Rake.
|
4
|
+
|
5
|
+
require File.expand_path('../config/application', __FILE__)
|
6
|
+
|
7
|
+
Dummy::Application.load_tasks
|
@@ -0,0 +1,15 @@
|
|
1
|
+
// This is a manifest file that'll be compiled into application.js, which will include all the files
|
2
|
+
// listed below.
|
3
|
+
//
|
4
|
+
// Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts,
|
5
|
+
// or vendor/assets/javascripts of plugins, if any, can be referenced here using a relative path.
|
6
|
+
//
|
7
|
+
// It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
|
8
|
+
// the compiled file.
|
9
|
+
//
|
10
|
+
// WARNING: THE FIRST BLANK LINE MARKS THE END OF WHAT'S TO BE PROCESSED, ANY BLANK LINE SHOULD
|
11
|
+
// GO AFTER THE REQUIRES BELOW.
|
12
|
+
//
|
13
|
+
//= require jquery
|
14
|
+
//= require jquery_ujs
|
15
|
+
//= require_tree .
|
@@ -0,0 +1,13 @@
|
|
1
|
+
/*
|
2
|
+
* This is a manifest file that'll be compiled into application.css, which will include all the files
|
3
|
+
* listed below.
|
4
|
+
*
|
5
|
+
* Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
|
6
|
+
* or vendor/assets/stylesheets of plugins, if any, can be referenced here using a relative path.
|
7
|
+
*
|
8
|
+
* You're free to add application-wide styles to this file and they'll appear at the top of the
|
9
|
+
* compiled file, but it's generally better to create a new file per style scope.
|
10
|
+
*
|
11
|
+
*= require_self
|
12
|
+
*= require_tree .
|
13
|
+
*/
|
File without changes
|
File without changes
|
@@ -0,0 +1,23 @@
|
|
1
|
+
require File.expand_path('../boot', __FILE__)
|
2
|
+
|
3
|
+
require 'rails/all'
|
4
|
+
|
5
|
+
# Require the gems listed in Gemfile, including any gems
|
6
|
+
# you've limited to :test, :development, or :production.
|
7
|
+
Bundler.require(:default, Rails.env)
|
8
|
+
|
9
|
+
module Dummy
|
10
|
+
class Application < Rails::Application
|
11
|
+
# Settings in config/environments/* take precedence over those specified here.
|
12
|
+
# Application configuration should go into files in config/initializers
|
13
|
+
# -- all .rb files in that directory are automatically loaded.
|
14
|
+
|
15
|
+
# Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
|
16
|
+
# Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC.
|
17
|
+
# config.time_zone = 'Central Time (US & Canada)'
|
18
|
+
|
19
|
+
# The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
|
20
|
+
# config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
|
21
|
+
# config.i18n.default_locale = :de
|
22
|
+
end
|
23
|
+
end
|