blob: 5b30587dcc9a5bbe0059c2caae3c02bdebd63ef5 [file] [log] [blame]
Suharsh Sivakumara76dba62014-12-22 16:00:34 -08001#!/bin/bash
2
3# Test that tests the routes of the identityd server.
4
Jiri Simsa3540e3a2014-12-26 07:54:09 -08005source "$(go list -f {{.Dir}} v.io/core/shell/lib)/shell_test.sh"
Suharsh Sivakumara76dba62014-12-22 16:00:34 -08006
7readonly WORKDIR="${shell_test_WORK_DIR}"
8
9build() {
Jiri Simsa764efb72014-12-25 20:57:03 -080010 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 Sivakumara76dba62014-12-22 16:00:34 -080012}
13
Suharsh Sivakumara76dba62014-12-22 16:00:34 -080014# runprincipal starts the principal tool, extracts the url and curls it, to avoid the
15# dependence the principal tool has on a browser.
16runprincipal() {
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
32main() {
33 cd "${WORKDIR}"
34 build
35
Suharsh Sivakumara76dba62014-12-22 16:00:34 -080036 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 LaCasse91a8f242015-01-06 15:29:31 -080040 shell_test::start_server "${IDENTITYD_BIN}" --host=localhost -veyron.tcp.address=127.0.0.1:0
Suharsh Sivakumara76dba62014-12-22 16:00:34 -080041 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 Simsac0a28652014-12-25 15:42:39 -080059main "$@"