search_controller_test.rb 39.6 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954
require File.dirname(__FILE__) + '/../test_helper'
require 'search_controller'

# Re-raise errors caught by the controller.
class SearchController; def rescue_action(e) raise e end; end

class SearchControllerTest < ActionController::TestCase

  def setup
    TestSolr.enable
    @controller = SearchController.new
    @request    = ActionController::TestRequest.new
    @request.stubs(:ssl?).returns(false)
    @response   = ActionController::TestResponse.new

    @category = Category.create!(:name => 'my category', :environment => Environment.default)

    env = Environment.default
    domain = env.domains.first
    if !domain
      domain = Domain.create!(:name => "127.0.0.1")
      env.domains = [domain]
      env.save!
    end
    domain.google_maps_key = 'ENVIRONMENT_KEY'
    domain.save!

    @product_category = fast_create(ProductCategory)

    # By pass user validation on person creation
    user = mock()
    user.stubs(:id).returns(1)
    user.stubs(:valid?).returns(true)
    user.stubs(:email).returns('some@test.com')
    user.stubs(:save!).returns(true)
    Person.any_instance.stubs(:user).returns(user)

    env.enable_plugin(SolrPlugin)
  end

  def create_article_with_optional_category(name, profile, category = nil)
    fast_create(Article, {:name => name, :profile_id => profile.id }, :search => true, :category => category)
  end

  def create_profile_with_optional_category(klass, name, category = nil, data = {})
    fast_create(klass, { :name => name }.merge(data), :search => true, :category => category)
  end

  def test_local_files_reference
    assert_local_files_reference
  end

  def test_valid_xhtml
    assert_valid_xhtml
  end

  should 'espape xss attack' do
    get 'index', :query => '<wslite>'
    assert_no_tag :tag => 'wslite'
  end

  should 'search only in specified types of content' do
    get :articles, :query => 'something not important'
    assert_equal [:articles], assigns(:searches).keys
  end

  should 'render success in search' do
    get :index, :query => 'something not important'
    assert_response :success
  end

  should 'search for articles' do
    person = fast_create(Person)
    art = create_article_with_optional_category('an article to be found', person)

    get 'articles', :query => 'article to be found'
    assert_includes assigns(:searches)[:articles][:results], art
  end

#  should 'get facets with articles search results' do
#		cat1 = fast_create(Category, :name => 'cat1')
#		cat2 = fast_create(Category, :name => 'cat2')
#    person = fast_create(Person)
#    art = create_article_with_optional_category('an article to be found', person)
#		art.add_category cat1, false
#		art.add_category cat2, true
#		art.save!
#
#    get 'articles', :query => 'article found'
#		assert !assigns(:searches)[:articles].facets.blank?
#		assert assigns(:searches)[:articles].facets['facet_fields']['f_type_facet'][0][0] == 'Article'
#		assert assigns(:searches)[:articles].facets['facet_fields']['f_profile_type_facet'][0][0] == 'Person'
#		assert assigns(:searches)[:articles].facets['facet_fields']['f_category_facet'][0][0] == 'cat1'
#		assert assigns(:searches)[:articles].facets['facet_fields']['f_category_facet'][1][0] == 'cat2'
#  end

	should 'redirect contents to articles' do
    person = fast_create(Person)
    art = create_article_with_optional_category('an article to be found', person)

    get 'contents', :query => 'article found'
		# full description to avoid deprecation warning
    assert_redirected_to :controller => :search, :action => :articles, :query => 'article found'
	end

  # 'assets' outside any category
  should 'list articles in general' do
    person = fast_create(Person)

    art1 = create_article_with_optional_category('one article', person, @category)
    art2 = create_article_with_optional_category('two article', person, @category)

    get :articles

    assert_includes assigns(:searches)[:articles][:results], art1
    assert_includes assigns(:searches)[:articles][:results], art2
  end

  should 'find enterprises' do
    ent = create_profile_with_optional_category(Enterprise, 'teste')
    get :enterprises, :query => 'teste'
    assert_includes assigns(:searches)[:enterprises][:results], ent
#		assert !assigns(:searches)[:enterprises].facets.nil?
  end

  should 'list enterprises in general' do
    ent1 = create_profile_with_optional_category(Enterprise, 'teste 1')
    ent2 = create_profile_with_optional_category(Enterprise, 'teste 2')

    get :enterprises
    assert_includes assigns(:searches)[:enterprises][:results], ent1
    assert_includes assigns(:searches)[:enterprises][:results], ent2
  end

  should 'search for people' do
    p1 = create_user('people_1').person; p1.name = 'a beautiful person'; p1.save!
    get :people, :query => 'beautiful'
    assert_includes assigns(:searches)[:people][:results], p1
  end

