Skip to content

Commit 9ab0d85

Browse files
authored
Merge pull request #85 from ankur325/build-fix-osx
Make fails on OS X due to sed differences.
2 parents a852b64 + 0c612c2 commit 9ab0d85

7 files changed

+60
-16
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,5 @@ settings.json
33
build
44
localnet
55
rest-server.out
6+
.DS_Store
7+
.vscode

Dockerfile

+4
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@
1717
############################
1818
FROM golang:alpine AS builder
1919

20+
# Build Delve - This is helpful if you want to do remote debugging by attaching to one of the docker containers remotely
21+
RUN go get github.com/go-delve/delve/cmd/dlv
22+
2023
# Git is required for fetching the dependencies,
2124
# make is required for building.
2225
RUN apk update && apk add --no-cache git make
@@ -33,6 +36,7 @@ FROM alpine:latest
3336

3437
COPY --from=builder /go/bin/dcld /usr/bin/dcld
3538
COPY --from=builder /go/bin/dclcli /usr/bin/dclcli
39+
COPY --from=builder /go/bin/dlv /usr/bin/dlv
3640

3741
VOLUME /root/.dcld
3842
VOLUME /root/.dclcli

README-DEV.md

+17
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,23 @@ dclcli
7373
```
7474
Have a look at [How To](docs/how-to.md) and [CLI Help](docs/cli-help.md) for instructions how to configure and use the CLI.
7575
76+
## Remote Debugging local pool
77+
If you want to remotely debug the node running in docker in order to inspect and step thru the code, modify the following lines in the `docker-compose.yml`. Comment out the default `dcld start` command with the `dlv` as shown below (delve is the go remote debugger)
78+
```
79+
# uncomment following line if starting in debug mode
80+
- "2345:2345"
81+
82+
# command: dcld start
83+
# Please use the following as the entry point if you want to start this node in debug mode for easy debugging
84+
command: dlv --listen=:2345 --headless=true --log=true --log-output=debugger,debuglineerr,gdbwire,lldbout,rpc --accept-multiclient --api-version=2 exec /usr/bin/dcld start
85+
```
86+
After making the changes re-initialize and start the localnet
87+
- `make localnet_stop` -If your localnet is still up
88+
- `make localnet_init`
89+
- `make localnet_start`
90+
91+
Once all the four nodes are running, the last node i.e. node03 will be listing on port `2345` to which you can attach a debug process from any IDE (e.g. Visual Studio) and step thru the code. (p.s. node03 will only start working as validator node once the debugger is attached.). More details about IDE configuration can be found at https://github.com/go-delve/delve/blob/master/Documentation/EditorIntegration.md
92+
7693
## Contributing
7794
Please take into account the following when sending a PR:
7895
1) Make sure there is a license header added:

docker-compose.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -60,12 +60,16 @@ services:
6060
container_name: node3
6161
ports:
6262
- "26662-26663:26656-26657"
63+
# uncomment following line if starting in debug mode
64+
# - "2345:2345"
6365
volumes:
6466
- ./localnet/node3:/root/.dcld:Z
6567
networks:
6668
localnet:
6769
ipv4_address: 192.167.10.5
68-
command: dcld start
70+
command: dcld start
71+
# Please use the following as the entry point if you want to start this node in debug mode for easy debugging
72+
# command: dlv --listen=:2345 --headless=true --log=true --log-output=debugger,debuglineerr,gdbwire,lldbout,rpc --accept-multiclient --api-version=2 exec /usr/bin/dcld start
6973

7074
networks:
7175
localnet:

genlocalnetconfig.sh

+14-6
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,12 @@
1515

1616
set -euo pipefail
1717

18+
SED_EXT=
19+
if [ "$(uname)" == "Darwin" ]; then
20+
# Mac OS X sed needs the file extension when -i flag is used. Keeping it empty as we don't need backupfile
21+
SED_EXT="''"
22+
fi
23+
1824
rm -rf ~/.dclcli
1925
rm -rf ~/.dcld
2026

@@ -127,11 +133,13 @@ id3=$(ls localnet/node3/config/gentx | sed 's/gentx-\(.*\).json/\1/')
127133

128134
# Update address book of the first node
129135
peers="$id0@192.167.10.2:26656,$id1@192.167.10.3:26656,$id2@192.167.10.4:26656,$id3@192.167.10.5:26656"
130-
sed -i "s/persistent_peers = \"\"/persistent_peers = \"$peers\"/g" localnet/node0/config/config.toml
131136

132-
# Make RPC enpoint available externally
137+
# Update address book of the first node
138+
sed -i $SED_EXT "s/persistent_peers = \"\"/persistent_peers = \"$peers\"/g" localnet/node0/config/config.toml
133139

134-
sed -i 's/laddr = "tcp:\/\/127.0.0.1:26657"/laddr = "tcp:\/\/0.0.0.0:26657"/g' localnet/node0/config/config.toml
135-
sed -i 's/laddr = "tcp:\/\/127.0.0.1:26657"/laddr = "tcp:\/\/0.0.0.0:26657"/g' localnet/node1/config/config.toml
136-
sed -i 's/laddr = "tcp:\/\/127.0.0.1:26657"/laddr = "tcp:\/\/0.0.0.0:26657"/g' localnet/node2/config/config.toml
137-
sed -i 's/laddr = "tcp:\/\/127.0.0.1:26657"/laddr = "tcp:\/\/0.0.0.0:26657"/g' localnet/node3/config/config.toml
140+
# Make RPC endpoint available externally
141+
sed -i $SED_EXT "s/persistent_peers = \"\"/persistent_peers = \"$peers\"/g" localnet/node0/config/config.toml
142+
sed -i $SED_EXT 's/laddr = "tcp:\/\/127.0.0.1:26657"/laddr = "tcp:\/\/0.0.0.0:26657"/g' localnet/node0/config/config.toml
143+
sed -i $SED_EXT 's/laddr = "tcp:\/\/127.0.0.1:26657"/laddr = "tcp:\/\/0.0.0.0:26657"/g' localnet/node1/config/config.toml
144+
sed -i $SED_EXT 's/laddr = "tcp:\/\/127.0.0.1:26657"/laddr = "tcp:\/\/0.0.0.0:26657"/g' localnet/node2/config/config.toml
145+
sed -i $SED_EXT 's/laddr = "tcp:\/\/127.0.0.1:26657"/laddr = "tcp:\/\/0.0.0.0:26657"/g' localnet/node3/config/config.toml

integration_tests/ci/run-all.sh

+16-7
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/bash
1+
#!/bin/bash
22
# Copyright 2020 DSR Corporation
33
#
44
# Licensed under the Apache License, Version 2.0 (the "License");
@@ -16,6 +16,11 @@
1616
DETAILED_OUTPUT=true
1717

1818
LOG_PREFIX="[run all] "
19+
SED_EXT=
20+
if [ "$(uname)" == "Darwin" ]; then
21+
# Mac OS X sed needs the file extension when -i flag is used. Keeping it empty as we don't need backupfile
22+
SED_EXT="''"
23+
fi
1924

2025
if ${DETAILED_OUTPUT}; then
2126
DETAILED_OUTPUT_TARGET=/dev/stdout
@@ -59,10 +64,10 @@ patch_consensus_config() {
5964
local NODE_CONFIGS=$(find localnet -type f -name "config.toml" -wholename "*node*")
6065

6166
for NODE_CONFIG in ${NODE_CONFIGS}; do
62-
sed -i 's/timeout_propose = "3s"/timeout_propose = "500ms"/g' "${NODE_CONFIG}"
63-
sed -i 's/timeout_prevote = "1s"/timeout_prevote = "500ms"/g' "${NODE_CONFIG}"
64-
sed -i 's/timeout_precommit = "1s"/timeout_precommit = "500ms"/g' "${NODE_CONFIG}"
65-
sed -i 's/timeout_commit = "5s"/timeout_commit = "500ms"/g' "${NODE_CONFIG}"
67+
sed -i $SED_EXT 's/timeout_propose = "3s"/timeout_propose = "500ms"/g' "${NODE_CONFIG}"
68+
sed -i $SED_EXT 's/timeout_prevote = "1s"/timeout_prevote = "500ms"/g' "${NODE_CONFIG}"
69+
sed -i $SED_EXT 's/timeout_precommit = "1s"/timeout_precommit = "500ms"/g' "${NODE_CONFIG}"
70+
sed -i $SED_EXT 's/timeout_commit = "5s"/timeout_commit = "500ms"/g' "${NODE_CONFIG}"
6671
done
6772
}
6873

@@ -94,7 +99,7 @@ cleanup_pool() {
9499

95100
run_rest_server() {
96101
log "Running cli in rest-server mode"
97-
dclcli rest-server --chain-id dclchain &>>rest-server.out &
102+
dclcli rest-server --chain-id dclchain & >> rest-server.out &
98103
}
99104

100105
stop_rest_server() {
@@ -119,8 +124,10 @@ CLI_SHELL_TESTS=$(find integration_tests/cli -type f -not -name "common.sh")
119124
for CLI_SHELL_TEST in ${CLI_SHELL_TESTS}; do
120125
init_pool
121126

127+
log "*****************************************************************************************"
122128
log "Running $CLI_SHELL_TEST"
123-
129+
log "*****************************************************************************************"
130+
124131
if bash "$CLI_SHELL_TEST" &>${DETAILED_OUTPUT_TARGET}; then
125132
log "$CLI_SHELL_TEST finished successfully"
126133
else
@@ -136,9 +143,11 @@ GO_REST_TESTS=$(find integration_tests/rest -type f)
136143

137144
for GO_REST_TEST in ${GO_REST_TESTS}; do
138145
init_pool
146+
log "Starting the rest server"
139147
run_rest_server
140148

141149
log "Running $GO_REST_TEST"
150+
142151

143152
if go test "$GO_REST_TEST" &>${DETAILED_OUTPUT_TARGET}; then
144153
log "$GO_REST_TEST finished successfully"

integration_tests/cli/validator-demo.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ check_response "$result" "\"validator_pubkey\": \"$vpubkey\""
8080
echo "$result"
8181

8282
echo "Connect CLI to node \"$node\" and check status"
83-
dclcli config node "tcp://$ip:26657"
83+
dclcli config node "tcp://localhost:26665"
8484
result=$(dclcli status)
8585
check_response "$result" "\"moniker\": \"$node\""
8686
echo "$result"
@@ -100,7 +100,7 @@ echo "$result"
100100
sleep 5
101101

102102
echo "Connect CLI to node \"node0\""
103-
dclcli config node $node0
103+
dclcli config node "tcp://localhost:26657"
104104
result=$(dclcli status)
105105
check_response "$result" "\"moniker\": \"node0\""
106106
echo "$result"

0 commit comments

Comments
 (0)