lookml-tests
Original:🇺🇸 English
Translated
Standards and best practices for writing LookML tests to ensure data integrity, accuracy, and logic validation.
4installs
Sourcelkrdev/lookml_skills
Added on
NPX Install
npx skill4agent add lkrdev/lookml_skills lookml-testsTags
Translated version includes tags in frontmatterSKILL.md Content
View Translation Comparison →LookML Testing Standards
Testing is critical for maintaining trust in data. LookML tests allow us to verify that our semantic model behaves as expected and that the underlying data conforms to our assumptions.
1. File Organization
- Location: Define tests in .
tests/[explore_name].test.lkml - One Suite Per Explore: Each file should contain all the test definitions for a specific Explore.
- Naming Convention: (e.g.,
[explore_name].test.lkml).orders.test.lkml
2. Test Structure
Each test consists of an query and an statement.
explore_sourceassertlookml
test: [test_name] {
explore_source: [explore_name] {
column: [column_name] { field: [view_name].[field_name] }
filters: {
field: [view_name].[field_name]
value: "[value]"
}
}
assert: [assertion_name] {
expression: ${[view_name].[field_name]} [operator] [value] ;;
}
}3. Types of Tests
A. Integrity Checks (Critical)
Verify that Primary Keys remain unique after joins. This is the best defense against "fanout" errors caused by incorrect join definitions.
one_to_manyExample: Primary Key Uniqueness
lookml
test: orders_pk_is_unique {
explore_source: orders {
column: order_id {}
column: count {}
# Limit to recent data to save costs/time if table is large
filters: {
field: orders.created_date
value: "last 7 days"
}
}
assert: order_id_is_unique {
expression: ${orders.count} = 1 ;;
}
}B. Accuracy Tests
Validate specific measure values against known constants or expectations.
Example: Revenue is Positive
lookml
test: revenue_is_positive {
explore_source: orders {
column: total_revenue {}
filters: {
field: orders.created_date
value: "yesterday"
}
}
assert: revenue_greater_than_zero {
expression: ${orders.total_revenue} >= 0 ;;
}
}C. Business Logic Validation
Ensure calculations behave as expected. For example, checking that is never greater than or that is never NULL for an active user.
gross_marginrevenuelifetime_ordersExample: Logic Check
lookml
test: margin_less_than_revenue {
explore_source: orders {
column: total_revenue {}
column: total_margin {}
}
assert: margin_is_valid {
expression: ${orders.total_margin} <= ${orders.total_revenue} ;;
}
}4. Best Practices
- Descriptive Extensions: Use informative names for tests () and assertions (
orders_pk_is_unique).order_id_is_unique - Performance: Use filters (e.g., ) to limit the scan size for large tables, unless verifying full history is required.
last 7 days - Model Inclusion: Ensure files are included in the model file (e.g.,
test).include: "/tests/*.test.lkml"