blob: 527241e205cd2ad159892ab424ad0490cf5b32fd [file] [log] [blame]
Robin Thellend663bf482014-10-01 10:27:10 -07001#!/bin/bash
2
3# Test the debug binary
4#
5# This test starts a mounttable server and then runs the debug command against
6# it.
7
Jiri Simsa3540e3a2014-12-26 07:54:09 -08008source "$(go list -f {{.Dir}} v.io/core/shell/lib)/shell_test.sh"
Robin Thellend663bf482014-10-01 10:27:10 -07009
Ankur981d7fc2014-12-19 17:55:18 -080010# Run the test under the security agent.
11shell_test::enable_agent "$@"
12
Jing Jin89312ff2014-10-24 10:42:08 -070013readonly WORKDIR="${shell_test_WORK_DIR}"
Matt Rosencrantzbe1a8b52014-11-21 15:14:06 -080014readonly DEBUG_FLAGS="--veyron.vtrace.sample_rate=1"
Robin Thellend663bf482014-10-01 10:27:10 -070015
16build() {
Jiri Simsa764efb72014-12-25 20:57:03 -080017 DEBUG_BIN="$(shell_test::build_go_binary 'v.io/core/veyron/tools/debug')"
Robin Thellend663bf482014-10-01 10:27:10 -070018}
19
20dumplogs() {
21 for x in $*; do
22 echo "-- $(basename "${x}") --"
23 cat "${x}"
24 done
25}
26
27main() {
Jiri Simsa85aea7b2014-10-15 15:48:36 -070028 local GOT WANT
29
Robin Thellend663bf482014-10-01 10:27:10 -070030 cd "${WORKDIR}"
Jing Jin89312ff2014-10-24 10:42:08 -070031 build
Robin Thellendfaa083a2014-10-22 13:41:18 -070032 mkdir "tmp"
33 export TMPDIR="${WORKDIR}/tmp"
Robin Thellend663bf482014-10-01 10:27:10 -070034
Cosmos Nicolaouf17b6022014-10-14 10:04:20 -070035 shell_test::setup_server_test || shell_test::fail "setup_server_test failed"
36 local -r EP="${NAMESPACE_ROOT}"
37 unset NAMESPACE_ROOT
Robin Thellend663bf482014-10-01 10:27:10 -070038
Jiri Simsa85aea7b2014-10-15 15:48:36 -070039 # Test top level glob.
Robin Thellend663bf482014-10-01 10:27:10 -070040 local -r DBGLOG="${WORKDIR}/debug.log"
Matt Rosencrantzbe1a8b52014-11-21 15:14:06 -080041 GOT=$("${DEBUG_BIN}" "${DEBUG_FLAGS}" glob "${EP}/__debug/*" 2> "${DBGLOG}") \
Jiri Simsa85aea7b2014-10-15 15:48:36 -070042 || (dumplogs "${DBGLOG}"; shell_test::fail "line ${LINENO}: failed to run debug")
43 WANT="${EP}/__debug/logs
Robin Thellend663bf482014-10-01 10:27:10 -070044${EP}/__debug/pprof
Matt Rosencrantzb30286b2014-11-10 14:52:17 -080045${EP}/__debug/stats
46${EP}/__debug/vtrace"
Jiri Simsa85aea7b2014-10-15 15:48:36 -070047 shell_test::assert_eq "${GOT}" "${WANT}" "${LINENO}"
Robin Thellend663bf482014-10-01 10:27:10 -070048
Jiri Simsa85aea7b2014-10-15 15:48:36 -070049 # Test logs glob.
Matt Rosencrantzbe1a8b52014-11-21 15:14:06 -080050 GOT=$("${DEBUG_BIN}" "${DEBUG_FLAGS}" glob "${EP}/__debug/logs/*" 2> "${DBGLOG}" | wc -l) \
Jiri Simsa85aea7b2014-10-15 15:48:36 -070051 || (dumplogs "${DBGLOG}"; shell_test::fail "line ${LINENO}: failed to run debug")
52 shell_test::assert_gt "${GOT}" "0" "${LINENO}"
Cosmos Nicolaou8bd8e102015-01-13 21:52:53 -080053
Jiri Simsa85aea7b2014-10-15 15:48:36 -070054 # Test logs size.
Robin Thellend663bf482014-10-01 10:27:10 -070055 echo "This is a log file" > "${TMPDIR}/my-test-log-file"
Matt Rosencrantzbe1a8b52014-11-21 15:14:06 -080056 GOT=$("${DEBUG_BIN}" "${DEBUG_FLAGS}" logs size "${EP}/__debug/logs/my-test-log-file" 2> "${DBGLOG}") \
Jiri Simsa85aea7b2014-10-15 15:48:36 -070057 || (dumplogs "${DBGLOG}"; shell_test::fail "line ${LINENO}: failed to run debug")
Cosmos Nicolaou9348da62014-10-03 14:21:19 -070058 WANT=$(echo "This is a log file" | wc -c | tr -d ' ')
Jiri Simsa85aea7b2014-10-15 15:48:36 -070059 shell_test::assert_eq "${GOT}" "${WANT}" "${LINENO}"
Robin Thellend663bf482014-10-01 10:27:10 -070060
Jiri Simsa85aea7b2014-10-15 15:48:36 -070061 # Test logs read.
Matt Rosencrantzbe1a8b52014-11-21 15:14:06 -080062 GOT=$("${DEBUG_BIN}" "${DEBUG_FLAGS}" logs read "${EP}/__debug/logs/my-test-log-file" 2> "${DBGLOG}") \
Jiri Simsa85aea7b2014-10-15 15:48:36 -070063 || (dumplogs "${DBGLOG}"; shell_test::fail "line ${LINENO}: failed to run debug")
Robin Thellend663bf482014-10-01 10:27:10 -070064 WANT="This is a log file"
Jiri Simsa85aea7b2014-10-15 15:48:36 -070065 shell_test::assert_eq "${GOT}" "${WANT}" "${LINENO}"
Robin Thellend663bf482014-10-01 10:27:10 -070066
Robin Thellendfaa083a2014-10-22 13:41:18 -070067 # Test stats read.
Matt Rosencrantzbe1a8b52014-11-21 15:14:06 -080068 GOT=$("${DEBUG_BIN}" "${DEBUG_FLAGS}" stats read "${EP}/__debug/stats/ipc/server/routing-id/*/methods/ReadLog/latency-ms" 2> "${DBGLOG}" | wc -l) \
Robin Thellendfaa083a2014-10-22 13:41:18 -070069 || (dumplogs "${DBGLOG}"; shell_test::fail "line ${LINENO}: failed to run debug")
70 shell_test::assert_gt "${GOT}" "0" "${LINENO}"
71
Matt Rosencrantzbe1a8b52014-11-21 15:14:06 -080072 # Test fetching all vtrace traces.
73 GOT=$("${DEBUG_BIN}" "${DEBUG_FLAGS}" vtrace "${EP}/__debug/vtrace" 2> "${DBGLOG}" | egrep -o "^Trace - ([^ ]+)" | cut -b 9- | sort) \
74 || (dumplogs "${DBGLOG}"; shell_test::fail "line ${LINENO}: failed to run debug")
75 shell_test::assert_eq $(echo "${GOT}" | wc -l | tr -d ' ') "6" "${LINENO}"
76
77 # Test fetching individual traces.
78 IDS=$(echo "$GOT" | tr '\n' ' ')
79 GOT2=$("${DEBUG_BIN}" "${DEBUG_FLAGS}" vtrace "${EP}/__debug/vtrace" ${IDS} 2> "${DBGLOG}" | egrep -o "^Trace - ([^ ]+)" | cut -b 9- | sort) \
80 || (dumplogs "${DBGLOG}"; shell_test::fail "line ${LINENO}: failed to run debug")
81 shell_test::assert_eq "${GOT2}" "${GOT}" "${LINENO}"
82
Robin Thellendfaa083a2014-10-22 13:41:18 -070083 # Test stats watch.
Robin Thellend663bf482014-10-01 10:27:10 -070084 local TMP=$(shell::tmp_file)
85 touch "${TMP}"
Jiri Simsa85aea7b2014-10-15 15:48:36 -070086 local -r DEBUG_PID=$(shell::run_server "${shell_test_DEFAULT_SERVER_TIMEOUT}" "${TMP}" "${DBGLOG}" \
Bogdan Capritae7376312014-11-10 13:13:17 -080087 "${DEBUG_BIN}" stats watch -raw "${EP}/__debug/stats/ipc/server/routing-id/*/methods/ReadLog/latency-ms")
Cosmos Nicolaouf17b6022014-10-14 10:04:20 -070088 shell::timed_wait_for "${shell_test_DEFAULT_MESSAGE_TIMEOUT}" "${TMP}" "ReadLog/latency-ms"
89 kill "${DEBUG_PID}"
Robin Thellend6e441752014-12-13 11:29:42 -080090 grep -q "Count:1 " "${TMP}" || (dumplogs "${TMP}"; shell_test::fail "line ${LINENO}: failed to find expected output")
Robin Thellend663bf482014-10-01 10:27:10 -070091
Jiri Simsa85aea7b2014-10-15 15:48:36 -070092 # Test pprof.
Jing Jin89312ff2014-10-24 10:42:08 -070093 if ! "${DEBUG_BIN}" pprof run "${EP}/__debug/pprof" heap --text &> "${DBGLOG}"; then
Cosmos Nicolaouf17b6022014-10-14 10:04:20 -070094 dumplogs "${DBGLOG}"
Robin Thellend663bf482014-10-01 10:27:10 -070095 shell_test::fail "line ${LINENO}: unexpected failure."
96 fi
97
98 shell_test::pass
99}
100
101main "$@"