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