Commit 0b907bbd0b20a87e6eeac82afc7c6f75b5e6e5a9
Committed by
Antonio Terceiro
1 parent
30b741ff
Exists in
master
and in
28 other branches
ActionItem1230: fixed misuse of generate_url
Showing
11 changed files
with
42 additions
and
29 deletions
Show diff stats
app/helpers/display_helper.rb
... | ... | @@ -2,7 +2,7 @@ module DisplayHelper |
2 | 2 | |
3 | 3 | def link_to_product(product, opts={}) |
4 | 4 | return _('No product') unless product |
5 | - target = product.enterprise.enabled? ? product.enterprise.generate_url(:controller => 'catalog', :action => 'show', :id => product) : product.enterprise.url | |
5 | + target = product.enterprise.enabled? ? product.enterprise.public_profile_url.merge(:controller => 'catalog', :action => 'show', :id => product) : product.enterprise.url | |
6 | 6 | link_to content_tag( 'span', product.name ), |
7 | 7 | target, |
8 | 8 | opts | ... | ... |
app/models/blog_archives_block.rb
... | ... | @@ -22,7 +22,7 @@ class BlogArchivesBlock < Block |
22 | 22 | results << content_tag('li', content_tag('strong', "#{year} (#{results_by_year.size})")) |
23 | 23 | results << "<ul class='#{year}-archive'>" |
24 | 24 | results_by_year.group_by{|i| [ ('%02d' % i.published_at.month()), gettext(MONTHS[i.published_at.month() - 1])]}.sort.reverse.each do |month, results_by_month| |
25 | - results << content_tag('li', link_to("#{month[1]} (#{results_by_month.size})", owner.generate_url(:controller => 'content_viewer', :action => 'view_page', :page => [owner.blog.path], :year => year, :month => month[0]))) | |
25 | + results << content_tag('li', link_to("#{month[1]} (#{results_by_month.size})", owner.blog.url.merge(:year => year, :month => month[0]))) | |
26 | 26 | end |
27 | 27 | results << "</ul>" |
28 | 28 | end | ... | ... |
app/models/product.rb
... | ... | @@ -60,7 +60,7 @@ class Product < ActiveRecord::Base |
60 | 60 | end |
61 | 61 | |
62 | 62 | def url |
63 | - enterprise.generate_url(:controller => 'catalog', :action => 'show', :id => id) | |
63 | + enterprise.public_profile_url.merge(:controller => 'catalog', :action => 'show', :id => id) | |
64 | 64 | end |
65 | 65 | |
66 | 66 | def public? | ... | ... |
app/models/products_block.rb
... | ... | @@ -25,7 +25,7 @@ class ProductsBlock < Block |
25 | 25 | end |
26 | 26 | |
27 | 27 | def footer |
28 | - link_to(_('View all products'), owner.generate_url(:controller => 'catalog', :action => 'index')) | |
28 | + link_to(_('View all products'), owner.public_profile_url.merge(:controller => 'catalog', :action => 'index')) | |
29 | 29 | end |
30 | 30 | |
31 | 31 | settings_items :product_ids, Array | ... | ... |
app/models/profile.rb
app/models/tags_block.rb
... | ... | @@ -24,7 +24,7 @@ class TagsBlock < Block |
24 | 24 | block_title(title) + |
25 | 25 | "\n<div class='tag_cloud'>\n"+ |
26 | 26 | tag_cloud( tags, :id, |
27 | - owner.generate_url(:controller => 'profile', :action => 'tag'), | |
27 | + owner.public_profile_url.merge(:controller => 'profile', :action => 'tag'), | |
28 | 28 | :max_size => 16, :min_size => 9 ) + |
29 | 29 | "\n</div><!-- end class='tag_cloud' -->\n"; |
30 | 30 | end | ... | ... |
test/functional/search_controller_test.rb
... | ... | @@ -992,6 +992,15 @@ class SearchControllerTest < Test::Unit::TestCase |
992 | 992 | assert_no_tag :tag => 'div', :attributes => {:id => 'wizard-steps'} |
993 | 993 | end |
994 | 994 | |
995 | + should 'find products when enterprises has own hostname' do | |
996 | + ent = Enterprise.create!(:name => 'teste', :identifier => 'teste') | |
997 | + ent.domains << Domain.new(:name => 'testent.com'); ent.save! | |
998 | + prod = ent.products.create!(:name => 'a beautiful product') | |
999 | + get 'index', :query => 'beautiful', :find_in => ['products'] | |
1000 | + assert_includes assigns(:results)[:products], prod | |
1001 | + end | |
1002 | + | |
1003 | + | |
995 | 1004 | ################################################################## |
996 | 1005 | ################################################################## |
997 | 1006 | ... | ... |
test/unit/product_test.rb
... | ... | @@ -112,15 +112,12 @@ class ProductTest < Test::Unit::TestCase |
112 | 112 | should 'provide url' do |
113 | 113 | product = Product.new |
114 | 114 | |
115 | - result = mock | |
116 | - | |
117 | 115 | enterprise = Enterprise.new |
118 | - enterprise.expects(:generate_url).with(:controller => 'catalog', :action => 'show', :id => 999).returns(result) | |
116 | + enterprise.expects(:public_profile_url).returns({}) | |
119 | 117 | |
120 | 118 | product.expects(:id).returns(999) |
121 | 119 | product.expects(:enterprise).returns(enterprise) |
122 | - | |
123 | - assert_same result, product.url | |
120 | + assert_equal({:controller => 'catalog', :action => 'show', :id => 999}, product.url) | |
124 | 121 | end |
125 | 122 | |
126 | 123 | should 'categorize also with product categorization' do | ... | ... |
test/unit/products_block_test.rb
... | ... | @@ -123,4 +123,16 @@ class ProductsBlockTest < ActiveSupport::TestCase |
123 | 123 | end |
124 | 124 | end |
125 | 125 | |
126 | + should 'generate footer when enterprise has own hostname' do | |
127 | + enterprise = Enterprise.create!(:name => 'testenterprise', :identifier => 'testenterprise') | |
128 | + enterprise.domains << Domain.new(:name => 'sometest.com'); enterprise.save! | |
129 | + enterprise.products.create!(:name => 'product one') | |
130 | + enterprise.products.create!(:name => 'product two') | |
131 | + | |
132 | + block.stubs(:owner).returns(enterprise) | |
133 | + | |
134 | + footer = block.footer | |
135 | + | |
136 | + assert_tag_in_string footer, :tag => 'a', :attributes => { :href => /\/catalog\/testenterprise$/ }, :content => 'View all products' | |
137 | + end | |
126 | 138 | end | ... | ... |
test/unit/profile_test.rb
... | ... | @@ -262,30 +262,18 @@ class ProfileTest < Test::Unit::TestCase |
262 | 262 | assert_equal({ :host => 'mycolivre.net', :profile => 'testprofile', :controller => 'profile', :action => 'index' }, profile.public_profile_url) |
263 | 263 | end |
264 | 264 | |
265 | - should 'generate URL' do | |
266 | - profile = Profile.create!(:name => "Test Profile", :identifier => 'testprofile', :environment_id => create_environment('mycolivre.net').id) | |
267 | - | |
268 | - assert_equal({ :host => 'mycolivre.net', :profile => 'testprofile', :controller => 'profile', :action => 'friends' }, profile.generate_url(:controller => 'profile', :action => 'friends')) | |
269 | - end | |
270 | - | |
271 | - should 'provide URL options' do | |
272 | - profile = Profile.create!(:name => "Test Profile", :identifier => 'testprofile', :environment_id => create_environment('mycolivre.net').id) | |
273 | - | |
274 | - assert_equal({:host => 'mycolivre.net', :profile => 'testprofile'}, profile.url_options) | |
275 | - end | |
276 | - | |
277 | 265 | should "use own domain name instead of environment's for home page url" do |
278 | 266 | profile = Profile.create!(:name => "Test Profile", :identifier => 'testprofile', :environment_id => create_environment('mycolivre.net').id) |
279 | 267 | profile.domains << Domain.new(:name => 'micojones.net') |
280 | 268 | assert_equal({:host => 'micojones.net', :profile => nil, :controller => 'content_viewer', :action => 'view_page', :page => []}, profile.url) |
281 | 269 | end |
282 | 270 | |
283 | - should 'help developers by adding a suitable port to url options' do | |
271 | + should 'help developers by adding a suitable port to url' do | |
284 | 272 | profile = Profile.create!(:name => "Test Profile", :identifier => 'testprofile', :environment_id => create_environment('mycolivre.net').id) |
285 | 273 | |
286 | 274 | Noosfero.expects(:url_options).returns({ :port => 9999 }) |
287 | 275 | |
288 | - ok('Profile#url_options must include port option when running in development mode') { profile.url_options[:port] == 9999 } | |
276 | + ok('Profile#url_options must include port option when running in development mode') { profile.url[:port] == 9999 } | |
289 | 277 | end |
290 | 278 | |
291 | 279 | should 'help developers by adding a suitable port to url options for own domain urls' do | ... | ... |
test/unit/tags_block_test.rb
... | ... | @@ -3,12 +3,12 @@ require File.dirname(__FILE__) + '/../test_helper' |
3 | 3 | class TagsBlockTest < Test::Unit::TestCase |
4 | 4 | |
5 | 5 | def setup |
6 | - user = create_user('testinguser').person | |
7 | - user.articles.build(:name => 'article 1', :tag_list => 'first-tag').save! | |
8 | - user.articles.build(:name => 'article 2', :tag_list => 'first-tag, second-tag').save! | |
9 | - user.articles.build(:name => 'article 3', :tag_list => 'first-tag, second-tag, third-tag').save! | |
6 | + @user = create_user('testinguser').person | |
7 | + @user.articles.build(:name => 'article 1', :tag_list => 'first-tag').save! | |
8 | + @user.articles.build(:name => 'article 2', :tag_list => 'first-tag, second-tag').save! | |
9 | + @user.articles.build(:name => 'article 3', :tag_list => 'first-tag, second-tag, third-tag').save! | |
10 | 10 | |
11 | - box = Box.create!(:owner => user) | |
11 | + box = Box.create!(:owner => @user) | |
12 | 12 | @block = TagsBlock.create!(:box => box) |
13 | 13 | end |
14 | 14 | attr_reader :block |
... | ... | @@ -32,4 +32,9 @@ class TagsBlockTest < Test::Unit::TestCase |
32 | 32 | assert_equal '', block.content |
33 | 33 | end |
34 | 34 | |
35 | + should 'generate links when profile has own hostname' do | |
36 | + @user.domains << Domain.new(:name => 'testuser.net'); @user.save! | |
37 | + assert_match /profile\/testinguser\/tag\/first-tag/, block.content | |
38 | + end | |
39 | + | |
35 | 40 | end | ... | ... |