コード例 #1
0
ファイル: tests.py プロジェクト: zerolugithub/pysolr4
class Test_Facet(object):
    def setUp(self):
        self.solr = Solr('http://localhost:8080/solr/collection1')
        self.solr.update( { 'id' : str(uuid4()), 'name' : 'Mona Lisa', 'type' : 'painting' },
                          { 'id' : str(uuid4()), 'name' : 'Mona Lisa', 'type' : 'painting' },
                          { 'id' : str(uuid4()), 'name' : 'Mona Lisa', 'type' : 'painting' },
                          { 'id' : str(uuid4()), 'name' : 'Mona Lisa', 'type' : 'painting' },
                          { 'id' : str(uuid4()), 'name' : 'American Gothic', 'type' : 'painting' },
                          { 'id' : str(uuid4()), 'name' : 'American Gothic', 'type' : 'painting' },
                          { 'id' : str(uuid4()), 'name' : 'Starry Night', 'type' : 'painting' },
                          { 'id' : str(uuid4()), 'name' : 'The Scream', 'type' : 'painting'  } ).commit()
            
    def tearDown(self):
        self.solr.delete( ('*', '*') ).commit()

    def test_facet_name(self):
        response = self.solr.select( ( 'q', 'name:*' ),
                                     ( 'rows', 0),
                                     ( 'facet', 'true' ),
                                     ( 'facet.field', 'name' ) )
        facet_fields = response.facet_counts['facet_fields']
        names = facet_fields['name']
        names = pairwise_dict(names)
        eq_(names['Mona Lisa'], 4)
        eq_(names['American Gothic'], 2)
        eq_(names['Starry Night'], 1)
        eq_(names['The Scream'], 1)

    def test_facet_type(self):
        response = self.solr.select( ( 'q', '*:*' ),
                                     ( 'rows', 0),
                                     ( 'facet', 'true' ),
                                     ( 'facet.field', 'type' ) )
        facet_fields = response.facet_counts['facet_fields']
        types = facet_fields['type']
        types = pairwise_dict(types)
        eq_(types['painting'], 8)

    def test_facet_name_and_type(self):
        response = self.solr.select( ( 'q', '*:*' ),
                                     ( 'rows', 0),
                                     ( 'facet', 'true' ),
                                     ( 'facet.field', 'name' ),
                                     ( 'facet.field', 'type' ) )
        facet_fields = response.facet_counts['facet_fields']
        names = pairwise_dict(facet_fields['name'])
        eq_(names['Mona Lisa'], 4)
        eq_(names['American Gothic'], 2)
        eq_(names['Starry Night'], 1)
        eq_(names['The Scream'], 1)
        types = facet_fields['type']
        types = pairwise_dict(types)
        eq_(types['painting'], 8)
コード例 #2
0
ファイル: tests.py プロジェクト: zerolugithub/pysolr4
class Test(object):
    def setUp(self):
        self.solr = Solr('http://localhost:8080/solr/collection1')
        self.solr.update( { 'id' : 1 },
                          { 'id' : 2 },
                          { 'id' : 3 },
                          { 'id' : 4 } ).commit()

    def tearDown(self):
        self.solr.delete( ('*', '*') ).commit()

    def test_update(self):
        self.solr.update( { 'id' : 5 } ).commit()
        response = self.solr.select( ('q', '*:*') )
        eq_(len(response.docs), 5)

    def test_commit(self):
        pass

    def test_select(self):
        response = self.solr.select( ('q', 'id:1') )
        eq_(len(response.docs), 1)
        response = self.solr.select( ['q', '*:*'] )
        eq_(len(response.docs), 4)

    def test_get(self):
        response = self.solr.get(1)
        eq_(response.doc['id'], '1')

    def test_delete(self):
        response = self.solr.delete(( 'id', 1 )).commit().select(('q', '*:*'))
        eq_(len(response.docs), 3)

    def test_cores(self):
        response = self.solr.cores()
        ok_('responseHeader' in response and
            'defaultCoreName' in response)

    def test_system(self):
        response = self.solr.system()
        ok_('responseHeader' in response and
            'system' in response)