#  should 'get facets with people search results' do
#    state = fast_create(State, :name => 'Acre', :acronym => 'AC')
#    city = fast_create(City, :name => 'Rio Branco', :parent_id => state.id)
#    person = Person.create!(:name => 'Hildebrando', :identifier => 'hild', :user_id => fast_create(User).id, :region_id => city.id)
#    cat1 = fast_create(Category, :name => 'cat1')
#    cat2 = fast_create(Category, :name => 'cat2')
#    person.add_category cat1
#    person.add_category cat2
#
#    get 'people', :query => 'Hildebrando'
#
#    assert !assigns(:searches)[:people].facets.blank?
#    assert assigns(:searches)[:people].facets['facet_fields']['f_region_facet'][0][0] == city.id.to_s
#
#    categories_facet = assigns(:searches)[:people].facets['facet_fields']['f_categories_facet']
#    assert_equal 2, categories_facet.count
#    assert_equivalent [cat1.id.to_s, cat2.id.to_s], [categories_facet[0][0], categories_facet[1][0]]
#  end

  # 'assets' menu outside any category
  should 'list people in general' do
    Profile.delete_all

    p1 = create_user('test1').person
    p2 = create_user('test2').person

    get :people

    assert_equivalent [p2,p1], assigns(:searches)[:people][:results]
  end

  should 'find communities' do
    c1 = create_profile_with_optional_category(Community, 'a beautiful community')
    get :communities, :query => 'beautiful'
    assert_includes assigns(:searches)[:communities][:results], c1
#		assert !assigns(:searches)[:communities].facets.nil?
  end

  # 'assets' menu outside any category
  should 'list communities in general' do
    c1 = create_profile_with_optional_category(Community, 'a beautiful community')
    c2 = create_profile_with_optional_category(Community, 'another beautiful community')

    get :communities
    assert_equivalent [c2, c1], assigns(:searches)[:communities][:results]
  end

  should 'search for products' do
    ent = create_profile_with_optional_category(Enterprise, 'teste')
    prod = ent.products.create!(:name => 'a beautiful product', :product_category => @product_category)
    get :products, :query => 'beautiful'
    assert_includes assigns(:searches)[:products][:results], prod
  end

#  should 'get facets with products search results' do
#		state = fast_create(State, :name => 'Acre', :acronym => 'AC')
#		city = fast_create(City, :name => 'Rio Branco', :parent_id => state.id)
#		ent = fast_create(Enterprise, :region_id => city.id)
#    prod = Product.create!(:name => 'Sound System', :enterprise_id => ent.id, :product_category_id => @product_category.id)
#		qualifier1 = fast_create(Qualifier)
#		qualifier2 = fast_create(Qualifier)
#		prod.qualifiers_list = [[qualifier1.id, 0], [qualifier2.id, 0]]
#		prod.qualifiers.reload
#		prod.save!
#
#    get 'products', :query => 'Sound'
#		assert !assigns(:searches)[:products].facets.blank?
#		assert assigns(:searches)[:products].facets['facet_fields']['f_category_facet'][0][0] == @product_category.name
#		assert assigns(:searches)[:products].facets['facet_fields']['f_region_facet'][0][0] == city.id.to_s
#		assert assigns(:searches)[:products].facets['facet_fields']['f_qualifier_facet'][0][0] == "#{qualifier1.id} 0"
#		assert assigns(:searches)[:products].facets['facet_fields']['f_qualifier_facet'][1][0] == "#{qualifier2.id} 0"
#  end

  # 'assets' menu outside any category
#  should 'list products in general without geosearch' do
#    Profile.delete_all
#		SearchController.stubs(:logged_in?).returns(false)
#
#    ent1 = create_profile_with_optional_category(Enterprise, 'teste1')
#    ent2 = create_profile_with_optional_category(Enterprise, 'teste2')
#    prod1 = ent1.products.create!(:name => 'a beautiful product', :product_category => @product_category)
#    prod2 = ent2.products.create!(:name => 'another beautiful product', :product_category => @product_category)
#
#    get :products
#    assert_equivalent [prod2, prod1], assigns(:searches)[:products].docs
#		assert_match 'Highlights', @response.body
#  end

  should 'include extra content supplied by plugins on product asset' do
    class Plugin1 < Noosfero::Plugin
      def asset_product_extras(product)
        lambda {"<span id='plugin1'>This is Plugin1 speaking!</span>"}
      end
    end

    class Plugin2 < Noosfero::Plugin
      def asset_product_extras(product)
        lambda {"<span id='plugin2'>This is Plugin2 speaking!</span>"}
      end
    end

    enterprise = fast_create(Enterprise)
    prod_cat = fast_create(ProductCategory)
    product = fast_create(Product, {:enterprise_id => enterprise.id, :name => "produto1", :product_category_id => prod_cat.id}, :search => true)

    e = Environment.default
    e.enable_plugin(Plugin1.name)
    e.enable_plugin(Plugin2.name)

    get :products, :query => 'produto1'

    assert_tag :tag => 'span', :content => 'This is Plugin1 speaking!', :attributes => {:id => 'plugin1'}
    assert_tag :tag => 'span', :content => 'This is Plugin2 speaking!', :attributes => {:id => 'plugin2'}
  end

  should 'include extra properties of the product supplied by plugins' do
    class Plugin1 < Noosfero::Plugin
      def asset_product_properties(product)
        return { :name => _('Property1'), :content => lambda { link_to(product.name, '/plugin1') } }
      end
    end
    class Plugin2 < Noosfero::Plugin
      def asset_product_properties(product)
        return { :name => _('Property2'), :content => lambda { link_to(product.name, '/plugin2') } }
      end
    end
    enterprise = fast_create(Enterprise)
    prod_cat = fast_create(ProductCategory)
    product = fast_create(Product, {:enterprise_id => enterprise.id, :name => "produto1", :product_category_id => prod_cat.id}, :search => true)

    environment = Environment.default
    environment.enable_plugin(Plugin1.name)
    environment.enable_plugin(Plugin2.name)

    get :products, :query => "produto1"

    assert_tag :tag => 'div', :content => /Property1/, :child => {:tag => 'a', :attributes => {:href => '/plugin1'}, :content => product.name}
    assert_tag :tag => 'div', :content => /Property2/, :child => {:tag => 'a', :attributes => {:href => '/plugin2'}, :content => product.name}
  end

  should 'paginate enterprise listing' do
    @controller.expects(:limit).returns(1)
    ent1 = create_profile_with_optional_category(Enterprise, 'teste 1')
    ent2 = create_profile_with_optional_category(Enterprise, 'teste 2')

    get :enterprises, :page => '2'

    assert_equal 1, assigns(:searches)[:enterprises][:results].size
  end

  should 'display a given category' do
    get :category_index, :category_path => [ 'my-category' ]
    assert_equal @category, assigns(:category)
  end

  should 'not list "Search for ..." in category_index' do
    get :category_index, :category_path => [ 'my-category' ]
    assert_no_tag :content => /Search for ".*" in the whole site/
  end

  should 'not use design blocks' do
    get :index
    assert_no_tag :tag => 'div', :attributes => { :id => 'boxes', :class => 'boxes' }
  end

