Esempio n. 1
0
 def test_use_provided_absolute_url_if_provided(self):
     """
     If an absolute url is passed, use that instead of trying to get the url
     root.
     """
     links = get_collection_links(self.coll, 'http://otherroot/url', 'self', limit=20)
     self.assertEqual(links, [{'href': 'http://otherroot/url?limit=20', 'rel': 'self'}])
Esempio n. 2
0
 def test_rel_None(self):
     """
     Does not include self link if rel is None, even if there is a next
     link, and calculates the next marker by id by default
     """
     links = get_collection_links(self.coll, 'url', None, limit=3)
     self.assertEqual(links,
                      [{'href': 'http://localhost/url?limit=3&marker=3444', 'rel': 'next'}])
Esempio n. 3
0
 def test_no_limit(self, config_value):
     """
     Defaults to config limit if not given
     """
     links = get_collection_links(self.coll, 'url', 'self')
     self.assertEqual(links, [{'href': 'url', 'rel': 'self'},
                              {'href': 'url?marker=3444&limit=3', 'rel': 'next'}])
     config_value.assert_called_once_with('limits.pagination')
Esempio n. 4
0
 def test_limit_collection(self):
     """
     Collection len == limit gives next link also - defaults to calculating
     the next marker by id.
     """
     links = get_collection_links(self.coll, 'url', 'self', limit=3)
     self.assertEqual(links, [{'href': 'http://localhost/url?limit=3', 'rel': 'self'},
                              {'href': 'http://localhost/url?limit=3&marker=3444', 'rel': 'next'}])
Esempio n. 5
0
 def test_big_collection(self):
     """
     Collection len > limit gives next link with marker based on limit
     """
     links = get_collection_links(self.coll, 'url', 'self', limit=2)
     # FIXME: Cannot predict the sequence of marker and limit in URL
     self.assertEqual(links, [{'href': 'url', 'rel': 'self'},
                              {'href': 'url?marker=567&limit=2', 'rel': 'next'}])
Esempio n. 6
0
 def test_big_collection(self):
     """
     Collection len > limit gives next link with marker based on limit -
     defaults to calculating the next marker by id.
     """
     links = get_collection_links(self.coll, 'url', 'self', limit=2)
     self.assertEqual(links, [{'href': 'http://localhost/url?limit=2', 'rel': 'self'},
                              {'href': 'http://localhost/url?limit=2&marker=567', 'rel': 'next'}])
Esempio n. 7
0
 def test_current_marker_in_self_link(self):
     """
     If a current marker is provided it is included in the self link
     """
     links = get_collection_links(self.coll, 'url', 'self', marker='1',
                                  limit=20)
     self.assertEqual(links,
                      [{'href': 'http://localhost/url?limit=20&marker=1', 'rel': 'self'}])
Esempio n. 8
0
 def test_limit_collection(self):
     """
     Collection len == limit gives next link also
     """
     links = get_collection_links(self.coll, 'url', 'self', limit=3)
     # FIXME: Cannot predict the sequence of marker and limit in URL
     self.assertEqual(links, [{'href': 'url', 'rel': 'self'},
                              {'href': 'url?marker=3444&limit=3', 'rel': 'next'}])
Esempio n. 9
0
 def test_small_collection(self):
     """
     Collection len < limit gives self link only. No next link.
     """
     links = get_collection_links(self.coll, 'url', 'self', limit=20)
     self.assertEqual(links, [{
         'href': 'http://localhost/url?limit=20',
         'rel': 'self'
     }])
Esempio n. 10
0
 def test_no_limit(self):
     """
     Defaults to config limit if not given, leaving it off the self URL, and
     calculates the next marker by id by default
     """
     set_config_data({'limits': {'pagination': 3}, 'url_root': 'http://localhost'})
     links = get_collection_links(self.coll, 'url', 'self')
     self.assertEqual(links, [{'href': 'http://localhost/url', 'rel': 'self'},
                              {'href': 'http://localhost/url?limit=3&marker=3444', 'rel': 'next'}])
Esempio n. 11
0
 def test_marker_by_offset_no_current_marker(self):
     """
     When passed ``next_marker_by_offset``, next_marker is the next item offset
     by the limit
     """
     links = get_collection_links(self.coll, 'url', 'self', limit=1,
                                  next_marker=next_marker_by_offset)
     self.assertEqual(links, [{'href': 'http://localhost/url?limit=1', 'rel': 'self'},
                              {'href': 'http://localhost/url?limit=1&marker=1', 'rel': 'next'}])
Esempio n. 12
0
 def test_ignore_url_limit_query_params(self):
     """
     If the limit parameter is provided, it will override the marker params
     in the url
     """
     links = get_collection_links(self.coll, 'url?limit=100&marker=1', 'self',
                                  limit=20)
     self.assertEqual(
         links, [{'href': 'http://localhost/url?limit=20&marker=1', 'rel': 'self'}])
Esempio n. 13
0
 def test_rel_None(self):
     """
     Does not include self link if rel is None, even if there is a next
     link, and calculates the next marker by id by default
     """
     links = get_collection_links(self.coll, 'url', None, limit=3)
     self.assertEqual(links, [{
         'href': 'http://localhost/url?limit=3&marker=3444',
         'rel': 'next'
     }])
