Robin Thellend | 663bf48 | 2014-10-01 10:27:10 -0700 | [diff] [blame] | 1 | #!/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 Simsa | 3540e3a | 2014-12-26 07:54:09 -0800 | [diff] [blame] | 8 | source "$(go list -f {{.Dir}} v.io/core/shell/lib)/shell_test.sh" |
Robin Thellend | 663bf48 | 2014-10-01 10:27:10 -0700 | [diff] [blame] | 9 | |
Ankur | 981d7fc | 2014-12-19 17:55:18 -0800 | [diff] [blame] | 10 | # Run the test under the security agent. |
| 11 | shell_test::enable_agent "$@" |
| 12 | |
Jing Jin | 89312ff | 2014-10-24 10:42:08 -0700 | [diff] [blame] | 13 | readonly WORKDIR="${shell_test_WORK_DIR}" |
Matt Rosencrantz | be1a8b5 | 2014-11-21 15:14:06 -0800 | [diff] [blame] | 14 | readonly DEBUG_FLAGS="--veyron.vtrace.sample_rate=1" |
Robin Thellend | 663bf48 | 2014-10-01 10:27:10 -0700 | [diff] [blame] | 15 | |
| 16 | build() { |
Jiri Simsa | 764efb7 | 2014-12-25 20:57:03 -0800 | [diff] [blame] | 17 | DEBUG_BIN="$(shell_test::build_go_binary 'v.io/core/veyron/tools/debug')" |
Robin Thellend | 663bf48 | 2014-10-01 10:27:10 -0700 | [diff] [blame] | 18 | } |
| 19 | |
| 20 | dumplogs() { |
| 21 | for x in $*; do |
| 22 | echo "-- $(basename "${x}") --" |
| 23 | cat "${x}" |
| 24 | done |
| 25 | } |
| 26 | |
| 27 | main() { |
Jiri Simsa | 85aea7b | 2014-10-15 15:48:36 -0700 | [diff] [blame] | 28 | local GOT WANT |
| 29 | |
Robin Thellend | 663bf48 | 2014-10-01 10:27:10 -0700 | [diff] [blame] | 30 | cd "${WORKDIR}" |
Jing Jin | 89312ff | 2014-10-24 10:42:08 -0700 | [diff] [blame] | 31 | build |
Robin Thellend | faa083a | 2014-10-22 13:41:18 -0700 | [diff] [blame] | 32 | mkdir "tmp" |
| 33 | export TMPDIR="${WORKDIR}/tmp" |
Robin Thellend | 663bf48 | 2014-10-01 10:27:10 -0700 | [diff] [blame] | 34 | |
Cosmos Nicolaou | f17b602 | 2014-10-14 10:04:20 -0700 | [diff] [blame] | 35 | shell_test::setup_server_test || shell_test::fail "setup_server_test failed" |
| 36 | local -r EP="${NAMESPACE_ROOT}" |
| 37 | unset NAMESPACE_ROOT |
Robin Thellend | 663bf48 | 2014-10-01 10:27:10 -0700 | [diff] [blame] | 38 | |
Jiri Simsa | 85aea7b | 2014-10-15 15:48:36 -0700 | [diff] [blame] | 39 | # Test top level glob. |
Robin Thellend | 663bf48 | 2014-10-01 10:27:10 -0700 | [diff] [blame] | 40 | local -r DBGLOG="${WORKDIR}/debug.log" |
Matt Rosencrantz | be1a8b5 | 2014-11-21 15:14:06 -0800 | [diff] [blame] | 41 | GOT=$("${DEBUG_BIN}" "${DEBUG_FLAGS}" glob "${EP}/__debug/*" 2> "${DBGLOG}") \ |
Jiri Simsa | 85aea7b | 2014-10-15 15:48:36 -0700 | [diff] [blame] | 42 | || (dumplogs "${DBGLOG}"; shell_test::fail "line ${LINENO}: failed to run debug") |
| 43 | WANT="${EP}/__debug/logs |
Robin Thellend | 663bf48 | 2014-10-01 10:27:10 -0700 | [diff] [blame] | 44 | ${EP}/__debug/pprof |
Matt Rosencrantz | b30286b | 2014-11-10 14:52:17 -0800 | [diff] [blame] | 45 | ${EP}/__debug/stats |
| 46 | ${EP}/__debug/vtrace" |
Jiri Simsa | 85aea7b | 2014-10-15 15:48:36 -0700 | [diff] [blame] | 47 | shell_test::assert_eq "${GOT}" "${WANT}" "${LINENO}" |
Robin Thellend | 663bf48 | 2014-10-01 10:27:10 -0700 | [diff] [blame] | 48 | |
Jiri Simsa | 85aea7b | 2014-10-15 15:48:36 -0700 | [diff] [blame] | 49 | # Test logs glob. |
Matt Rosencrantz | be1a8b5 | 2014-11-21 15:14:06 -0800 | [diff] [blame] | 50 | GOT=$("${DEBUG_BIN}" "${DEBUG_FLAGS}" glob "${EP}/__debug/logs/*" 2> "${DBGLOG}" | wc -l) \ |
Jiri Simsa | 85aea7b | 2014-10-15 15:48:36 -0700 | [diff] [blame] | 51 | || (dumplogs "${DBGLOG}"; shell_test::fail "line ${LINENO}: failed to run debug") |
| 52 | shell_test::assert_gt "${GOT}" "0" "${LINENO}" |
Cosmos Nicolaou | 8bd8e10 | 2015-01-13 21:52:53 -0800 | [diff] [blame] | 53 | |
Jiri Simsa | 85aea7b | 2014-10-15 15:48:36 -0700 | [diff] [blame] | 54 | # Test logs size. |
Robin Thellend | 663bf48 | 2014-10-01 10:27:10 -0700 | [diff] [blame] | 55 | echo "This is a log file" > "${TMPDIR}/my-test-log-file" |
Matt Rosencrantz | be1a8b5 | 2014-11-21 15:14:06 -0800 | [diff] [blame] | 56 | GOT=$("${DEBUG_BIN}" "${DEBUG_FLAGS}" logs size "${EP}/__debug/logs/my-test-log-file" 2> "${DBGLOG}") \ |
Jiri Simsa | 85aea7b | 2014-10-15 15:48:36 -0700 | [diff] [blame] | 57 | || (dumplogs "${DBGLOG}"; shell_test::fail "line ${LINENO}: failed to run debug") |
Cosmos Nicolaou | 9348da6 | 2014-10-03 14:21:19 -0700 | [diff] [blame] | 58 | WANT=$(echo "This is a log file" | wc -c | tr -d ' ') |
Jiri Simsa | 85aea7b | 2014-10-15 15:48:36 -0700 | [diff] [blame] | 59 | shell_test::assert_eq "${GOT}" "${WANT}" "${LINENO}" |
Robin Thellend | 663bf48 | 2014-10-01 10:27:10 -0700 | [diff] [blame] | 60 | |
Jiri Simsa | 85aea7b | 2014-10-15 15:48:36 -0700 | [diff] [blame] | 61 | # Test logs read. |
Matt Rosencrantz | be1a8b5 | 2014-11-21 15:14:06 -0800 | [diff] [blame] | 62 | GOT=$("${DEBUG_BIN}" "${DEBUG_FLAGS}" logs read "${EP}/__debug/logs/my-test-log-file" 2> "${DBGLOG}") \ |
Jiri Simsa | 85aea7b | 2014-10-15 15:48:36 -0700 | [diff] [blame] | 63 | || (dumplogs "${DBGLOG}"; shell_test::fail "line ${LINENO}: failed to run debug") |
Robin Thellend | 663bf48 | 2014-10-01 10:27:10 -0700 | [diff] [blame] | 64 | WANT="This is a log file" |
Jiri Simsa | 85aea7b | 2014-10-15 15:48:36 -0700 | [diff] [blame] | 65 | shell_test::assert_eq "${GOT}" "${WANT}" "${LINENO}" |
Robin Thellend | 663bf48 | 2014-10-01 10:27:10 -0700 | [diff] [blame] | 66 | |
Robin Thellend | faa083a | 2014-10-22 13:41:18 -0700 | [diff] [blame] | 67 | # Test stats read. |
Matt Rosencrantz | be1a8b5 | 2014-11-21 15:14:06 -0800 | [diff] [blame] | 68 | GOT=$("${DEBUG_BIN}" "${DEBUG_FLAGS}" stats read "${EP}/__debug/stats/ipc/server/routing-id/*/methods/ReadLog/latency-ms" 2> "${DBGLOG}" | wc -l) \ |
Robin Thellend | faa083a | 2014-10-22 13:41:18 -0700 | [diff] [blame] | 69 | || (dumplogs "${DBGLOG}"; shell_test::fail "line ${LINENO}: failed to run debug") |
| 70 | shell_test::assert_gt "${GOT}" "0" "${LINENO}" |
| 71 | |
Matt Rosencrantz | be1a8b5 | 2014-11-21 15:14:06 -0800 | [diff] [blame] | 72 | # 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 Thellend | faa083a | 2014-10-22 13:41:18 -0700 | [diff] [blame] | 83 | # Test stats watch. |
Robin Thellend | 663bf48 | 2014-10-01 10:27:10 -0700 | [diff] [blame] | 84 | local TMP=$(shell::tmp_file) |
| 85 | touch "${TMP}" |
Jiri Simsa | 85aea7b | 2014-10-15 15:48:36 -0700 | [diff] [blame] | 86 | local -r DEBUG_PID=$(shell::run_server "${shell_test_DEFAULT_SERVER_TIMEOUT}" "${TMP}" "${DBGLOG}" \ |
Bogdan Caprita | e737631 | 2014-11-10 13:13:17 -0800 | [diff] [blame] | 87 | "${DEBUG_BIN}" stats watch -raw "${EP}/__debug/stats/ipc/server/routing-id/*/methods/ReadLog/latency-ms") |
Cosmos Nicolaou | f17b602 | 2014-10-14 10:04:20 -0700 | [diff] [blame] | 88 | shell::timed_wait_for "${shell_test_DEFAULT_MESSAGE_TIMEOUT}" "${TMP}" "ReadLog/latency-ms" |
| 89 | kill "${DEBUG_PID}" |
Robin Thellend | 6e44175 | 2014-12-13 11:29:42 -0800 | [diff] [blame] | 90 | grep -q "Count:1 " "${TMP}" || (dumplogs "${TMP}"; shell_test::fail "line ${LINENO}: failed to find expected output") |
Robin Thellend | 663bf48 | 2014-10-01 10:27:10 -0700 | [diff] [blame] | 91 | |
Jiri Simsa | 85aea7b | 2014-10-15 15:48:36 -0700 | [diff] [blame] | 92 | # Test pprof. |
Jing Jin | 89312ff | 2014-10-24 10:42:08 -0700 | [diff] [blame] | 93 | if ! "${DEBUG_BIN}" pprof run "${EP}/__debug/pprof" heap --text &> "${DBGLOG}"; then |
Cosmos Nicolaou | f17b602 | 2014-10-14 10:04:20 -0700 | [diff] [blame] | 94 | dumplogs "${DBGLOG}" |
Robin Thellend | 663bf48 | 2014-10-01 10:27:10 -0700 | [diff] [blame] | 95 | shell_test::fail "line ${LINENO}: unexpected failure." |
| 96 | fi |
| 97 | |
| 98 | shell_test::pass |
| 99 | } |
| 100 | |
| 101 | main "$@" |