#  should 'offer text box to enter a new search in general context' do
#    get :index, :query => 'a sample search'
#    assert_tag :tag => 'form', :attributes => { :action => '/search' }, :descendant => {
#      :tag => 'input',
#      :attributes => { :name => 'query', :value => 'a sample search' }
#    }
#  end
#
#  should 'offer text box to enter a new seach in specific context' do
#    get :index, :category_path => [ 'my-category'], :query => 'a sample search'
#    assert_tag :tag => 'form', :attributes => { :action => '/search/index/my-category' }, :descendant => {
#      :tag => 'input',
#      :attributes => { :name => 'query', :value => 'a sample search' }
#    }
#  end

  should 'search in category hierachy' do
    parent = Category.create!(:name => 'Parent Category', :environment => Environment.default)
    child  = Category.create!(:name => 'Child Category', :environment => Environment.default, :parent => parent)

    p = create_profile_with_optional_category(Person, 'test_profile', child)

    get :category_index, :category_path => ['parent-category'], :query => 'test_profile'

    assert_includes assigns(:searches)[:people][:results], p
  end

#  should 'find enterprise by product category' do
#    ent1 = create_profile_with_optional_category(Enterprise, 'test1')
#    prod_cat = ProductCategory.create!(:name => 'pctest', :environment => Environment.default)
#    prod = ent1.products.create!(:name => 'teste', :product_category => prod_cat)
#
#    ent2 = create_profile_with_optional_category(Enterprise, 'test2')
#
#    get :index, :query => prod_cat.name
#
#    assert_includes assigns(:searches)[:enterprises][:results], ent1
#    assert_not_includes assigns(:searches)[:enterprises][:results], ent2
#  end

#  should 'show only results in general search' do
#    ent1 = create_profile_with_optional_category(Enterprise, 'test1')
#    prod_cat = ProductCategory.create!(:name => 'pctest', :environment => Environment.default)
#    prod = ent1.products.create!(:name => 'teste', :product_category => prod_cat)
#
#    ent2 = create_profile_with_optional_category(Enterprise, 'test2')
#
#    get :index, :query => prod_cat.name
#
#		assert assigns(:facets).blank?
#		assert_nil assigns(:searches)[:enterprises].facets
#		assert_nil assigns(:searches)[:products].facets
#	end

  should 'render specific action when only one asset is enabled' do
    environment = Environment.default
		# article is not disabled
    [:enterprises, :people, :communities, :products, :events].select do |key, name|
			environment.enable('disable_asset_' + key.to_s)
		end
    environment.save!
    @controller.stubs(:environment).returns(environment)

    get :index, :query => 'something'

    assert assigns(:searches).has_key?(:articles)
    assert !assigns(:searches).has_key?(:enterprises)
    assert !assigns(:searches).has_key?(:people)
    assert !assigns(:searches).has_key?(:communities)
    assert !assigns(:searches).has_key?(:products)
    assert !assigns(:searches).has_key?(:events)
	end

  should 'search all enabled assets in general search' do
    ent1 = create_profile_with_optional_category(Enterprise, 'test enterprise')
    prod_cat = ProductCategory.create!(:name => 'pctest', :environment => Environment.default)
    prod = ent1.products.create!(:name => 'test product', :product_category => prod_cat)
		art = Article.create!(:name => 'test article', :profile_id => fast_create(Person).id)
		per = Person.create!(:name => 'test person', :identifier => 'test-person', :user_id => fast_create(User).id)
		com = Community.create!(:name => 'test community')
		eve = Event.create!(:name => 'test event', :profile_id => fast_create(Person).id)

    get :index, :query => 'test'

    [:articles, :enterprises, :people, :communities, :products, :events].select do |key, name|
			!@controller.environment.enabled?('disable_asset_' + key.to_s)
		end.each do |asset|
			assert !assigns(:searches)[asset][:results].empty?
		end
	end

  should 'display category image while in directory' do
    parent = Category.create!(:name => 'category1', :environment => Environment.default)
    cat = Category.create!(:name => 'category2', :environment => Environment.default, :parent => parent,
      :image_builder => {:uploaded_data => fixture_file_upload('/files/rails.png', 'image/png')}
    )

    process_delayed_job_queue
    get :category_index, :category_path => [ 'category1', 'category2' ], :query => 'teste'
    assert_tag :tag => 'img', :attributes => { :src => /rails_thumb\.png/ }
  end

  should 'search for events' do
    person = create_user('teste').person
    event = create_event(person, :name => 'an event to be found', :start_date => Date.today)

    get :events, :query => 'event to be found'

    assert_includes assigns(:searches)[:events][:results], event
