Full-Text Search
// Definition
A search mechanism that matches query terms against the full content of indexed documents, not just field-level equality. Testing concerns include: relevance ranking (are the most relevant results first?), partial-word and stemming behaviour, special-character handling, empty query results, very long queries, and search across multiple fields. Also verify performance under load — full-text search is computationally heavier than simple filtering — and that results are consistent when the same search is repeated.
// Related terms
Autocomplete
A UI pattern that suggests completions as the user types, typically backed by a search or lookup endpoint. Testing concerns include: suggestions appearing for partial input, debouncing (requests should not fire on every keystroke), keyboard navigation through suggestions, screen-reader accessibility, and what happens when the backend is slow or returns no results. Also verify that selecting a suggestion correctly populates the target field and that the suggestion list closes on blur or Escape.
Filtering
A query mechanism that returns only records matching specified criteria — by category, date range, status, or user-defined attributes. Testing concerns include: single and combined filters, filters that return zero results, filters with special characters, case sensitivity, AND vs OR logic, and whether filter state is preserved in the URL (enabling deep-linking and back-button behaviour). Also verify that filtered counts match the displayed results and that applying a filter to a paginated list resets to page one.
Pagination
A mechanism for breaking a large result set into discrete pages, returned via page/offset parameters or a cursor. Common bugs include off-by-one errors at page boundaries (last item on page N appearing as first item on page N+1), incorrect total-count values, empty last pages, and results changing between pages when the underlying data is modified mid-session. Test with dataset sizes that exercise boundaries: exactly one page, exactly one item, zero items, and a non-integer number of full pages.