Tests in the Collate UI
A Test Definition is a generic definition of a test. This Test Definition then gets specified in a Test Case. This Test Case is where the parameter(s) of a Test Definition are specified. In this section, you will learn what tests Collate currently supports and how to configure them in the Collate UI.Table Tests
Table tests validate the structure and shape of a table as a whole, rather than the values inside any single column. Use them to catch problems like an unexpected change in row or column count, a missing or renamed column, stale data, or two tables falling out of sync after a migration or replication job.Table Row Count to Equal
This test checks that a table always has exactly the number of rows you expect, no more and no fewer. It’s useful for tables that should stay a fixed size, such as reference or lookup tables, where any change in row count usually signals a problem upstream.-
When to Use
- To monitor tables where row count is expected to remain fixed (for example, dimension tables).
- To catch over- or under-loading issues after ETL processes.
- To verify baseline data volumes for test/staging/prod comparisons.
-
Test Summary
-
Test Logic
Table Row Count to be Between
This test checks that a table’s row count stays within a healthy range you define, rather than requiring an exact match. It helps you catch unusually large or small tables, for example after a failed load or an unexpected spike in incoming data.-
When to Use
- To monitor for abnormal growth or shrinkage in table size.
- To catch failed inserts, unintended truncations, or unexpected data surges.
- To set alerts based on historical data volume expectations.
-
Test Summary
At least one of these values is required to run the test.
-
Test Logic
Table Column Count to Equal
This test checks that a table has exactly the number of columns you expect. It helps you catch accidental schema changes, such as a column being added or removed upstream without your knowledge.-
When to Use
- To detect unapproved schema changes (for example, columns being added or dropped).
- To enforce data contracts between teams or systems.
- To ensure structural consistency across environments.
-
Test Summary
-
Test Logic
Table Column Count to be Between
This test checks that a table’s column count stays within a minimum and maximum range you define. It’s useful when some schema variation is expected, but you still want to catch major structural drift.-
When to Use
- To detect schema drift or changes in table structure.
- To ensure a table has a predictable number of columns across environments (for example, staging vs. production).
-
Test Summary
-
Test Logic
Table Column Name to Exist
This test checks that a specific, named column is present in the table. It’s useful for making sure critical fields, such as an ID or timestamp column that downstream processes depend on, are never accidentally dropped.-
When to Use
- To validate that required schema fields exist (for example,
order_id,customer_id). - To monitor schema changes that might break downstream processes.
- To enforce critical column presence in governed datasets.
- To validate that required schema fields exist (for example,
-
Test Summary
-
Test Logic
Table Column to Match Set
This test checks that a table’s column names match an exact, predefined list, optionally requiring the columns to appear in a specific order. It’s useful when you need to guarantee the full structure of a table hasn’t changed.-
When to Use
- To ensure schema alignment across different environments or pipeline stages.
- To detect unexpected column additions, deletions, or reordering.
- To enforce table contracts where the exact structure is critical.
-
Test Summary
-
Test Logic
Table Custom SQL Test
This test lets you write your own SQL query to check for anything the built-in tests don’t cover, such as business-specific rules, duplicate records, or unusual outliers. Collate runs your query and compares the result against a threshold you configure to decide whether the test passes or fails.-
When to Use
- To implement logic beyond predefined test definitions.
- To detect outliers, nulls, duplicates, or business-specific data anomalies.
- When you need full flexibility using SQL syntax.
-
Test Summary
-
Test Logic
Table Row Inserted Count To Be Between
This test looks at how many new rows were added to a table within a recent time window, such as the last hour or day, and checks that count falls within an expected range. It’s a good way to catch pipelines that silently stop loading data, or that suddenly load far more or fewer rows than usual.-
When to Use
- To detect whether recent data ingestion volumes are within acceptable limits.
- To monitor time-partitioned tables for daily/hourly/monthly data drops or spikes.
- To validate pipeline freshness and completeness over time.
-
Test Summary
-
Test Logic
Compare 2 Tables for Differences
This test compares two tables row by row, even if they live on different database platforms, and reports how many rows differ between them. It’s commonly used to confirm that data was replicated or migrated correctly, for example after moving a table from one warehouse to another.-
When to Use
- After data replication or migration (for example, Snowflake to Redshift).
- To validate data integrity between source and target systems.
-
Test Summary
-
Test Logic
-
Supported Data Sources
- Snowflake
- BigQuery
- Athena
- Redshift
- Postgres
- MySQL
- MSSQL
- Oracle
- Trino
- SAP Hana
- Databricks
- Unity Catalog
- AzureSQL
Table Data to Be Fresh [Collate]
This test checks how recently a table’s data was last updated, and fails if that update happened too long ago. It helps you catch stalled pipelines and confirm that time-sensitive tables are meeting their expected refresh schedule.-
When to Use
- To monitor data pipelines for staleness or lag.
- To detect delays in scheduled batch updates.
- To ensure compliance with SLAs for near real-time data delivery.
-
Test Summary
-
Test Logic
Column Tests
Column tests validate the values inside a specific column, rather than the table as a whole. Use them to catch problems like duplicate or missing values, values that fall outside an expected range or pattern, or statistical properties (such as the mean, median, or standard deviation) drifting outside what’s expected.Column Values to Be Unique
This test checks that every value in a column is distinct, with no duplicates anywhere. It’s typically used on primary keys or other identifier columns, where duplicate values would indicate a data integrity problem.-
Dimension:
Uniqueness -
When to Use
- Primary keys or natural identifiers.
- Fields like email, username, or ID.
-
Behavior
Column Values to Be Not Null
This test checks that a column never contains missing (NULL) values. It’s useful for required fields where a missing value would break downstream reports or logic. It does not catch empty strings, which are not NULL — use Column Values to Match Regex for that.-
Dimension:
Completeness -
When to Use
- Mandatory fields such as
email,amount,created_at. - Required keys or business-critical columns.
- Mandatory fields such as
-
Behavior
Column Values to Match Regex
This test checks that every value in a column matches a pattern you define using a regular expression, for example to confirm that a column only contains validly formatted email addresses or postal codes. On databases that don’t support native regex matching, Collate automatically falls back to the SQLLIKE expression instead. Collate supports the regex pattern on the following databases:
- Redshift
- Postgres
- Oracle
- MySQL
- MariaDB
- SQLite
- ClickHouse
- Databricks
- Snowflake
-
Dimension:
Validity -
When to Use
- Emails, zip codes, IDs, structured formats.
-
Behavior
Column Values to not Match Regex
This test checks that no value in a column matches a pattern you want to block, defined using a regular expression (forbiddenRegex). If even one value matches that forbidden pattern, the test fails, which makes it useful for catching placeholder values, test data, or other known-bad formats that shouldn’t reach production. On databases that don’t support native regex matching, Collate automatically falls back to the SQL LIKE expression instead. Collate supports the regex pattern on the following databases:
- Redshift
- Postgres
- Oracle
- MySQL
- MariaDB
- SQLite
- ClickHouse
- Databricks
- Snowflake
-
Dimension:
Validity -
When to Use
- Prevent forbidden values, test strings, or patterns.
-
Behavior
Column Values to Be in Set
This test checks that every value in a column comes from a predefined allowlist of acceptable values. It’s a good fit for columns that represent a fixed set of categories, such as a status or country code field, where any unexpected value likely points to bad data.-
Dimension:
Validity -
When to Use
- Enum values:
status,currency,country_code.
- Enum values:
-
Behavior
Column Values to Be Not In Set
This test checks that no value in a column matches an entry in a blocklist of values you want to exclude. It’s useful for catching known placeholder or invalid entries, such as"NA" or -1, that shouldn’t appear in clean data.
-
Dimension:
Validity -
When to Use
- Block invalid values like
"NA","Unknown",-1.
- Block invalid values like
-
Behavior
Column Values to Be Between
This test checks that every numeric value in a column falls within a minimum and maximum range you define. It’s commonly used to catch out-of-range values in fields like price, age, or quantity that would otherwise indicate a data entry or calculation error.-
Dimension:
Accuracy -
When to Use
- Range checks for
price,age,quantity, and similar numeric fields.
- Range checks for
-
Behavior
Column Values Missing Count to Be Equal
This test counts how many values in a column are missing, counting both true NULLs and any strings you’ve defined as representing a missing value (such as"NA" or "N/A"), and checks that this count matches a target you expect. It’s useful when a small, known number of missing values is acceptable, but you still want to be alerted if that number changes.
-
Dimension:
Completeness -
When to Use
- Auditing known missing values.
- Accounting for
"NA","N/A","null".
-
Behavior
Column Values Lengths to Be Between
This test checks that every string value in a column has a character length within a minimum and maximum range you define. It helps catch values that are unexpectedly too short or too long, which can otherwise break UI display limits or downstream processing.-
Dimension:
Accuracy -
When to Use
- To validate field length constraints like
name,address, ordescription. - To catch too-short or too-long values that may break UI or downstream logic.
- To validate field length constraints like
-
Behavior
Column Value Max to Be Between
This test looks at the single highest value in a column and checks that it falls within a range you define. It’s a useful cap check for columns likescore, amount, or age, where an unusually high maximum often signals bad or unvalidated input.
-
Dimension:
Accuracy -
When to Use
- Cap validation for
score,amount,age.
- Cap validation for
-
Behavior
Column Value Min to Be Between
This test looks at the single lowest value in a column and checks that it falls within a range you define. It’s useful for catching unexpected negative or unusually low values in fields likediscount or price.
-
Dimension:
Accuracy -
When to Use
- Threshold validation for
discount,price, and so on.
- Threshold validation for
-
Behavior
Column Value Mean to Be Between
This test calculates the average (mean) of all values in a column and checks that it falls within an expected range. It’s a good way to spot gradual shifts in your data, such as dataset drift or a pipeline that starts producing systematically different values.-
Dimension:
Accuracy -
When to Use
- Check dataset drift or pipeline behavior.
-
Behavior
Column Value Median to Be Between
This test calculates the median, the middle value when all values are sorted, of a column and checks that it falls within an expected range. Because the median isn’t skewed by extreme outliers the way an average can be, it’s a good complement to a mean check for fields like income, score, or latency.-
Dimension:
Accuracy -
When to Use
- Median income, score, latency checks.
-
Behavior
Column Values Sum to Be Between
This test adds up every value in a column and checks that the total falls within a range you define. It’s commonly used for financial or volume metrics, such as total revenue or units sold, where an unexpected total often points to missing or duplicated records.-
Dimension:
Accuracy -
When to Use
- Revenue, units sold, total scores, and so on.
-
Behavior
Column Values Standard Deviation to Be Between
This test measures how spread out the values in a column are, using standard deviation, and checks that this spread falls within an acceptable range. It’s useful for catching data that has suddenly become far more variable or far more uniform than expected.-
Dimension:
Accuracy -
When to Use
- Monitoring variance in numeric datasets.
-
Behavior
Column Values To Be At Expected Location
This test checks that latitude and longitude values in a column fall within a defined geographic area, such as a radius around an expected location. It’s useful for validating address or location data, for example confirming that store or delivery coordinates fall within the region they’re supposed to.-
Dimension:
Accuracy -
When to Use
- Verifying address coordinates.
- Mapping regional data.
-
Behavior