How to include custom field in shortcode (do_shortcode) in theme file

removed printf

<?php if ( get_post_meta($post->ID, 'test_field', true) ) {
    echo do_shortcode('[shortcode]'. get_post_meta($post->ID, "test_field", true) . '[/shortcode]');
} ?>