mirror of
				https://github.com/peeringdb/peeringdb.git
				synced 2024-05-11 05:55:09 +00:00 
			
		
		
		
	* use new peeringdb client (1.0.0) for pdb_load_data sync (#599) * drop django-mobi for lack of py3/dj2 support (#492) remove django-forms-bootstrap for lack of py3/dj2 support (#492) * black formatted * django2.2 and py3 upgrade (#492) * drop ixlans (#21) ui and api changes * drop local_asn (#168) * org search (#193) * phone number validation (#50) * implement help text tooltips (#228) * Mark own ASN as transit-free (#394) * py3 fix for `pdb_migrate_ixlans` command when writing migration report * pdb_migrate_ixlans: properly handle py3 Runtime error if ixlan dict changes during iteration * set rest DEFAULT_SCHEMA_CLASS to coreapi to fix swagger apidocs fix migration 0027 missing from facsimile manifest * fix swagger doc strings * fix tests that were broken from api doc fixes * fix UniqueFieldValidator for netixlan ipaddress validation that broke during django/drf upgrade * fix org merge tool layout issues * travis config * update pipfile and lock * black formatting * update travis dist * beta mode banner (#411) * add beta banner template (#411) * automatically scheduled sync may not always be on, add a flag that lets us reflect that state in the beta banner message clean up beta banner implementation (#411) * add tests for beta banner (#411)
		
			
				
	
	
		
			189 lines
		
	
	
		
			6.1 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			189 lines
		
	
	
		
			6.1 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
# -*- coding: utf-8 -*-
 | 
						|
"""
 | 
						|
Unit-tests for quick search functionality - note that advanced search is not
 | 
						|
tested here as that is using the PDB API entirely.
 | 
						|
"""
 | 
						|
import re
 | 
						|
import datetime
 | 
						|
 | 
						|
import pytest
 | 
						|
import unidecode
 | 
						|
 | 
						|
from django.test import TestCase, RequestFactory
 | 
						|
 | 
						|
import peeringdb_server.search as search
 | 
						|
import peeringdb_server.models as models
 | 
						|
import peeringdb_server.views as views
 | 
						|
 | 
						|
 | 
						|
class SearchTests(TestCase):
 | 
						|
    """
 | 
						|
    Test quick-search functionality
 | 
						|
    """
 | 
						|
 | 
						|
    @classmethod
 | 
						|
    def create_instance(cls, model, org, asn=1, prefix="Test", accented=False):
 | 
						|
 | 
						|
        kwargs = {}
 | 
						|
        if model.handleref.tag == "net":
 | 
						|
            kwargs = {"asn": asn}
 | 
						|
 | 
						|
        kwargs.update(status="ok", name=u"{} {}".format(prefix, model.handleref.tag))
 | 
						|
 | 
						|
        if accented:
 | 
						|
            kwargs.update(name=u"ãccented {}".format(model.handleref.tag))
 | 
						|
 | 
						|
        if model.handleref.tag != "org":
 | 
						|
            kwargs.update(org=org)
 | 
						|
 | 
						|
        instance = model.objects.create(**kwargs)
 | 
						|
 | 
						|
        if model.handleref.tag == "org":
 | 
						|
            instance.org_id = instance.id
 | 
						|
 | 
						|
        return instance
 | 
						|
 | 
						|
    @classmethod
 | 
						|
    def setUpTestData(cls):
 | 
						|
 | 
						|
        # in case other tests updated the search index through object
 | 
						|
        # creation we need to flush it
 | 
						|
        search.SEARCH_CACHE["search_index"] = {}
 | 
						|
 | 
						|
        cls.instances = {}
 | 
						|
        cls.instances_accented = {}
 | 
						|
        cls.instances_sponsored = {}
 | 
						|
 | 
						|
        # create an instance of each searchable model, so we have something
 | 
						|
        # to search for
 | 
						|
        cls.org = models.Organization.objects.create(name="Parent org")
 | 
						|
        for model in search.searchable_models:
 | 
						|
            cls.instances[model.handleref.tag] = cls.create_instance(model, cls.org)
 | 
						|
            cls.instances_accented[model.handleref.tag] = cls.create_instance(
 | 
						|
                model, cls.org, asn=2, accented=True
 | 
						|
            )
 | 
						|
 | 
						|
        # we also need to test that sponsor ship status comes through
 | 
						|
        # accordingly
 | 
						|
        cls.org_w_sponsorship = models.Organization.objects.create(
 | 
						|
            name="Sponsor Parent org", status="ok"
 | 
						|
        )
 | 
						|
 | 
						|
        now = datetime.datetime.now().replace(tzinfo=models.UTC())
 | 
						|
 | 
						|
        cls.sponsorship = models.Sponsorship.objects.create(
 | 
						|
            start_date=now - datetime.timedelta(days=1),
 | 
						|
            end_date=now + datetime.timedelta(days=1),
 | 
						|
            level=1,
 | 
						|
        )
 | 
						|
        models.SponsorshipOrganization.objects.create(
 | 
						|
            org=cls.org_w_sponsorship, sponsorship=cls.sponsorship
 | 
						|
        )
 | 
						|
 | 
						|
        for model in search.searchable_models:
 | 
						|
            cls.instances_sponsored[model.handleref.tag] = cls.create_instance(
 | 
						|
                model, cls.org_w_sponsorship, asn=3, prefix="Sponsor"
 | 
						|
            )
 | 
						|
 | 
						|
    def test_search(self):
 | 
						|
        """
 | 
						|
        search for entities containing 'Test' - this should return all
 | 
						|
        instances we created during setUp
 | 
						|
        """
 | 
						|
 | 
						|
        rv = search.search("Test")
 | 
						|
        for k, inst in list(self.instances.items()):
 | 
						|
            assert k in rv
 | 
						|
            assert len(rv[k]) == 1
 | 
						|
            assert rv[k][0]["name"] == inst.search_result_name
 | 
						|
            assert rv[k][0]["org_id"] == inst.org_id
 | 
						|
 | 
						|
        rv = search.search("as1")
 | 
						|
        assert len(rv["net"]) == 1
 | 
						|
        assert rv["net"][0]["name"] == self.instances["net"].search_result_name
 | 
						|
        assert rv["net"][0]["org_id"] == self.instances["net"].org_id
 | 
						|
 | 
						|
        rv = search.search("asn1")
 | 
						|
        assert len(rv["net"]) == 1
 | 
						|
        assert rv["net"][0]["name"] == self.instances["net"].search_result_name
 | 
						|
        assert rv["net"][0]["org_id"] == self.instances["net"].org_id
 | 
						|
 | 
						|
    def test_sponsor_badges(self):
 | 
						|
        """
 | 
						|
        Test that the sponsor badges show up in search result
 | 
						|
        """
 | 
						|
 | 
						|
        factory = RequestFactory()
 | 
						|
        request = factory.get("/search", {"q": "Sponsor"})
 | 
						|
        response = views.request_search(request)
 | 
						|
        m = re.findall(
 | 
						|
            re.escape('<a href="/sponsors" class="sponsor silver">'),
 | 
						|
            response.content.decode(),
 | 
						|
        )
 | 
						|
 | 
						|
        assert len(m) == 4
 | 
						|
 | 
						|
    def test_search_case(self):
 | 
						|
        """
 | 
						|
        search for entities containing 'test' - this should return all
 | 
						|
        instances we created during setUp since matching is case-insensitive
 | 
						|
        """
 | 
						|
        rv = search.search("test")
 | 
						|
        for k, inst in list(self.instances.items()):
 | 
						|
            assert k in rv
 | 
						|
            assert len(rv[k]) == 1
 | 
						|
            assert rv[k][0]["name"] == inst.search_result_name
 | 
						|
 | 
						|
    def test_index_updates(self):
 | 
						|
        """
 | 
						|
        test that indexes get updated correctly when objects are created
 | 
						|
        or deleted or updated from pending to ok
 | 
						|
        """
 | 
						|
 | 
						|
        # this object will be status pending and should not be returned in the search
 | 
						|
        # results
 | 
						|
        new_ix_p = models.InternetExchange.objects.create(
 | 
						|
            status="pending", org=self.org, name="Test IU ix"
 | 
						|
        )
 | 
						|
        self.test_search()
 | 
						|
 | 
						|
        # this object will be status ok, and should show up in the index
 | 
						|
        new_ix_o = models.InternetExchange.objects.create(
 | 
						|
            status="ok", org=self.org, name="Test IU P ix"
 | 
						|
        )
 | 
						|
        rv = search.search("test")
 | 
						|
        assert len(rv["ix"]) == 2
 | 
						|
 | 
						|
        # now we switch the first object to ok as well and it as well should show up in the
 | 
						|
        # index
 | 
						|
        new_ix_p.status = "ok"
 | 
						|
        new_ix_p.save()
 | 
						|
        rv = search.search("test")
 | 
						|
        assert len(rv["ix"]) == 3
 | 
						|
 | 
						|
        # finally we delete both and they should disappear again
 | 
						|
        new_ix_p.delete()
 | 
						|
        new_ix_o.delete()
 | 
						|
        self.test_search()
 | 
						|
 | 
						|
    def test_search_unaccent(self):
 | 
						|
        """
 | 
						|
        search for entities containing 'ãccented' using accented and unaccented
 | 
						|
        terms
 | 
						|
        """
 | 
						|
        rv = search.search("accented")
 | 
						|
        for k, inst in list(self.instances_accented.items()):
 | 
						|
            assert k in rv
 | 
						|
            assert len(rv[k]) == 1
 | 
						|
            assert unidecode.unidecode(rv[k][0]["name"]) == unidecode.unidecode(
 | 
						|
                inst.search_result_name
 | 
						|
            )
 | 
						|
 | 
						|
        rv = search.search("ãccented")
 | 
						|
        for k, inst in list(self.instances_accented.items()):
 | 
						|
            assert k in rv
 | 
						|
            assert len(rv[k]) == 1
 | 
						|
            assert unidecode.unidecode(rv[k][0]["name"]) == unidecode.unidecode(
 | 
						|
                inst.search_result_name
 | 
						|
            )
 |