#		assert !assigns(:searches)[:events].facets.nil?
  end

  should 'return events of the day' do
    person = create_user('someone').person
    ten_days_ago = Date.today - 10.day

    ev1 = create_event(person, :name => 'event 1', :category_ids => [@category.id],	:start_date => ten_days_ago)
    ev2 = create_event(person, :name => 'event 2', :category_ids => [@category.id],	:start_date => Date.today - 2.month)

    get :events, :day => ten_days_ago.day, :month => ten_days_ago.month, :year => ten_days_ago.year
    assert_equal [ev1], assigns(:events_of_the_day)
  end

  should 'return events of the day with category' do
    person = create_user('someone').person
    ten_days_ago = Date.today - 10.day

    ev1 = create_event(person, :name => 'event 1', :category_ids => [@category.id],	:start_date => ten_days_ago)
    ev2 = create_event(person, :name => 'event 2', :start_date => ten_days_ago)

    get :events, :day => ten_days_ago.day, :month => ten_days_ago.month, :year => ten_days_ago.year, :category_path => @category.path.split('/')

    assert_equal [ev1], assigns(:events_of_the_day)
  end

  should 'return events of today when no date specified' do
    person = create_user('someone').person
    ev1 = create_event(person, :name => 'event 1', :category_ids => [@category.id],	:start_date => Date.today)
    ev2 = create_event(person, :name => 'event 2', :category_ids => [@category.id],	:start_date => Date.today - 2.month)

    get :events

    assert_equal [ev1], assigns(:events_of_the_day)
  end

  should 'show events for current month by default' do
    person = create_user('someone').person

    ev1 = create_event(person, :name => 'event 1', :category_ids => [@category.id], 
			:start_date => Date.today + 2.month)
    ev2 = create_event(person, :name => 'event 2', :category_ids => [@category.id], 
			:start_date => Date.today + 2.day)

    get :events

    assert_not_includes assigns(:searches)[:events][:results], ev1
    assert_includes assigns(:searches)[:events][:results], ev2 
  end

  should 'list events for a given month' do
    person = create_user('testuser').person

    create_event(person, :name => 'upcoming event 1', :category_ids => [@category.id], :start_date => Date.new(2008, 1, 25))
    create_event(person, :name => 'upcoming event 2', :category_ids => [@category.id], :start_date => Date.new(2008, 4, 27))

    get :events, :year => '2008', :month => '1'

    assert_equal [ 'upcoming event 1' ], assigns(:searches)[:events][:results].map(&:name)
  end

  %w[ people enterprises articles events communities products ].each do |asset|
    should "render asset-specific template when searching for #{asset}" do
      get "#{asset}"
      assert_template asset
    end
  end

  should 'display only within a product category when specified' do
    prod_cat = ProductCategory.create!(:name => 'prod cat test', :environment => Environment.default)
    ent = create_profile_with_optional_category(Enterprise, 'test ent')

    p = prod_cat.products.create!(:name => 'prod test 1', :enterprise => ent)

    get :products, :product_category => prod_cat.id

    assert_includes assigns(:searches)[:products][:results], p
  end

	# Testing random sequences always have a small chance of failing
#	should 'randomize product display in empty search' do
#    prod_cat = ProductCategory.create!(:name => 'prod cat test', :environment => Environment.default)
#    ent = create_profile_with_optional_category(Enterprise, 'test enterprise')
#		(1..SearchController::LIST_SEARCH_LIMIT+5).each do |n|
#    	fast_create(Product, {:name => "produto #{n}", :enterprise_id => ent.id, :product_category_id => prod_cat.id}, :search => true)
#		end	
#
#		get :products
#		result1 = assigns(:searches)[:products][:results].map(&:id)
#
#		(1..10).each do |n|
#  		get :products
#		end
#		result2 = assigns(:searches)[:products][:results].map(&:id)
#
#		assert_not_equal result1, result2
#	end

#	should 'remove far products by geolocalization empty logged search' do
#    user = create_user('a_logged_user')
#    # trigger geosearch
#		user.person.lat = '1.0'
#		user.person.lng = '1.0'
#		SearchController.any_instance.stubs(:logged_in?).returns(true)
#		SearchController.any_instance.stubs(:current_user).returns(user)
#	
#		cat = fast_create(ProductCategory)
#		ent1 = Enterprise.create!(:name => 'ent1', :identifier => 'ent1', :lat => '1.3', :lng => '1.3')
#    prod1 = Product.create!(:name => 'produto 1', :enterprise_id => ent1.id, :product_category_id => cat.id)
#		ent2 = Enterprise.create!(:name => 'ent2', :identifier => 'ent2', :lat => '2.0', :lng => '2.0')
#    prod2 = Product.create!(:name => 'produto 2', :enterprise_id => ent2.id, :product_category_id => cat.id)
#		ent3 = Enterprise.create!(:name => 'ent3', :identifier => 'ent3', :lat => '1.6', :lng => '1.6')
#    prod3 = Product.create!(:name => 'produto 3', :enterprise_id => ent3.id, :product_category_id => cat.id)
#		ent4 = Enterprise.create!(:name => 'ent4', :identifier => 'ent4', :lat => '10', :lng => '10')
#    prod4 = Product.create!(:name => 'produto 4', :enterprise_id => ent4.id, :product_category_id => cat.id)
#
#		get :products
#		assert_equivalent [prod1, prod3, prod2], assigns(:searches)[:products].docs
#	end

  should 'display properly in conjuntion with a category' do
    cat = Category.create(:name => 'cat', :environment => Environment.default)
    prod_cat1 = ProductCategory.create!(:name => 'prod cat test 1', :environment => Environment.default)
    prod_cat2 = ProductCategory.create!(:name => 'prod cat test 2', :environment => Environment.default, :parent => prod_cat1)
    ent = create_profile_with_optional_category(Enterprise, 'test ent', cat)

    product = prod_cat2.products.create!(:name => 'prod test 1', :enterprise_id => ent.id)

    get :products, :category_path => cat.path.split('/'), :product_category => prod_cat1.id

    assert_includes assigns(:searches)[:products][:results], product
  end

  should 'provide calendar for events' do
    get :events
    assert_equal 0, assigns(:calendar).size % 7
  end

  should 'display current year/month by default as caption of current month' do
    Date.expects(:today).returns(Date.new(2008, 8, 1)).at_least_once

    get :events
    assert_tag :tag => 'table', :attributes => {:class => /current-month/}, :descendant => {:tag => 'caption', :content => /August 2008/}
  end

  should 'found TextileArticle in articles' do
    person = create_user('teste').person
    art = TextileArticle.create!(:name => 'an text_article article to be found', :profile => person)

    get 'articles', :query => 'article to be found'

    assert_includes assigns(:searches)[:articles][:results], art
  end

  should 'show link to article asset in the see all foot link of the articles block in the category page' do
	(1..SearchController::MULTIPLE_SEARCH_LIMIT+1).each do |i|
	  a = create_user("test#{i}").person.articles.create!(:name => "article #{i} to be found")
      a.categories << @category
    end

    get :category_index, :category_path => [ 'my-category' ]
    assert_tag :tag => 'div', :attributes => {:class => /search-results-articles/} , :descendant => {:tag => 'a', :attributes => { :href => '/search/articles/my-category'}}
  end

  should 'display correct title on list communities' do
    get :communities
    assert_tag :tag => 'h1', :content => 'Communities'
  end

  should 'indicate more than the page limit for total_entries' do
    Enterprise.destroy_all
    ('1'..'20').each do |n|
      create_profile_with_optional_category(Enterprise, 'test ' + n)
    end

    get :index, :query => 'test'

    assert_equal 20, assigns(:searches)[:enterprises][:results].total_entries
  end

  should 'find products when enterprises has own hostname' do
    ent = create_profile_with_optional_category(Enterprise, 'teste')
    ent.domains << Domain.new(:name => 'testent.com'); ent.save!
    prod = ent.products.create!(:name => 'a beautiful product', :product_category => @product_category)
    get 'products', :query => 'beautiful'
    assert_includes assigns(:searches)[:products][:results], prod
  end

  should 'add script tag for google maps if searching products' do
    get 'products', :query => 'product', :display => 'map'

    assert_tag :tag => 'script', :attributes => { :src => 'http://maps.google.com/maps/api/js?sensor=true'}
  end

  should 'add script tag for google maps if searching enterprises' do
    ent = create_profile_with_optional_category(Enterprise, 'teste')
    get 'enterprises', :query => 'enterprise', :display => 'map'

    assert_tag :tag => 'script', :attributes => { :src => 'http://maps.google.com/maps/api/js?sensor=true'}
  end

  should 'not add script tag for google maps if searching articles' do
    ent = create_profile_with_optional_category(Enterprise, 'teste')
    get 'articles', :query => 'article', :display => 'map'

    assert_no_tag :tag => 'script', :attributes => { :src => 'http://maps.google.com/maps/api/js?sensor=true'}
  end

  should 'not add script tag for google maps if searching people' do
    get 'people', :query => 'person', :display => 'map'

    assert_no_tag :tag => 'script', :attributes => { :src => 'http://maps.google.com/maps/api/js?sensor=true'}
  end

  should 'not add script tag for google maps if searching communities' do
    get 'communities', :query => 'community', :display => 'map'

    assert_no_tag :tag => 'script', :attributes => { :src => 'http://maps.google.com/maps/api/js?sensor=true'}
  end

  should 'show events of specific day' do
    person = create_user('anotheruser').person
    event = create_event(person, :name => 'Joao Birthday', :start_date => Date.new(2009, 10, 28))

    get :events_by_day, :year => 2009, :month => 10, :day => 28

    assert_tag :tag => 'a', :content => /Joao Birthday/
  end

  should 'ignore filter of events if category not exists' do
    person = create_user('anotheruser').person
    create_event(person, :name => 'Joao Birthday', :start_date => Date.new(2009, 10, 28), :category_ids => [@category.id])
    create_event(person, :name => 'Maria Birthday', :start_date => Date.new(2009, 10, 28))

    id_of_unexistent_category = Category.last.id + 10

    get :events_by_day, :year => 2009, :month => 10, :day => 28, :category_id => id_of_unexistent_category

    assert_tag :tag => 'a', :content => /Joao Birthday/
    assert_tag :tag => 'a', :content => /Maria Birthday/
  end

  should "paginate search of people in groups of #{SearchController::BLOCKS_SEARCH_LIMIT}" do
    Person.delete_all

    1.upto(SearchController::BLOCKS_SEARCH_LIMIT+3).map do |n|
      fast_create Person, {:name => 'Testing person'}
    end

    get :people
    assert_equal SearchController::BLOCKS_SEARCH_LIMIT+3, Person.count
    assert_equal SearchController::BLOCKS_SEARCH_LIMIT, assigns(:searches)[:people][:results].count
    assert_tag :a, '', :attributes => {:class => 'next_page'}
  end

  should 'list all community order by more recent one by default' do
    c1 = create(Community, :name => 'Testing community 1', :created_at => DateTime.now - 2)
    c2 = create(Community, :name => 'Testing community 2', :created_at => DateTime.now - 1)
    c3 = create(Community, :name => 'Testing community 3')

    get :communities
    assert_equal [c3,c2,c1] , assigns(:searches)[:communities][:results]
  end

  should "paginate search of communities in groups of #{SearchController::BLOCKS_SEARCH_LIMIT}" do
    1.upto(SearchController::BLOCKS_SEARCH_LIMIT+3).map do |n|
      fast_create Community, {:name => 'Testing community'}
    end

    get :communities
    assert_equal SearchController::BLOCKS_SEARCH_LIMIT+3, Community.count
    assert_equal SearchController::BLOCKS_SEARCH_LIMIT, assigns(:searches)[:communities][:results].count
    assert_tag :a, '', :attributes => {:class => 'next_page'}
  end

  should 'list all communities filter by more active' do
    person = fast_create(Person)
    c1 = create(Community, :name => 'Testing community 1')
    c2 = create(Community, :name => 'Testing community 2')
    c3 = create(Community, :name => 'Testing community 3')
    ActionTracker::Record.delete_all
    fast_create(ActionTracker::Record, :target_id => c1, :user_type => 'Profile', :user_id => person, :created_at => Time.now)
    fast_create(ActionTracker::Record, :target_id => c2, :user_type => 'Profile', :user_id => person, :created_at => Time.now)
    fast_create(ActionTracker::Record, :target_id => c2, :user_type => 'Profile', :user_id => person, :created_at => Time.now)
    get :communities, :filter => 'more_active'
    assert_equal [c2,c1,c3] , assigns(:searches)[:communities][:results]
  end

  should "only include visible people in more_recent filter" do
    # assuming that all filters behave the same!
    p1 = fast_create(Person, :visible => false)
    get :people, :filter => 'more_recent'
    assert_not_includes assigns(:searches)[:people][:results], p1
  end

  should "only include visible communities in more_recent filter" do
    # assuming that all filters behave the same!
    p1 = fast_create(Community, :visible => false)
    get :communities, :filter => 'more_recent'
    assert_not_includes assigns(:searches)[:communities][:results], p1
  end

