mirror of
https://github.com/dbt-labs/dbt-project-evaluator.git
synced 2025-12-18 02:11:27 +00:00
Co-authored-by: Grace Goheen <53586774+graciegoheen@users.noreply.github.com> Co-authored-by: Benoit Perigaud <8754100+b-per@users.noreply.github.com>
43 lines
1.7 KiB
SQL
43 lines
1.7 KiB
SQL
with
|
|
|
|
test_counts as (
|
|
select * from {{ ref('int_model_test_summary') }}
|
|
where resource_type = 'model'
|
|
),
|
|
|
|
conversion as (
|
|
select
|
|
resource_name,
|
|
cast(case when number_of_tests_on_model > 0 then 1 else 0 end as {{ dbt.type_boolean() }}) as is_tested_model,
|
|
{% for model_type in var('model_types') %}
|
|
case when model_type = '{{ model_type }}' then 1.0 else NULL end as is_{{ model_type }}_model,
|
|
case when number_of_tests_on_model > 0 and model_type = '{{ model_type }}' then 1.0 else 0 end as is_tested_{{ model_type }}_model{% if not loop.last %},{% endif %}
|
|
{% endfor %}
|
|
|
|
from test_counts
|
|
),
|
|
|
|
final as (
|
|
select
|
|
{{ dbt.current_timestamp() if target.type != 'trino' else 'current_timestamp(6)' }} as measured_at,
|
|
cast(count(*) as {{ dbt.type_int() }}) as total_models,
|
|
cast(sum(number_of_tests_on_model) as {{ dbt.type_int() }}) as total_tests,
|
|
sum(cast(is_tested_model as {{ dbt.type_int() }})) as tested_models,
|
|
round(sum(cast(is_tested_model as {{ dbt.type_int() }})) * 100.0 / count(*), 2) as test_coverage_pct,
|
|
{% for model_type in var('model_types') %}
|
|
round(
|
|
{{ dbt_utils.safe_divide(
|
|
numerator = "sum(is_tested_" ~ model_type ~ "_model) * 100.0",
|
|
denominator = "count(is_" ~ model_type ~ "_model)"
|
|
) }}
|
|
, 2) as {{ model_type }}_test_coverage_pct,
|
|
{% endfor %}
|
|
round(sum(number_of_tests_on_model) * 1.0000 / count(*), 4) as test_to_model_ratio
|
|
|
|
from test_counts
|
|
left join conversion
|
|
on test_counts.resource_name = conversion.resource_name
|
|
)
|
|
|
|
select * from final
|