Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
dms3
go-dms3
Commits
d0e5538b
Commit
d0e5538b
authored
10 years ago
by
Juan Batiz-Benet
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #721 from jbenet/fix-daemon-startup-check
sharness/lib: fix daemon startup check
parents
16c1390e
b2da2754
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
23 deletions
+7
-23
test/sharness/lib/test-lib.sh
test/sharness/lib/test-lib.sh
+7
-23
No files found.
test/sharness/lib/test-lib.sh
View file @
d0e5538b
...
...
@@ -142,10 +142,10 @@ test_init_ipfs() {
}
test_config_ipfs_gateway_readonly
()
{
GWAY_ADDR
=
$1
ADDR_GWAY
=
$1
test_expect_success
"prepare config -- gateway address"
'
test "$
GWAY_ADDR
" != "" &&
test_config_set "Addresses.Gateway" "$
GWAY_ADDR
"
test "$
ADDR_GWAY
" != "" &&
test_config_set "Addresses.Gateway" "$
ADDR_GWAY
"
'
# tell the user what's going on if they messed up the call.
...
...
@@ -168,38 +168,22 @@ test_config_ipfs_gateway_writable() {
test_launch_ipfs_daemon
()
{
ADDR_API
=
"/ip4/127.0.0.1/tcp/5001"
NLINES
=
"2"
# ADDR_GWAY will be set if the test_config_ipfs_gateway_* funcs were called.
if
test
"
$ADDR_GWAY
"
!=
""
;
then
NLINES
=
"3"
fi
test_expect_success
"'ipfs daemon' succeeds"
'
ipfs daemon >actual_daemon 2>daemon_err &
'
# we say the daemon is ready when the API server is ready.
# and we make sure there are no errors
ADDR_API
=
"/ip4/127.0.0.1/tcp/5001"
test_expect_success
"'ipfs daemon' is ready"
'
IPFS_PID=$! &&
test_wait_output_n_lines_60_sec actual_daemon $NLINES ||
test_wait_output_n_lines_60_sec actual_daemon 2 &&
test_run_repeat_10_sec "cat actual_daemon | grep \"API server listening on $ADDR_API\"" ||
fsh cat actual_daemon || fsh cat daemon_err
'
test_expect_success
"'ipfs daemon' output includes API address"
'
cat actual_daemon | grep "API server listening on $ADDR_API" ||
fsh cat actual_daemon ||
fsh "cat actual_daemon | grep \"API server listening on $ADDR_API\"" ||
fsh cat daemon_err
'
if
test
"
$ADDR_GWAY
"
!=
""
;
then
test_expect_success
"'ipfs daemon' output includes Gateway address"
'
cat actual_daemon | grep "Gateway server listening on $ADDR_GWAY" ||
fsh cat actual_daemon ||
fsh "cat actual_daemon | grep \"Gateway server listening on $ADDR_GWAY\"" ||
test_run_repeat_10_sec "cat actual_daemon | grep \"Gateway server listening on $ADDR_GWAY\"" ||
fsh cat daemon_err
'
fi
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment