t0060-daemon.sh 4.25 KB
Newer Older
1 2 3 4 5 6 7 8 9 10
#!/bin/sh
#
# Copyright (c) 2014 Juan Batiz-Benet
# MIT Licensed; see the LICENSE file in this repository.
#

test_description="Test daemon command"

. lib/test-lib.sh

11

Jeromy's avatar
Jeromy committed
12
test_init_ipfs
Stephen Whitmore's avatar
Stephen Whitmore committed
13
test_launch_ipfs_daemon
14

Stephen Whitmore's avatar
Stephen Whitmore committed
15
# this errors if we didn't --init $IPFS_PATH correctly
16
test_expect_success "'ipfs config Identity.PeerID' works" '
Łukasz Magiera's avatar
Łukasz Magiera committed
17
  PEERID=$(ipfs config Identity.PeerID)
18 19
'

20
test_expect_success "'ipfs swarm addrs local' works" '
Łukasz Magiera's avatar
Łukasz Magiera committed
21
  ipfs swarm addrs local >local_addrs
22 23
'

24
test_expect_success "ipfs swarm addrs listen; works" '
Łukasz Magiera's avatar
Łukasz Magiera committed
25
  ipfs swarm addrs listen >listen_addrs
26 27
'

28
test_expect_success "ipfs peer id looks good" '
Łukasz Magiera's avatar
Łukasz Magiera committed
29
  test_check_peerid "$PEERID"
30 31
'

rht's avatar
rht committed
32 33 34
# this is for checking SetAllowedOrigins race condition for the api and gateway
# See https://github.com/ipfs/go-ipfs/pull/1966
test_expect_success "ipfs API works with the correct allowed origin port" '
Łukasz Magiera's avatar
Łukasz Magiera committed
35
  curl -s -X GET -H "Origin:http://localhost:$API_PORT" -I "http://$API_ADDR/api/v0/version"
rht's avatar
rht committed
36 37 38
'

test_expect_success "ipfs gateway works with the correct allowed origin port" '
Łukasz Magiera's avatar
Łukasz Magiera committed
39
  curl -s -X GET -H "Origin:http://localhost:$GWAY_PORT" -I "http://$GWAY_ADDR/api/v0/version"
rht's avatar
rht committed
40 41
'

42
test_expect_success "ipfs daemon output looks good" '
Łukasz Magiera's avatar
Łukasz Magiera committed
43 44 45 46 47 48 49 50
  STARTFILE="ipfs cat /ipfs/$HASH_WELCOME_DOCS/readme" &&
  echo "Initializing daemon..." >expected_daemon &&
  sed "s/^/Swarm listening on /" listen_addrs >>expected_daemon &&
  sed "s/^/Swarm announcing /" local_addrs >>expected_daemon &&
  echo "API server listening on '$API_MADDR'" >>expected_daemon &&
  echo "Gateway (readonly) server listening on '$GWAY_MADDR'" >>expected_daemon &&
  echo "Daemon is ready" >>expected_daemon &&
  test_cmp expected_daemon actual_daemon
51 52
'

53
test_expect_success ".ipfs/ has been created" '
Łukasz Magiera's avatar
Łukasz Magiera committed
54 55 56 57 58
  test -d ".ipfs" &&
  test -f ".ipfs/config" &&
  test -d ".ipfs/datastore" &&
  test -d ".ipfs/blocks" ||
  test_fsh ls -al .ipfs
59 60
'

61 62 63
# begin same as in t0010

test_expect_success "ipfs version succeeds" '
Łukasz Magiera's avatar
Łukasz Magiera committed
64
  ipfs version >version.txt
65 66 67
'

test_expect_success "ipfs version output looks good" '
Łukasz Magiera's avatar
Łukasz Magiera committed
68 69
  egrep "^ipfs version [0-9]+\.[0-9]+\.[0-9]" version.txt >/dev/null ||
  test_fsh cat version.txt
70 71 72
'

test_expect_success "ipfs help succeeds" '
Łukasz Magiera's avatar
Łukasz Magiera committed
73
  ipfs help >help.txt
74 75 76
'