Esempio n. 14
0
 def test_passes_additional_query_params(self):
     """
     If there are more query params besides marker and limit,
     ``get_collection_links`` will not destroy them
     """
     links = get_collection_links(self.coll, 'url?hat=black&scarf=hipster', 'self',
                                  limit=1)
     self.assertEqual(
         links,
         [{'href': 'http://localhost/url?hat=black&limit=1&scarf=hipster', 'rel': 'self'},
          {'href': 'http://localhost/url?hat=black&limit=1&marker=23&scarf=hipster',
           'rel': 'next'}])
Esempio n. 15
0
 def test_use_provided_absolute_url_if_provided(self):
     """
     If an absolute url is passed, use that instead of trying to get the url
     root.
     """
     links = get_collection_links(self.coll,
                                  'http://otherroot/url',
                                  'self',
                                  limit=20)
     self.assertEqual(links, [{
         'href': 'http://otherroot/url?limit=20',
         'rel': 'self'
     }])
Esempio n. 16
0
 def test_current_marker_in_self_link(self):
     """
     If a current marker is provided it is included in the self link
     """
     links = get_collection_links(self.coll,
                                  'url',
                                  'self',
                                  marker='1',
                                  limit=20)
     self.assertEqual(links, [{
         'href': 'http://localhost/url?limit=20&marker=1',
         'rel': 'self'
     }])
Esempio n. 17
0
 def test_ignore_url_limit_query_params(self):
     """
     If the limit parameter is provided, it will override the marker params
     in the url
     """
     links = get_collection_links(self.coll,
                                  'url?limit=100&marker=1',
                                  'self',
                                  limit=20)
     self.assertEqual(links, [{
         'href': 'http://localhost/url?limit=20&marker=1',
         'rel': 'self'
     }])
Esempio n. 18
0
 def test_big_collection(self):
     """
     Collection len > limit gives next link with marker based on limit -
     defaults to calculating the next marker by id.
     """
     links = get_collection_links(self.coll, 'url', 'self', limit=2)
     self.assertEqual(links, [{
         'href': 'http://localhost/url?limit=2',
         'rel': 'self'
     }, {
         'href': 'http://localhost/url?limit=2&marker=567',
         'rel': 'next'
     }])
Esempio n. 19
0
 def test_limit_collection(self):
     """
     Collection len == limit gives next link also - defaults to calculating
     the next marker by id.
     """
     links = get_collection_links(self.coll, 'url', 'self', limit=3)
     self.assertEqual(links, [{
         'href': 'http://localhost/url?limit=3',
         'rel': 'self'
     }, {
         'href': 'http://localhost/url?limit=3&marker=3444',
         'rel': 'next'
     }])
Esempio n. 20
0
 def test_marker_by_offset_no_current_marker(self):
     """
     When passed ``next_marker_by_offset``, next_marker is the next item offset
     by the limit
     """
     links = get_collection_links(self.coll,
                                  'url',
                                  'self',
                                  limit=1,
                                  next_marker=next_marker_by_offset)
     self.assertEqual(links, [{
         'href': 'http://localhost/url?limit=1',
         'rel': 'self'
     }, {
         'href': 'http://localhost/url?limit=1&marker=1',
         'rel': 'next'
     }])
Esempio n. 21
0
 def test_passes_additional_query_params(self):
     """
     If there are more query params besides marker and limit,
     ``get_collection_links`` will not destroy them
     """
     links = get_collection_links(self.coll,
                                  'url?hat=black&scarf=hipster',
                                  'self',
                                  limit=1)
     self.assertEqual(links, [{
         'href': 'http://localhost/url?hat=black&limit=1&scarf=hipster',
         'rel': 'self'
     }, {
         'href':
         'http://localhost/url?hat=black&limit=1&marker=23&scarf=hipster',
         'rel': 'next'
     }])
Esempio n. 22
0
        def build_response(body):
            events = []

            for hit in body['hits']['hits']:
                fields = hit['_source']
                event = {'timestamp': fields['@timestamp']}
                for name in AUDIT_LOG_FIELDS.keys():
                    field = fields.get(name)
                    if field is not None:
                        event[name] = field
                events.append(event)

            links = get_collection_links(
                events, request.uri, 'self',
                limit=paginate.get('limit'),
                marker=paginate.get('marker'),
                next_marker=next_marker_by_timestamp)
            return json.dumps({'events': events, 'events_links': links})
Esempio n. 23
0
 def test_no_limit(self):
     """
     Defaults to config limit if not given, leaving it off the self URL, and
     calculates the next marker by id by default
     """
     set_config_data({
         'limits': {
             'pagination': 3
         },
         'url_root': 'http://localhost'
     })
     links = get_collection_links(self.coll, 'url', 'self')
     self.assertEqual(links, [{
         'href': 'http://localhost/url',
         'rel': 'self'
     }, {
         'href': 'http://localhost/url?limit=3&marker=3444',
         'rel': 'next'
     }])
Esempio n. 24
0
 def test_small_collection(self):
     """
     Collection len < limit gives self link only. No next link
     """
     links = get_collection_links(self.coll, 'url', 'self', limit=20)
     self.assertEqual(links, [{'href': 'url', 'rel': 'self'}])
Esempio n. 25
0
 def test_rel_None(self):
     """
     Does not include self link if rel is None
     """
     links = get_collection_links(self.coll, 'url', None, limit=30)
     self.assertEqual(links, [])