コード例 #3
0
ファイル: tests.py プロジェクト: zerolugithub/pysolr4
class Test(object):
    def setUp(self):
        self.solr = Solr('http://localhost:8080/solr/collection1')
        self.solr.update({'id': 1}, {'id': 2}, {'id': 3}, {'id': 4}).commit()

    def tearDown(self):
        self.solr.delete(('*', '*')).commit()

    def test_update(self):
        self.solr.update({'id': 5}).commit()
        response = self.solr.select(('q', '*:*'))
        eq_(len(response.docs), 5)

    def test_commit(self):
        pass

    def test_select(self):
        response = self.solr.select(('q', 'id:1'))
        eq_(len(response.docs), 1)
        response = self.solr.select(['q', '*:*'])
        eq_(len(response.docs), 4)

    def test_get(self):
        response = self.solr.get(1)
        eq_(response.doc['id'], '1')

    def test_delete(self):
        response = self.solr.delete(('id', 1)).commit().select(('q', '*:*'))
        eq_(len(response.docs), 3)

    def test_cores(self):
        response = self.solr.cores()
        ok_('responseHeader' in response and 'defaultCoreName' in response)

    def test_system(self):
        response = self.solr.system()
        ok_('responseHeader' in response and 'system' in response)
コード例 #4
0
ファイル: tests.py プロジェクト: zerolugithub/pysolr4
class Test_Facet(object):
    def setUp(self):
        self.solr = Solr('http://localhost:8080/solr/collection1')
        self.solr.update(
            {
                'id': str(uuid4()),
                'name': 'Mona Lisa',
                'type': 'painting'
            }, {
                'id': str(uuid4()),
                'name': 'Mona Lisa',
                'type': 'painting'
            }, {
                'id': str(uuid4()),
                'name': 'Mona Lisa',
                'type': 'painting'
            }, {
                'id': str(uuid4()),
                'name': 'Mona Lisa',
                'type': 'painting'
            }, {
                'id': str(uuid4()),
                'name': 'American Gothic',
                'type': 'painting'
            }, {
                'id': str(uuid4()),
                'name': 'American Gothic',
                'type': 'painting'
            }, {
                'id': str(uuid4()),
                'name': 'Starry Night',
                'type': 'painting'
            }, {
                'id': str(uuid4()),
                'name': 'The Scream',
                'type': 'painting'
            }).commit()

    def tearDown(self):
        self.solr.delete(('*', '*')).commit()

    def test_facet_name(self):
        response = self.solr.select(('q', 'name:*'), ('rows', 0),
                                    ('facet', 'true'), ('facet.field', 'name'))
        facet_fields = response.facet_counts['facet_fields']
        names = facet_fields['name']
        names = pairwise_dict(names)
        eq_(names['Mona Lisa'], 4)
        eq_(names['American Gothic'], 2)
        eq_(names['Starry Night'], 1)
        eq_(names['The Scream'], 1)

    def test_facet_type(self):
        response = self.solr.select(('q', '*:*'), ('rows', 0),
                                    ('facet', 'true'), ('facet.field', 'type'))
        facet_fields = response.facet_counts['facet_fields']
        types = facet_fields['type']
        types = pairwise_dict(types)
        eq_(types['painting'], 8)

    def test_facet_name_and_type(self):
        response = self.solr.select(('q', '*:*'), ('rows', 0),
                                    ('facet', 'true'), ('facet.field', 'name'),
                                    ('facet.field', 'type'))
        facet_fields = response.facet_counts['facet_fields']
        names = pairwise_dict(facet_fields['name'])
        eq_(names['Mona Lisa'], 4)
        eq_(names['American Gothic'], 2)
        eq_(names['Starry Night'], 1)
        eq_(names['The Scream'], 1)
        types = facet_fields['type']
        types = pairwise_dict(types)
        eq_(types['painting'], 8)