X-Git-Url: https://git.liburcu.org/?a=blobdiff_plain;f=tests%2Fregression%2Ftools%2Fclear%2Ftest_ust;h=104753b98474ea57bf5a32538daee9f0bb5143b5;hb=997be615376899b862cb993626f7a566323bce8e;hp=8edc722928d2ee7ad4be88b4796a81be367cb5f1;hpb=afc3cc02e9af6b65da0ad35a3e97a6d6487bf996;p=lttng-tools.git diff --git a/tests/regression/tools/clear/test_ust b/tests/regression/tools/clear/test_ust index 8edc72292..104753b98 100755 --- a/tests/regression/tools/clear/test_ust +++ b/tests/regression/tools/clear/test_ust @@ -17,11 +17,13 @@ TESTAPP_NAME="gen-ust-events" TESTAPP_BIN="$TESTAPP_PATH/$TESTAPP_NAME/$TESTAPP_NAME" NUM_TESTS=2071 - +DELAYUS=500000 +LIVEVIEWER_TIMEOUT=10 # Timeout in seconds PAGE_SIZE=$(getconf PAGE_SIZE) -TRACE_PATH=$(mktemp --tmpdir -d tmp.test_clear_ust_trace_path.XXXXXX) +TRACE_PATH=$(mktemp -d -t tmp.test_clear_ust_trace_path.XXXXXX) -source $TESTDIR/utils/utils.sh +# shellcheck source=../utils/utils.sh +source "$TESTDIR/utils/utils.sh" if [ ! -x "$TESTAPP_BIN" ]; then BAIL_OUT "No UST events binary detected." @@ -112,7 +114,7 @@ function test_ust_streaming () fi fi - destroy_lttng_session_ok $SESSION_NAME + destroy_lttng_session_ok $SESSION_NAME --no-wait } function test_ust_streaming_no_event () @@ -137,7 +139,7 @@ function test_ust_streaming_no_event () validate_directory_empty "$local_path" - destroy_lttng_session_ok $SESSION_NAME + destroy_lttng_session_ok $SESSION_NAME --no-wait } function test_ust_streaming_rotate_clear () @@ -170,7 +172,7 @@ function test_ust_streaming_rotate_clear () fi validate_trace_count $EVENT_NAME $local_path $expect_count - destroy_lttng_session_ok $SESSION_NAME + destroy_lttng_session_ok $SESSION_NAME --no-wait } function test_ust_streaming_clear_rotate () @@ -203,7 +205,7 @@ function test_ust_streaming_clear_rotate () fi validate_trace_count $EVENT_NAME $local_path $expect_count - destroy_lttng_session_ok $SESSION_NAME + destroy_lttng_session_ok $SESSION_NAME --no-wait } function test_ust_streaming_live () @@ -217,7 +219,7 @@ function test_ust_streaming_live () diag "Test ust streaming live clear" diag "Parameters: tracing_active=$tracing_active, clear_twice=$clear_twice, buffer_type=$buffer_type" - create_lttng_session_uri $SESSION_NAME net://localhost "--live" + create_lttng_session_uri $SESSION_NAME net://localhost "--live=${DELAYUS}" enable_ust_lttng_channel_ok $SESSION_NAME $channel_name --buffers-$buffer_type enable_ust_lttng_event_ok $SESSION_NAME $EVENT_NAME $channel_name start_lttng_tracing_ok $SESSION_NAME @@ -231,7 +233,7 @@ function test_ust_streaming_live () validate_directory_empty $local_path fi - destroy_lttng_session_ok $SESSION_NAME + destroy_lttng_session_ok $SESSION_NAME --no-wait } #no clear @@ -244,12 +246,13 @@ function test_ust_basic_streaming_live_viewer () local local_path="${TRACE_PATH}/${HOSTNAME}/${SESSION_NAME}*" local remote_trace_path="${HOSTNAME}/${SESSION_NAME}" local channel_name="chan" - local bt_output_path=$(mktemp --tmpdir -u tmp.test_${FUNCNAME[0]}_bt_output_path.XXXXXX) - local file_sync_before_exit=$(mktemp --tmpdir -u tmp.test_${FUNCNAME[0]}_sync_before_exit.XXXXXX) + local bt_output_path=$(mktemp -u -t tmp.test_${FUNCNAME[0]}_bt_output_path.XXXXXX) + local bt_error_path=$(mktemp -t "tmp.${FUNCNAME[0]}_bt_error.XXXXXX") + local file_sync_before_exit=$(mktemp -u -t tmp.test_${FUNCNAME[0]}_sync_before_exit.XXXXXX) diag "Test ust basic streaming live with viewer" diag "Parameters: tracing_active=$tracing_active, clear_twice=$clear_twice, buffer_type=$buffer_type" - create_lttng_session_uri $SESSION_NAME net://localhost "--live" + create_lttng_session_uri $SESSION_NAME net://localhost "--live=${DELAYUS}" enable_ust_lttng_channel_ok $SESSION_NAME $channel_name --buffers-$buffer_type enable_ust_lttng_event_ok $SESSION_NAME $EVENT_NAME $channel_name start_lttng_tracing_ok $SESSION_NAME @@ -257,8 +260,9 @@ function test_ust_basic_streaming_live_viewer () wait_live_trace_ready net://localhost # Connect a live viewer - $BABELTRACE_BIN -i lttng-live net://localhost/host/$remote_trace_path > $bt_output_path & + $BABELTRACE_BIN -i lttng-live net://localhost/host/$remote_trace_path --params=session-not-found-action=end 1> $bt_output_path 2> "${bt_error_path}" & local viewer_pid=$! + local viewer_iter=0 wait_live_viewer_connect net://localhost @@ -269,11 +273,15 @@ function test_ust_basic_streaming_live_viewer () local evcount=0 while [ $evcount -ne 10 ]; do evcount=$(cat $bt_output_path | wc -l) - sleep 0.5 + sleep 0.1 + viewer_iter=$((viewer_iter + 1)) + if [ "${viewer_iter}" -gt $((LIVEVIEWER_TIMEOUT * 10)) ] ; then + break; + fi done - pass "Live viewer read $evcount events, expect 10" + is "${evcount}" 10 "Live viewer read $evcount events, expect 10" - destroy_lttng_session_ok $SESSION_NAME + destroy_lttng_session_ok $SESSION_NAME --no-wait touch $file_sync_before_exit diag "Waiting for application to exit" wait $app_pid @@ -284,6 +292,7 @@ function test_ust_basic_streaming_live_viewer () pass "Wait for viewer to exit" rm -f $bt_output_path + clean_path "${bt_error_path}" rm -f $file_sync_before_exit } @@ -296,11 +305,12 @@ function test_ust_streaming_live_viewer () local local_path="${TRACE_PATH}/${HOSTNAME}/${SESSION_NAME}*" local remote_trace_path="${HOSTNAME}/${SESSION_NAME}" local channel_name="chan" - local bt_output_path=$(mktemp --tmpdir -u tmp.test_${FUNCNAME[0]}_bt_output_path.XXXXXX) + local bt_output_path=$(mktemp -u -t tmp.test_${FUNCNAME[0]}_bt_output_path.XXXXXX) + local bt_error_path=$(mktemp -t "tmp.${FUNCNAME[0]}_bt_error.XXXXXX") diag "Test ust streaming live clear with viewer" diag "Parameters: tracing_active=$tracing_active, clear_twice=$clear_twice, buffer_type=$buffer_type" - create_lttng_session_uri $SESSION_NAME net://localhost "--live" + create_lttng_session_uri $SESSION_NAME net://localhost "--live=${DELAYUS}" enable_ust_lttng_channel_ok $SESSION_NAME $channel_name --buffers-$buffer_type enable_ust_lttng_event_ok $SESSION_NAME $EVENT_NAME $channel_name start_lttng_tracing_ok $SESSION_NAME @@ -308,7 +318,7 @@ function test_ust_streaming_live_viewer () wait_live_trace_ready net://localhost # Connect a live viewer - $BABELTRACE_BIN -i lttng-live net://localhost/host/$remote_trace_path > $bt_output_path & + $BABELTRACE_BIN -i lttng-live net://localhost/host/$remote_trace_path --params=session-not-found-action=end 1> $bt_output_path 2> "${bt_error_path}" & local viewer_pid=$! wait_live_viewer_connect net://localhost @@ -317,13 +327,14 @@ function test_ust_streaming_live_viewer () do_clear_session $SESSION_NAME $tracing_active $clear_twice 0 0 stop_lttng_tracing_ok $SESSION_NAME - destroy_lttng_session_ok $SESSION_NAME + destroy_lttng_session_ok $SESSION_NAME --no-wait diag "Wait for viewer to exit" wait $viewer_pid ok $? "Babeltrace succeeds" pass "Wait for viewer to exit" clean_path $bt_output_path + clean_path "${bt_error_path}" } function test_ust_streaming_live_viewer_new_metadata_after_clear () @@ -336,13 +347,13 @@ function test_ust_streaming_live_viewer_new_metadata_after_clear () local remote_trace_path="${HOSTNAME}/${SESSION_NAME}" local channel_name="chan" - local bt_output_path=$(mktemp --tmpdir -t "tmp.${FUNCNAME[0]}_bt_output.XXXXXX") - local bt_error_path=$(mktemp --tmpdir -t "tmp.${FUNCNAME[0]}_bt_error.XXXXXX") - local file_sync_before_exit=$(mktemp --tmpdir -u -t "tmp.${FUNCNAME[0]}_sync_before_exit.XXXXXX") + local bt_output_path=$(mktemp -t "tmp.${FUNCNAME[0]}_bt_output.XXXXXX") + local bt_error_path=$(mktemp -t "tmp.${FUNCNAME[0]}_bt_error.XXXXXX") + local file_sync_before_exit=$(mktemp -u -t "tmp.${FUNCNAME[0]}_sync_before_exit.XXXXXX") diag "Test ust streaming live clear with viewer with new metadata after clear" diag "Parameters: tracing_active=$tracing_active, clear_twice=$clear_twice, buffer_type=$buffer_type" - create_lttng_session_uri "$SESSION_NAME" net://localhost "--live" + create_lttng_session_uri "$SESSION_NAME" net://localhost "--live=${DELAYUS}" enable_ust_lttng_channel_ok "$SESSION_NAME" $channel_name "--buffers-$buffer_type" # The vpid context is added to filter events based on the vpid of the @@ -357,8 +368,9 @@ function test_ust_streaming_live_viewer_new_metadata_after_clear () wait_live_trace_ready net://localhost # Connect a live viewer - $BABELTRACE_BIN -i lttng-live "net://localhost/host/$remote_trace_path" 1> "$bt_output_path" 2> "$bt_error_path" & + $BABELTRACE_BIN -i lttng-live "net://localhost/host/$remote_trace_path" --params=session-not-found-action=end 1> "$bt_output_path" 2> "$bt_error_path" & local viewer_pid=$! + local viewer_iter=0 wait_live_viewer_connect net://localhost @@ -369,9 +381,13 @@ function test_ust_streaming_live_viewer_new_metadata_after_clear () local evcount=0 while [ $evcount -ne 10 ]; do evcount=$(wc -l < "$bt_output_path") - sleep 0.5 + sleep 0.1 + viewer_iter=$((viewer_iter + 1)) + if [ "${viewer_iter}" -gt $((LIVEVIEWER_TIMEOUT * 10)) ] ; then + break + fi done - pass "Live viewer read $evcount events, expect 10" + is "${evcount}" 10 "Live viewer read $evcount events, expect 10" do_clear_session "$SESSION_NAME" "$tracing_active" "$clear_twice" 0 0 @@ -386,15 +402,20 @@ function test_ust_streaming_live_viewer_new_metadata_after_clear () diag "Wait until viewer sees all 12 expected events" local evcount=0 + local viewer_iter=0 while [ $evcount -ne 12 ]; do evcount=$(wc -l < "$bt_output_path") - sleep 0.5 + sleep 0.1 + viewer_iter=$((viewer_iter + 1)) + if [ "${viewer_iter}" -gt $((LIVEVIEWER_TIMEOUT * 10)) ]; then + break + fi done - pass "Live viewer read $evcount events, expect 12" + is "${evcount}" 12 "Live viewer read $evcount events, expect 12" stop_lttng_tracing_ok "$SESSION_NAME" - destroy_lttng_session_ok "$SESSION_NAME" + destroy_lttng_session_ok "$SESSION_NAME" --no-wait touch "$file_sync_before_exit" diag "Waiting for application to exit" @@ -443,7 +464,7 @@ function test_ust_local () fi fi - destroy_lttng_session_ok $SESSION_NAME + destroy_lttng_session_ok $SESSION_NAME --no-wait } function test_ust_local_no_event () @@ -467,7 +488,7 @@ function test_ust_local_no_event () validate_directory_empty "$TRACE_PATH" - destroy_lttng_session_ok $SESSION_NAME + destroy_lttng_session_ok $SESSION_NAME --no-wait } function test_ust_local_rotate_clear () @@ -499,7 +520,7 @@ function test_ust_local_rotate_clear () fi validate_trace_count $EVENT_NAME $TRACE_PATH $expect_count - destroy_lttng_session_ok $SESSION_NAME + destroy_lttng_session_ok $SESSION_NAME --no-wait } function test_ust_local_clear_rotate () @@ -531,7 +552,7 @@ function test_ust_local_clear_rotate () fi validate_trace_count $EVENT_NAME $TRACE_PATH $expect_count - destroy_lttng_session_ok $SESSION_NAME + destroy_lttng_session_ok $SESSION_NAME --no-wait } function do_ust_snapshot () @@ -590,7 +611,7 @@ function test_ust_streaming_snapshot () create_lttng_session_uri $SESSION_NAME net://localhost "--snapshot" do_ust_snapshot $SESSION_NAME $TRACE_PATH $tracing_active $clear_twice $buffer_type - destroy_lttng_session_ok $SESSION_NAME + destroy_lttng_session_ok $SESSION_NAME --no-wait } function test_ust_local_snapshot () @@ -605,7 +626,7 @@ function test_ust_local_snapshot () create_lttng_session_ok $SESSION_NAME $TRACE_PATH "--snapshot" do_ust_snapshot $SESSION_NAME $TRACE_PATH $tracing_active $clear_twice $buffer_type - destroy_lttng_session_ok $SESSION_NAME + destroy_lttng_session_ok $SESSION_NAME --no-wait } # snapshot for per-pid is tested independently of the "buffer type" parameter @@ -617,10 +638,10 @@ function test_ust_local_snapshot_per_pid () # 3, 4 unused. local buffer_type=$5 local channel_name="channel0" - local file_sync_before_last=$(mktemp --tmpdir -u "tmp.${FUNCNAME[0]}_sync_before_last.XXXXXX") - local file_sync_before_last_touch=$(mktemp --tmpdir -u "tmp.${FUNCNAME[0]}_sync_before_last_touch.XXXXXX") - local file_sync_before_exit=$(mktemp --tmpdir -u "tmp.${FUNCNAME[0]}_sync_before_exit.XXXXXX") - local file_sync_before_exit_touch=$(mktemp --tmpdir -u -t "tmp.${FUNCNAME[0]}_sync_before_exit_touch.XXXXXX") + local file_sync_before_last=$(mktemp -u -t "tmp.${FUNCNAME[0]}_sync_before_last.XXXXXX") + local file_sync_before_last_touch=$(mktemp -u -t "tmp.${FUNCNAME[0]}_sync_before_last_touch.XXXXXX") + local file_sync_before_exit=$(mktemp -u -t "tmp.${FUNCNAME[0]}_sync_before_exit.XXXXXX") + local file_sync_before_exit_touch=$(mktemp -u -t "tmp.${FUNCNAME[0]}_sync_before_exit_touch.XXXXXX") diag "Test ust local snapshot clear per pid" diag "Parameters: tracing_active=$tracing_active, clear_twice=$clear_twice, buffer_type=$buffer_type" @@ -636,10 +657,11 @@ function test_ust_local_snapshot_per_pid () --sync-before-last-event-touch ${file_sync_before_last_touch} \ --sync-before-exit ${file_sync_before_exit} \ --sync-before-exit-touch ${file_sync_before_exit_touch} >/dev/null 2>&1 & + local app_pid="${!}" # Continue only when there is only the last event remaining. while [ ! -f "${file_sync_before_last_touch}" ]; do - sleep 0.5 + sleep 0.1 done # Take a first snapshot and validate that the events are present. @@ -669,7 +691,7 @@ function test_ust_local_snapshot_per_pid () # Wait for the before exit sync point. This ensure that we went over the # last tracepoint. while [ ! -f "${file_sync_before_exit_touch}" ]; do - sleep 0.5 + sleep 0.1 done # Make sure the snapshot contains the last event. @@ -679,8 +701,8 @@ function test_ust_local_snapshot_per_pid () # Release the application. touch ${file_sync_before_exit} - wait - destroy_lttng_session_ok $SESSION_NAME + wait "${app_pid}" + destroy_lttng_session_ok $SESSION_NAME --no-wait rm -f ${file_sync_before_last} rm -f ${file_sync_before_last_touch} @@ -729,7 +751,7 @@ function test_ust_streaming_tracefile_rotation () validate_trace_count $EVENT_NAME $local_path 20 fi - destroy_lttng_session_ok $SESSION_NAME + destroy_lttng_session_ok $SESSION_NAME --no-wait } # With 1 byte per event (as strict minimum), generating 200000 events @@ -752,7 +774,7 @@ function test_ust_streaming_tracefile_rotation_overwrite_files () --tracefile-size=$PAGE_SIZE --tracefile-count=2 --buffers-$buffer_type enable_ust_lttng_event_ok $SESSION_NAME $EVENT_NAME $channel_name start_lttng_tracing_ok $SESSION_NAME - taskset -c 0 $TESTAPP_BIN -i 200000 + taskset -c "$(get_any_available_cpu)" $TESTAPP_BIN -i 200000 do_clear_session $SESSION_NAME $tracing_active $clear_twice $rotate_before $rotate_after stop_lttng_tracing_ok $SESSION_NAME @@ -767,7 +789,7 @@ function test_ust_streaming_tracefile_rotation_overwrite_files () fi start_lttng_tracing_ok $SESSION_NAME - taskset -c 0 $TESTAPP_BIN -i 400000 + taskset -c "$(get_any_available_cpu)" $TESTAPP_BIN -i 400000 stop_lttng_tracing_ok if [[ $rotate_before -eq 1 ]]; then @@ -776,7 +798,7 @@ function test_ust_streaming_tracefile_rotation_overwrite_files () validate_trace_count_range_incl_min_excl_max $EVENT_NAME $local_path 1 200000 fi - destroy_lttng_session_ok $SESSION_NAME + destroy_lttng_session_ok $SESSION_NAME --no-wait } function test_ust_disallow_clear () @@ -792,7 +814,7 @@ function test_ust_disallow_clear () enable_ust_lttng_event_ok $SESSION_NAME $EVENT_NAME start_lttng_tracing_ok $SESSION_NAME lttng_clear_session_fail $SESSION_NAME - destroy_lttng_session_ok $SESSION_NAME + destroy_lttng_session_ok $SESSION_NAME --no-wait stop_lttng_sessiond stop_lttng_relayd @@ -803,6 +825,8 @@ plan_tests $NUM_TESTS print_test_banner "$TEST_DESC" +bail_out_if_no_babeltrace + streaming_tests=(test_ust_streaming test_ust_streaming_rotate_clear test_ust_streaming_clear_rotate