#	should 'browse facets when query is not empty' do
#		get :articles, :query => 'something'
#		get :facets_browse, :asset => 'articles', :facet_id => 'f_type'
#		assert_equal assigns(:facet)[:id], 'f_type'
#		get :products, :query => 'something'
#		get :facets_browse, :asset => 'products', :facet_id => 'f_category'
#		assert_equal assigns(:facet)[:id], 'f_category'
#		get :people, :query => 'something'
#		get :facets_browse, :asset => 'people', :facet_id => 'f_region'
#		assert_equal assigns(:facet)[:id], 'f_region'
#	end
#
#	should 'raise exception when facet is invalid' do
#		get :articles, :query => 'something'
#		assert_raise RuntimeError do
#			get :facets_browse, :asset => 'articles', :facet_id => 'f_whatever'
#		end
#	end

	should 'keep old urls working' do
		get :assets, :asset => 'articles'
    assert_redirected_to :controller => :search, :action => :articles
		get :assets, :asset => 'people'
    assert_redirected_to :controller => :search, :action => :people
		get :assets, :asset => 'communities'
    assert_redirected_to :controller => :search, :action => :communities
		get :assets, :asset => 'products'
    assert_redirected_to :controller => :search, :action => :products
		get :assets, :asset => 'enterprises'
    assert_redirected_to :controller => :search, :action => :enterprises
		get :assets, :asset => 'events'
    assert_redirected_to :controller => :search, :action => :events
	end

	should 'show tag cloud' do
		@controller.stubs(:is_cache_expired?).returns(true)
    a = Article.create!(:name => 'my article', :profile_id => fast_create(Person).id)
    a.tag_list = ['one', 'two']
		a.save_tags
		
		get :tags

		assert assigns(:tags)["two"] = 1
		assert assigns(:tags)["one"] = 1
	end

  should 'show tagged content' do
		@controller.stubs(:is_cache_expired?).returns(true)
    a = Article.create!(:name => 'my article', :profile_id => fast_create(Person).id)
    a2 = Article.create!(:name => 'my article 2', :profile_id => fast_create(Person).id)
    a.tag_list = ['one', 'two']
    a2.tag_list = ['two', 'three']
		a.save_tags
    a2.save_tags
		
		get :tag, :tag => 'two'

    assert_equal [a, a2], assigns(:searches)[:tag][:results]

		get :tag, :tag => 'one'

    assert_equal [a], assigns(:searches)[:tag][:results]
  end

  should 'not show assets from other environments' do
    other_env = Environment.create!(:name => 'Another environment')
		p1 = Person.create!(:name => 'Hildebrando', :identifier => 'hild', :user_id => fast_create(User).id, :environment_id => other_env.id)
		p2 = Person.create!(:name => 'Adamastor', :identifier => 'adam', :user_id => fast_create(User).id)
    art1 = Article.create!(:name => 'my article', :profile_id => p1.id)
    art2 = Article.create!(:name => 'my article', :profile_id => p2.id)
    
    get :articles, :query => 'my article'

    assert_equal [art2], assigns(:searches)[:articles][:results]
  end

