Suharsh Sivakumar | a76dba6 | 2014-12-22 16:00:34 -0800 | [diff] [blame] | 1 | #!/bin/bash |
| 2 | |
| 3 | # Test that tests the routes of the identityd server. |
| 4 | |
Jiri Simsa | 3540e3a | 2014-12-26 07:54:09 -0800 | [diff] [blame] | 5 | source "$(go list -f {{.Dir}} v.io/core/shell/lib)/shell_test.sh" |
Suharsh Sivakumar | a76dba6 | 2014-12-22 16:00:34 -0800 | [diff] [blame] | 6 | |
| 7 | readonly WORKDIR="${shell_test_WORK_DIR}" |
| 8 | |
| 9 | build() { |
Jiri Simsa | 764efb7 | 2014-12-25 20:57:03 -0800 | [diff] [blame] | 10 | IDENTITYD_BIN="$(shell_test::build_go_binary 'v.io/core/veyron/services/identity/identityd_test')" |
| 11 | PRINCIPAL_BIN="$(shell_test::build_go_binary 'v.io/core/veyron/tools/principal')" |
Suharsh Sivakumar | a76dba6 | 2014-12-22 16:00:34 -0800 | [diff] [blame] | 12 | } |
| 13 | |
Suharsh Sivakumar | a76dba6 | 2014-12-22 16:00:34 -0800 | [diff] [blame] | 14 | # runprincipal starts the principal tool, extracts the url and curls it, to avoid the |
| 15 | # dependence the principal tool has on a browser. |
| 16 | runprincipal() { |
| 17 | local PFILE="${WORKDIR}/principalfile" |
| 18 | # Start the tool in the background. |
| 19 | "${PRINCIPAL_BIN}" seekblessings --browser=false --from=https://localhost:8125/google -v=3 2> "${PFILE}" & |
| 20 | sleep 2 |
| 21 | # Search for the url and run it. |
| 22 | cat "${PFILE}" | grep https | |
| 23 | while read url; do |
| 24 | RESULT=$(curl -L --insecure -c ${WORKDIR}/cookiejar $url); |
| 25 | # Clear out the file |
| 26 | echo $RESULT; |
| 27 | break; |
| 28 | done; |
| 29 | rm "${PFILE}"; |
| 30 | } |
| 31 | |
| 32 | main() { |
| 33 | cd "${WORKDIR}" |
| 34 | build |
| 35 | |
Suharsh Sivakumar | a76dba6 | 2014-12-22 16:00:34 -0800 | [diff] [blame] | 36 | shell_test::setup_server_test || shell_test::fail "line ${LINENO} failed to setup server test" |
| 37 | unset VEYRON_CREDENTIALS |
| 38 | |
| 39 | # Start the identityd server in test identity server. |
Nicolas LaCasse | 91a8f24 | 2015-01-06 15:29:31 -0800 | [diff] [blame] | 40 | shell_test::start_server "${IDENTITYD_BIN}" --host=localhost -veyron.tcp.address=127.0.0.1:0 |
Suharsh Sivakumar | a76dba6 | 2014-12-22 16:00:34 -0800 | [diff] [blame] | 41 | echo Identityd Log File: $START_SERVER_LOG_FILE |
| 42 | export VEYRON_CREDENTIALS="$(shell::tmp_dir)" |
| 43 | |
| 44 | # Test an initial seekblessings call, with a specified VEYRON_CREDENTIALS. |
| 45 | WANT="Received blessings" |
| 46 | GOT=$(runprincipal) |
| 47 | if [[ ! "${GOT}" =~ "${WANT}" ]]; then |
| 48 | shell_test::fail "line ${LINENO} failed first seekblessings call" |
| 49 | fi |
| 50 | # Test that a subsequent call succeed with the same credentials. This means that the blessings and principal from the first call works correctly. |
| 51 | GOT=$(runprincipal) |
| 52 | if [[ ! "${GOT}" =~ "${WANT}" ]]; then |
| 53 | shell_test::fail "line ${LINENO} failed second seekblessings call" |
| 54 | fi |
| 55 | |
| 56 | shell_test::pass |
| 57 | } |
| 58 | |
Jiri Simsa | c0a2865 | 2014-12-25 15:42:39 -0800 | [diff] [blame] | 59 | main "$@" |