forge-cli 0.1.5 → 0.1.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +6 -14
- data/bin/cucumber +16 -0
- data/bin/erubis +16 -0
- data/bin/htmldiff +16 -0
- data/bin/ldiff +16 -0
- data/bin/rackup +16 -0
- data/bin/rake +16 -0
- data/bin/rdoc +16 -0
- data/bin/ri +16 -0
- data/bin/sprockets +16 -0
- data/bin/thor +16 -0
- data/bin/tilt +16 -0
- data/bin/tt +16 -0
- data/lib/forge-cli/modules/base/manifest.yml +18 -0
- data/lib/forge-cli/modules/base/routes.rb +1 -2
- data/lib/forge-cli/modules/events/routes.rb +6 -1
- data/lib/forge-cli/version.rb +1 -1
- data/lib/forge/Gemfile +2 -0
- data/lib/forge/app/controllers/events_controller.rb +11 -0
- data/lib/forge/app/controllers/pages_controller.rb +1 -1
- data/lib/forge/app/controllers/products_controller.rb +1 -1
- data/lib/forge/app/views/forge/dispatches/_form.html.haml +0 -13
- data/lib/forge/app/views/forge/events/_form.html.haml +14 -10
- data/lib/forge/app/views/forge/posts/_form.html.haml +2 -2
- data/lib/forge/app/views/forge/products/_form.html.haml +10 -4
- data/lib/forge/config/routes.rb +8 -3
- data/lib/forge/features/authentication.feature +8 -0
- data/lib/forge/features/step_definitions/web_steps.rb +24 -0
- data/lib/forge/features/support/env.rb +60 -0
- data/lib/forge/features/support/paths.rb +20 -0
- data/lib/forge/lib/assets/javascripts/forge/features/asset_uploads.js.erb +1 -1
- data/lib/forge/lib/generators/forge/scaffold/templates/controller_spec.rb +48 -48
- data/lib/forge/lib/generators/forge/scaffold_small/templates/controller_spec.rb +42 -42
- data/lib/forge/spec/controllers/forge/banners_controller_spec.rb +47 -47
- data/lib/forge/spec/controllers/forge/dispatches_controller_spec.rb +45 -45
- data/lib/forge/spec/controllers/forge/events_controller_spec.rb +45 -45
- data/lib/forge/spec/controllers/forge/galleries_controller_spec.rb +44 -44
- data/lib/forge/spec/controllers/forge/orders_controller_spec.rb +45 -45
- data/lib/forge/spec/controllers/forge/pages_controller_spec.rb +46 -46
- data/lib/forge/spec/controllers/forge/post_categories_controller_spec.rb +41 -41
- data/lib/forge/spec/controllers/forge/posts_controller_spec.rb +45 -45
- data/lib/forge/spec/controllers/forge/product_categories_controller_spec.rb +42 -42
- data/lib/forge/spec/controllers/forge/products_controller_spec.rb +47 -47
- data/lib/forge/spec/controllers/forge/sales_controller_spec.rb +45 -45
- data/lib/forge/spec/controllers/forge/subscriber_groups_controller_spec.rb +45 -45
- data/lib/forge/spec/controllers/forge/subscribers_controller_spec.rb +40 -40
- data/lib/forge/spec/controllers/forge/tax_rates_controller_spec.rb +41 -41
- data/lib/forge/spec/controllers/forge/users_controller_spec.rb +58 -58
- data/lib/forge/spec/controllers/forge/videos_controller_spec.rb +9 -9
- data/lib/forge/spec/models/reorderable_spec.rb +5 -5
- metadata +31 -21
- data/lib/forge/config/database.yml +0 -24
- data/lib/forge/config/deploy.rb +0 -53
- data/lib/forge/config/dispatch_daemon.yml +0 -23
- data/lib/forge/config/s3.yml +0 -19
- data/lib/forge/log/development.log +0 -2
- data/lib/forge/script/dispatch_daemon_fetcher +0 -28
@@ -4,24 +4,24 @@ describe Forge::OrdersController do
|
|
4
4
|
describe "As an admin" do
|
5
5
|
fixtures :users, :roles
|
6
6
|
before do
|
7
|
-
controller.stub
|
7
|
+
controller.stub(:current_user).and_return(users(:admin))
|
8
8
|
end
|
9
|
-
|
9
|
+
|
10
10
|
# NEW
|
11
11
|
describe "GET orders/new" do
|
12
12
|
before do
|
13
13
|
get :new
|
14
14
|
end
|
15
|
-
|
15
|
+
|
16
16
|
it "should assign @order" do
|
17
17
|
assigns[:order].should_not be_nil
|
18
18
|
end
|
19
|
-
|
19
|
+
|
20
20
|
it "should render the new template" do
|
21
21
|
response.should render_template('new')
|
22
22
|
end
|
23
23
|
end
|
24
|
-
|
24
|
+
|
25
25
|
# EDIT
|
26
26
|
describe "GET orders/:id/edit" do
|
27
27
|
before do
|
@@ -29,172 +29,172 @@ describe Forge::OrdersController do
|
|
29
29
|
Order.should_receive(:find).with("1").and_return(@order)
|
30
30
|
get :edit, :id => 1
|
31
31
|
end
|
32
|
-
|
32
|
+
|
33
33
|
it "should assign @order" do
|
34
34
|
assigns[:order].should == @order
|
35
35
|
end
|
36
|
-
|
36
|
+
|
37
37
|
it "should render the edit template" do
|
38
38
|
response.should render_template('edit')
|
39
39
|
end
|
40
40
|
end
|
41
|
-
|
41
|
+
|
42
42
|
|
43
43
|
# CREATE
|
44
44
|
describe "POST orders/" do
|
45
45
|
def do_create
|
46
46
|
post :create, :order => {}
|
47
47
|
end
|
48
|
-
|
49
|
-
describe "with valid attributes" do
|
48
|
+
|
49
|
+
describe "with valid attributes" do
|
50
50
|
before do
|
51
51
|
@order = mock_model(Order, :save => true)
|
52
|
-
Order.stub
|
52
|
+
Order.stub(:new).and_return(@order)
|
53
53
|
end
|
54
|
-
|
54
|
+
|
55
55
|
it "should assign @order" do
|
56
56
|
do_create
|
57
57
|
assigns[:order].should == @order
|
58
58
|
end
|
59
|
-
|
59
|
+
|
60
60
|
it "should set the flash notice" do
|
61
61
|
do_create
|
62
62
|
flash[:notice].should_not be_nil
|
63
63
|
end
|
64
|
-
|
64
|
+
|
65
65
|
it "should redirect to the index" do
|
66
66
|
do_create
|
67
67
|
response.should redirect_to(forge_orders_path)
|
68
68
|
end
|
69
|
-
|
69
|
+
|
70
70
|
it "should be valid" do
|
71
71
|
@order.should_receive(:save).and_return(:true)
|
72
72
|
do_create
|
73
73
|
end
|
74
74
|
end
|
75
|
-
|
75
|
+
|
76
76
|
describe "with invalid attributes" do
|
77
77
|
before do
|
78
78
|
@order = mock_model(Order, :save => false)
|
79
|
-
Order.stub
|
79
|
+
Order.stub(:new).and_return(@order)
|
80
80
|
end
|
81
|
-
|
81
|
+
|
82
82
|
it "should assign @order" do
|
83
83
|
do_create
|
84
84
|
assigns[:order].should == @order
|
85
85
|
end
|
86
|
-
|
86
|
+
|
87
87
|
it "should not set the flash notice" do
|
88
88
|
do_create
|
89
89
|
flash[:notice].should be_nil
|
90
90
|
end
|
91
|
-
|
91
|
+
|
92
92
|
it "should render the new template" do
|
93
93
|
do_create
|
94
94
|
response.should render_template('new')
|
95
95
|
end
|
96
|
-
|
96
|
+
|
97
97
|
it "should not save" do
|
98
98
|
@order.should_receive(:save).and_return(:false)
|
99
99
|
do_create
|
100
100
|
end
|
101
101
|
end
|
102
102
|
end
|
103
|
-
|
103
|
+
|
104
104
|
# UPDATE
|
105
105
|
describe "PUT orders/:id" do
|
106
106
|
def do_update
|
107
107
|
put :update, :id => "1", :order => {}
|
108
|
-
end
|
109
|
-
|
108
|
+
end
|
109
|
+
|
110
110
|
describe "with valid params" do
|
111
111
|
before(:each) do
|
112
112
|
@order = mock_model(Order, :update_attributes => true)
|
113
|
-
Order.stub
|
113
|
+
Order.stub(:find).with("1").and_return(@order)
|
114
114
|
end
|
115
|
-
|
115
|
+
|
116
116
|
it "should find order and return object" do
|
117
117
|
do_update
|
118
118
|
assigns[:order].should == @order
|
119
119
|
end
|
120
|
-
|
120
|
+
|
121
121
|
it "should update the order object's attributes" do
|
122
122
|
@order.should_receive(:update_attributes)
|
123
123
|
do_update
|
124
124
|
end
|
125
|
-
|
125
|
+
|
126
126
|
it "should redirect to the order index page" do
|
127
127
|
do_update
|
128
128
|
response.should redirect_to(forge_orders_path)
|
129
129
|
end
|
130
130
|
end
|
131
|
-
|
131
|
+
|
132
132
|
describe "with invalid params" do
|
133
133
|
before(:each) do
|
134
134
|
@order = mock_model(Order, :update_attributes => false)
|
135
|
-
Order.stub
|
135
|
+
Order.stub(:find).with("1").and_return(@order)
|
136
136
|
end
|
137
|
-
|
137
|
+
|
138
138
|
it "should find order and return object" do
|
139
139
|
do_update
|
140
140
|
assigns[:order].should == @order
|
141
141
|
end
|
142
|
-
|
142
|
+
|
143
143
|
it "should update the order object's attributes" do
|
144
144
|
@order.should_receive(:update_attributes)
|
145
145
|
do_update
|
146
146
|
end
|
147
|
-
|
147
|
+
|
148
148
|
it "should render the edit form" do
|
149
149
|
do_update
|
150
150
|
response.should render_template('edit')
|
151
151
|
end
|
152
|
-
|
152
|
+
|
153
153
|
it "should not have a flash notice" do
|
154
154
|
do_update
|
155
155
|
flash[:notice].should be_blank
|
156
156
|
end
|
157
157
|
end
|
158
|
-
|
158
|
+
|
159
159
|
end
|
160
|
-
|
160
|
+
|
161
161
|
# DESTROY
|
162
162
|
describe "DELETE /orders/:id" do
|
163
163
|
it "should delete" do
|
164
164
|
@order = mock_model(Order)
|
165
|
-
Order.stub
|
165
|
+
Order.stub(:find).and_return(@order)
|
166
166
|
@order.should_receive(:destroy)
|
167
167
|
delete :destroy, :id => 1
|
168
168
|
end
|
169
169
|
end
|
170
170
|
end
|
171
|
-
|
172
|
-
|
171
|
+
|
172
|
+
|
173
173
|
describe "As someone who's not logged in" do
|
174
174
|
before do
|
175
|
-
controller.stub
|
175
|
+
controller.stub(:current_user).and_return(nil)
|
176
176
|
end
|
177
|
-
|
177
|
+
|
178
178
|
it "should not let you get the new action" do
|
179
179
|
get :new
|
180
180
|
response.should redirect_to('/login')
|
181
181
|
end
|
182
|
-
|
182
|
+
|
183
183
|
it "should not let you get the edit action" do
|
184
184
|
get :edit, :id => 1
|
185
185
|
response.should redirect_to('/login')
|
186
186
|
end
|
187
|
-
|
187
|
+
|
188
188
|
it "should not let you get the create action" do
|
189
189
|
post :create
|
190
190
|
response.should redirect_to('/login')
|
191
191
|
end
|
192
|
-
|
192
|
+
|
193
193
|
it "should not let you get the update action" do
|
194
194
|
put :update, :id => 1
|
195
195
|
response.should redirect_to('/login')
|
196
196
|
end
|
197
|
-
|
197
|
+
|
198
198
|
it "should not let you get the destroy action" do
|
199
199
|
delete :destroy, :id => 1
|
200
200
|
response.should redirect_to('/login')
|
@@ -4,24 +4,24 @@ describe Forge::PagesController do
|
|
4
4
|
describe "As an admin" do
|
5
5
|
fixtures :users, :roles
|
6
6
|
before do
|
7
|
-
controller.stub
|
7
|
+
controller.stub(:current_user).and_return(users(:admin))
|
8
8
|
end
|
9
|
-
|
9
|
+
|
10
10
|
# NEW
|
11
11
|
describe "GET pages/new" do
|
12
12
|
before do
|
13
13
|
get :new
|
14
14
|
end
|
15
|
-
|
15
|
+
|
16
16
|
it "should assign @page" do
|
17
17
|
assigns[:page].should_not be_nil
|
18
18
|
end
|
19
|
-
|
19
|
+
|
20
20
|
it "should render the new template" do
|
21
21
|
response.should render_template('new')
|
22
22
|
end
|
23
23
|
end
|
24
|
-
|
24
|
+
|
25
25
|
# EDIT
|
26
26
|
describe "GET pages/:id/edit" do
|
27
27
|
before do
|
@@ -29,145 +29,145 @@ describe Forge::PagesController do
|
|
29
29
|
Page.should_receive(:find).with("1").and_return(@page)
|
30
30
|
get :edit, :id => 1
|
31
31
|
end
|
32
|
-
|
32
|
+
|
33
33
|
it "should assign @page" do
|
34
34
|
assigns[:page].should == @page
|
35
35
|
end
|
36
|
-
|
36
|
+
|
37
37
|
it "should render the edit template" do
|
38
38
|
response.should render_template('edit')
|
39
39
|
end
|
40
40
|
end
|
41
|
-
|
41
|
+
|
42
42
|
|
43
43
|
# CREATE
|
44
44
|
describe "POST pages/" do
|
45
45
|
def do_create
|
46
46
|
post :create, :page => {}
|
47
47
|
end
|
48
|
-
|
49
|
-
describe "with valid attributes" do
|
48
|
+
|
49
|
+
describe "with valid attributes" do
|
50
50
|
before do
|
51
51
|
@page = mock_model(Page, :save => true)
|
52
|
-
Page.stub
|
52
|
+
Page.stub(:new).and_return(@page)
|
53
53
|
end
|
54
|
-
|
54
|
+
|
55
55
|
it "should assign @page" do
|
56
56
|
do_create
|
57
57
|
assigns[:page].should == @page
|
58
58
|
end
|
59
|
-
|
59
|
+
|
60
60
|
it "should set the flash notice" do
|
61
61
|
do_create
|
62
62
|
flash[:notice].should_not be_nil
|
63
63
|
end
|
64
|
-
|
64
|
+
|
65
65
|
it "should redirect to the index" do
|
66
66
|
do_create
|
67
67
|
response.should redirect_to(forge_pages_path)
|
68
68
|
end
|
69
|
-
|
69
|
+
|
70
70
|
it "should be valid" do
|
71
71
|
@page.should_receive(:save).and_return(:true)
|
72
72
|
do_create
|
73
73
|
end
|
74
74
|
end
|
75
|
-
|
75
|
+
|
76
76
|
describe "with invalid attributes" do
|
77
77
|
before do
|
78
78
|
@page = mock_model(Page, :save => false)
|
79
|
-
Page.stub
|
79
|
+
Page.stub(:new).and_return(@page)
|
80
80
|
end
|
81
|
-
|
81
|
+
|
82
82
|
it "should assign @page" do
|
83
83
|
do_create
|
84
84
|
assigns[:page].should == @page
|
85
85
|
end
|
86
|
-
|
86
|
+
|
87
87
|
it "should not set the flash notice" do
|
88
88
|
do_create
|
89
89
|
flash[:notice].should be_nil
|
90
90
|
end
|
91
|
-
|
91
|
+
|
92
92
|
it "should render the new template" do
|
93
93
|
do_create
|
94
94
|
response.should render_template('new')
|
95
95
|
end
|
96
|
-
|
96
|
+
|
97
97
|
it "should not save" do
|
98
98
|
@page.should_receive(:save).and_return(:false)
|
99
99
|
do_create
|
100
100
|
end
|
101
101
|
end
|
102
102
|
end
|
103
|
-
|
103
|
+
|
104
104
|
# UPDATE
|
105
105
|
describe "PUT pages/:id" do
|
106
106
|
def do_update
|
107
107
|
put :update, :id => "1", :page => {}
|
108
|
-
end
|
109
|
-
|
108
|
+
end
|
109
|
+
|
110
110
|
describe "with valid params" do
|
111
111
|
before(:each) do
|
112
112
|
@page = mock_model(Page, :update_attributes => true)
|
113
|
-
Page.stub
|
113
|
+
Page.stub(:find).with("1").and_return(@page)
|
114
114
|
end
|
115
|
-
|
115
|
+
|
116
116
|
it "should find page and return object" do
|
117
117
|
do_update
|
118
118
|
assigns[:page].should == @page
|
119
119
|
end
|
120
|
-
|
120
|
+
|
121
121
|
it "should update the page object's attributes" do
|
122
122
|
@page.should_receive(:update_attributes)
|
123
123
|
do_update
|
124
124
|
end
|
125
|
-
|
125
|
+
|
126
126
|
it "should redirect to the page index page" do
|
127
127
|
do_update
|
128
128
|
response.should redirect_to(forge_pages_path)
|
129
129
|
end
|
130
130
|
end
|
131
|
-
|
131
|
+
|
132
132
|
describe "with invalid params" do
|
133
133
|
before(:each) do
|
134
134
|
@page = mock_model(Page, :update_attributes => false)
|
135
|
-
Page.stub
|
135
|
+
Page.stub(:find).with("1").and_return(@page)
|
136
136
|
end
|
137
|
-
|
137
|
+
|
138
138
|
it "should find page and return object" do
|
139
139
|
do_update
|
140
140
|
assigns[:page].should == @page
|
141
141
|
end
|
142
|
-
|
142
|
+
|
143
143
|
it "should update the page object's attributes" do
|
144
144
|
@page.should_receive(:update_attributes)
|
145
145
|
do_update
|
146
146
|
end
|
147
|
-
|
147
|
+
|
148
148
|
it "should render the edit form" do
|
149
149
|
do_update
|
150
150
|
response.should render_template('edit')
|
151
151
|
end
|
152
|
-
|
152
|
+
|
153
153
|
it "should not have a flash notice" do
|
154
154
|
do_update
|
155
155
|
flash[:notice].should be_blank
|
156
156
|
end
|
157
157
|
end
|
158
|
-
|
158
|
+
|
159
159
|
end
|
160
|
-
|
160
|
+
|
161
161
|
# DESTROY
|
162
162
|
describe "DELETE /pages/:id" do
|
163
163
|
it "should delete" do
|
164
164
|
@page = mock_model(Page, :name => '')
|
165
|
-
Page.stub
|
165
|
+
Page.stub(:find).and_return(@page)
|
166
166
|
@page.should_receive(:destroy)
|
167
167
|
delete :destroy, :id => 1
|
168
168
|
end
|
169
169
|
end
|
170
|
-
|
170
|
+
|
171
171
|
# REORDER
|
172
172
|
describe "POST /pages/reorder" do
|
173
173
|
it "should call reorder" do
|
@@ -176,33 +176,33 @@ describe Forge::PagesController do
|
|
176
176
|
end
|
177
177
|
end
|
178
178
|
end
|
179
|
-
|
180
|
-
|
179
|
+
|
180
|
+
|
181
181
|
describe "As someone who's not logged in" do
|
182
182
|
before do
|
183
|
-
controller.stub
|
183
|
+
controller.stub(:current_user).and_return(nil)
|
184
184
|
end
|
185
|
-
|
185
|
+
|
186
186
|
it "should not let you get the new action" do
|
187
187
|
get :new
|
188
188
|
response.should redirect_to('/login')
|
189
189
|
end
|
190
|
-
|
190
|
+
|
191
191
|
it "should not let you get the edit action" do
|
192
192
|
get :edit, :id => 1
|
193
193
|
response.should redirect_to('/login')
|
194
194
|
end
|
195
|
-
|
195
|
+
|
196
196
|
it "should not let you get the create action" do
|
197
197
|
post :create
|
198
198
|
response.should redirect_to('/login')
|
199
199
|
end
|
200
|
-
|
200
|
+
|
201
201
|
it "should not let you get the update action" do
|
202
202
|
put :update, :id => 1
|
203
203
|
response.should redirect_to('/login')
|
204
204
|
end
|
205
|
-
|
205
|
+
|
206
206
|
it "should not let you get the destroy action" do
|
207
207
|
delete :destroy, :id => 1
|
208
208
|
response.should redirect_to('/login')
|