test_expect_success "ipfs help output looks good" '
Łukasz Magiera's avatar
Łukasz Magiera committed
77 78 79
  egrep -i "^Usage" help.txt >/dev/null &&
  egrep "ipfs .* <command>" help.txt >/dev/null ||
  test_fsh cat help.txt
80 81
'

Christian Couder's avatar
Christian Couder committed
82 83
# netcat (nc) is needed for the following test
test_expect_success "nc is available" '
Łukasz Magiera's avatar
Łukasz Magiera committed
84
  type nc >/dev/null
Christian Couder's avatar
Christian Couder committed
85
'
86

Christian Couder's avatar
Christian Couder committed
87
# check transport is encrypted
rht's avatar
rht committed
88
test_expect_success "transport should be encrypted" '
Łukasz Magiera's avatar
Łukasz Magiera committed
89 90 91 92
  nc -w 1 localhost $SWARM_PORT > swarmnc < ../t0060-data/mss-ls &&
  grep -q "/secio" swarmnc &&
  test_must_fail grep -q "/plaintext/1.0.0" swarmnc ||
  test_fsh cat swarmnc
93 94
'

95
test_expect_success "output from streaming commands works" '
Łukasz Magiera's avatar
Łukasz Magiera committed
96
  test_expect_code 28 curl -m 5 http://localhost:$API_PORT/api/v0/stats/bw\?poll=true > statsout
97 98 99
'

test_expect_success "output looks good" '
Łukasz Magiera's avatar
Łukasz Magiera committed
100 101 102 103
  grep TotalIn statsout > /dev/null &&
  grep TotalOut statsout > /dev/null &&
  grep RateIn statsout > /dev/null &&
  grep RateOut statsout >/dev/null
104 105
'

106 107
# end same as in t0010

108
test_expect_success "daemon is still running" '
Łukasz Magiera's avatar
Łukasz Magiera committed
109
  kill -0 $IPFS_PID
110 111 112
'

test_expect_success "'ipfs daemon' can be killed" '
Łukasz Magiera's avatar
Łukasz Magiera committed
113
  test_kill_repeat_10_sec $IPFS_PID
114 115
'

116
test_expect_success "'ipfs daemon' should be able to run with a pipe attached to stdin (issue #861)" '
Łukasz Magiera's avatar
Łukasz Magiera committed
117 118 119 120
  yes | ipfs daemon >stdin_daemon_out 2>stdin_daemon_err &
  DAEMON_PID=$!
  test_wait_for_file 20 100ms "$IPFS_PATH/api" &&
  test_set_address_vars stdin_daemon_out
Jeromy's avatar
Jeromy committed
121 122 123
'

test_expect_success "daemon with pipe eventually becomes live" '
Łukasz Magiera's avatar
Łukasz Magiera committed
124 125 126
  pollEndpoint -host='$API_MADDR' -ep=/version -v -tout=1s -tries=10 >stdin_poll_apiout 2>stdin_poll_apierr &&
  test_kill_repeat_10_sec $DAEMON_PID ||
  test_fsh cat stdin_daemon_out || test_fsh cat stdin_daemon_err || test_fsh cat stdin_poll_apiout || test_fsh cat stdin_poll_apierr
127 128
'

129
ulimit -S -n 512
Jeromy's avatar
Jeromy committed
130 131 132 133
TEST_ULIMIT_PRESET=1
test_launch_ipfs_daemon

test_expect_success "daemon raised its fd limit" '
Łukasz Magiera's avatar
Łukasz Magiera committed
134
  grep "raised file descriptor limit to 2048." actual_daemon > /dev/null
Jeromy's avatar
Jeromy committed
135 136
'

137
test_expect_success "daemon actually can handle 2048 file descriptors" '
Łukasz Magiera's avatar
Łukasz Magiera committed
138
  hang-fds -hold=2s 2000 '$API_MADDR' > /dev/null
139 140 141
'

test_expect_success "daemon didnt throw any errors" '
Łukasz Magiera's avatar
Łukasz Magiera committed
142
  test_expect_code 1 grep "too many open files" daemon_err
143
'
144

Jeromy's avatar
Jeromy committed
145 146
test_kill_ipfs_daemon

147
test_done