#  should 'order product results by more recent when requested' do
#		ent = fast_create(Enterprise)
#    prod1 = Product.create!(:name => 'product 1', :enterprise_id => ent.id, :product_category_id => @product_category.id)
#    prod2 = Product.create!(:name => 'product 2', :enterprise_id => ent.id, :product_category_id => @product_category.id)
#    prod3 = Product.create!(:name => 'product 3', :enterprise_id => ent.id, :product_category_id => @product_category.id)
#
#    # change others attrs will make updated_at = Time.now for all
#    Product.record_timestamps = false
#    prod3.update_attribute :updated_at, Time.now-2.days
#    prod1.update_attribute :updated_at, Time.now-1.days
#    prod2.update_attribute :updated_at, Time.now
#    Product.record_timestamps = true
#
#    get :products, :query => 'product', :order_by => :more_recent 
#
#    assert_equal [prod2, prod1, prod3], assigns(:searches)[:products].docs  
#  end
#
#  should 'only list products from enabled enterprises' do
#		ent1 = fast_create(Enterprise, :enabled => true)
#		ent2 = fast_create(Enterprise, :enabled => false)
#    prod1 = Product.create!(:name => 'product 1', :enterprise_id => ent1.id, :product_category_id => @product_category.id)
#    prod2 = Product.create!(:name => 'product 2', :enterprise_id => ent2.id, :product_category_id => @product_category.id)
#
#    get :products, :query => 'product'
#
#    assert_includes assigns(:searches)[:products][:results], prod1
#    assert_not_includes assigns(:searches)[:products][:results], prod2
#  end
#
#  should 'order product results by name when requested' do
#		ent = fast_create(Enterprise)
#    prod1 = Product.create!(:name => 'product 1', :enterprise_id => ent.id, :product_category_id => @product_category.id)
#    prod2 = Product.create!(:name => 'product 2', :enterprise_id => ent.id, :product_category_id => @product_category.id)
#    prod3 = Product.create!(:name => 'product 3', :enterprise_id => ent.id, :product_category_id => @product_category.id)
#
#    prod3.update_attribute :name, 'product A'
#    prod2.update_attribute :name, 'product B'
#    prod1.update_attribute :name, 'product C'
#
#    get :products, :query => 'product', :order_by => :name
#
#    assert_equal [prod3, prod2, prod1], assigns(:searches)[:products].docs  
#  end
#
#	should 'order product results by closest when requested' do
#    user = create_user('a_logged_user')
#		user.person.lat = '1.0'
#		user.person.lng = '1.0'
#    # trigger geosearch
#		SearchController.any_instance.stubs(:logged_in?).returns(true)
#		SearchController.any_instance.stubs(:current_user).returns(user)
#	
#		cat = fast_create(ProductCategory)
#		ent1 = Enterprise.create!(:name => 'ent1', :identifier => 'ent1', :lat => '-5.0', :lng => '-5.0')
#    prod1 = Product.create!(:name => 'product 1', :enterprise_id => ent1.id, :product_category_id => cat.id)
#		ent2 = Enterprise.create!(:name => 'ent2', :identifier => 'ent2', :lat => '2.0', :lng => '2.0')
#    prod2 = Product.create!(:name => 'product 2', :enterprise_id => ent2.id, :product_category_id => cat.id)
#		ent3 = Enterprise.create!(:name => 'ent3', :identifier => 'ent3', :lat => '10.0', :lng => '10.0')
#    prod3 = Product.create!(:name => 'product 3', :enterprise_id => ent3.id, :product_category_id => cat.id)
#
#		get :products, :query => 'product', :order_by => :closest
#		assert_equal [prod2, prod1, prod3], assigns(:searches)[:products].docs
#	end
#
#  
#  should 'order events by name when requested' do
#    person = create_user('someone').person
#    ev1 = create_event(person, :name => 'party B', :category_ids => [@category.id],	:start_date => Date.today - 10.day)
#    ev2 = create_event(person, :name => 'party A', :category_ids => [@category.id],	:start_date => Date.today - 2.month)
#
#    get :events, :query => 'party', :order_by => :name
#
#    assert_equal [ev2, ev1], assigns(:searches)[:events].docs
#  end
#
#  should 'order articles by name when requested' do
#		art1 = Article.create!(:name => 'review C', :profile_id => fast_create(Person).id)
#		art2 = Article.create!(:name => 'review A', :profile_id => fast_create(Person).id)
#		art3 = Article.create!(:name => 'review B', :profile_id => fast_create(Person).id)
#    
#    get :articles, :query => 'review', :order_by => :name
#
#    assert_equal [art2, art3, art1], assigns(:searches)[:articles].docs
#  end

  should 'order articles by more recent' do
    Article.destroy_all
		art1 = Article.create!(:name => 'review C', :profile_id => fast_create(Person).id, :created_at => Time.now-1.days)
		art2 = Article.create!(:name => 'review A', :profile_id => fast_create(Person).id, :created_at => Time.now)
		art3 = Article.create!(:name => 'review B', :profile_id => fast_create(Person).id, :created_at => Time.now-2.days)
    
    get :articles, :filter => :more_recent

    assert_equal [art2, art1, art3], assigns(:searches)[:articles][:results]
  end
  
#  should 'order enterprise results by name when requested' do
#		ent1 = Enterprise.create!(:name => 'Company B', :identifier => 'com_b')
#		ent2 = Enterprise.create!(:name => 'Company A', :identifier => 'com_a')
#		ent3 = Enterprise.create!(:name => 'Company C', :identifier => 'com_c')
#    
#    get :enterprises, :query => 'Company', :order_by => :name
#
#    assert_equal [ent2, ent1, ent3], assigns(:searches)[:enterprises].docs
#  end
#
#  should 'order people results by name when requested' do
#		person1 = Person.create!(:name => 'Deodárbio Silva', :identifier => 'deod', :user_id => fast_create(User).id)
#		person2 = Person.create!(:name => 'Glislange Silva', :identifier => 'glis', :user_id => fast_create(User).id)
#		person3 = Person.create!(:name => 'Ausêncio Silva', :identifier => 'ause', :user_id => fast_create(User).id)
#
#    get :people, :query => 'Silva', :order_by => :name
#    
#    assert_equal [person3, person1, person2], assigns(:searches)[:people].docs 
#  end
#
#  should 'order community results by name when requested' do
#		com1 = Community.create!(:name => 'Yellow Group')
#		com2 = Community.create!(:name => 'Red Group')
#		com3 = Community.create!(:name => 'Green Group')
#
#    get :communities, :query => 'Group', :order_by => :name
#
#    assert_equal [com3, com2, com1], assigns(:searches)[:communities].docs
#  end
#
#  should 'raise error when requested to order by unknown filter' do
#		com1 = Community.create!(:name => 'Yellow Group')
#		com2 = Community.create!(:name => 'Red Group')
#		com3 = Community.create!(:name => 'Green Group')
#
#    assert_raise RuntimeError do
#      get :communities, :query => 'Group', :order_by => :something
#    end
#  end

  should 'add highlighted CSS class around a highlighted product' do
    enterprise = fast_create(Enterprise)
    product = Product.create!(:name => 'Enter Sandman', :enterprise_id => enterprise.id, :product_category_id => @product_category.id, :highlighted => true)
    get :products
    assert_tag :tag => 'li', :attributes => { :class => 'search-product-item highlighted' }, :content => /Enter Sandman/
  end

  should 'do not add highlighted CSS class around an ordinary product' do
    enterprise = fast_create(Enterprise)
    product = Product.create!(:name => 'Holier Than Thou', :enterprise_id => enterprise.id, :product_category_id => @product_category.id, :highlighted => false)
    get :products
    assert_no_tag :tag => 'li', :attributes => { :class => 'search-product-item highlighted' }, :content => /Holier Than Thou/
  end

  ##################################################################
  ##################################################################

  def create_event(profile, options)
    ev = Event.new({ :name => 'some event', :start_date => Date.new(2008,1,1) }.merge(options))
    ev.profile = profile
    ev.save!
    ev
  end

end