Skip to content

Commit a9391b0

Browse files
authored
services/horizon: Update guide for developers (stellar#5337)
1 parent f30d114 commit a9391b0

File tree

4 files changed

+65
-54
lines changed

4 files changed

+65
-54
lines changed

services/horizon/docker/docker-compose.standalone.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ services:
1414

1515
core:
1616
platform: linux/amd64
17-
image: ${CORE_IMAGE:-stellar/stellar-core:19.11.0-1323.7fb6d5e88.focal}
17+
image: ${CORE_IMAGE:-stellar/stellar-core:21}
1818
depends_on:
1919
- core-postgres
2020
- core-upgrade

services/horizon/docker/start.sh

+12-2
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,30 @@
22

33
set -e
44

5+
# Use the dirname directly, without changing directories
6+
if [[ $BASH_SOURCE = */* ]]; then
7+
DOCKER_DIR=${BASH_SOURCE%/*}/
8+
else
9+
DOCKER_DIR=./
10+
fi
11+
12+
echo "Docker dir is $DOCKER_DIR"
13+
514
NETWORK=${1:-testnet}
615

716
case $NETWORK in
817
standalone)
9-
DOCKER_FLAGS="-f docker-compose.yml -f docker-compose.standalone.yml"
18+
DOCKER_FLAGS="-f ${DOCKER_DIR}docker-compose.yml -f ${DOCKER_DIR}docker-compose.standalone.yml"
1019
echo "running on standalone network"
1120
;;
1221

1322
pubnet)
14-
DOCKER_FLAGS="-f docker-compose.yml -f docker-compose.pubnet.yml"
23+
DOCKER_FLAGS="-f ${DOCKER_DIR}docker-compose.yml -f ${DOCKER_DIR}docker-compose.pubnet.yml"
1524
echo "running on public network"
1625
;;
1726

1827
testnet)
28+
DOCKER_FLAGS="-f ${DOCKER_DIR}docker-compose.yml"
1929
echo "running on test network"
2030
;;
2131

services/horizon/internal/docs/GUIDE_FOR_DEVELOPERS.md

+50-49
Original file line numberDiff line numberDiff line change
@@ -6,25 +6,25 @@ This document describes how to build Horizon from source, so that you can test a
66
- A [Unix-like](https://en.wikipedia.org/wiki/Unix-like) operating system with the common core commands (cp, tar, mkdir, bash, etc.)
77
- Go (this repository is officially supported on the last [two releases of Go](https://go.dev/doc/devel/release))
88
- [Git](https://git-scm.com/book/en/v2/Getting-Started-Installing-Git) (to check out Horizon's source code)
9-
- [mercurial](https://www.mercurial-scm.org/) (needed for `go-dep`)
109
- [Docker](https://www.docker.com/products/docker-desktop)
10+
- [stellar-core](#building-stellar-core)
1111

1212
## The Go Monorepo
1313
All the code for Horizon resides in our Go monorepo.
1414
```bash
15-
git clone https://github.com/go.git
15+
git clone https://github.com/stellar/go.git
1616
```
1717
If you want to contribute to the project, consider forking the repository and cloning the fork instead.
1818

1919
## Getting Started with Running Horizon
2020
The [start.sh](/services/horizon/docker/start.sh) script builds horizon from current source, and then runs docker-compose to start the docker containers with runtime configs for horizon, postgres, and optionally core if the optional `standalone` network parameter was included.
2121
The script takes one optional parameter which configures the Stellar network used by the docker containers. If no parameter is supplied, the containers will run on the Stellar test network. Read more about the public and private networks in the [public documentation](https://developers.stellar.org/docs/fundamentals-and-concepts/testnet-and-pubnet#testnet)
2222

23-
`./start.sh pubnet` will run the containers on the Stellar public network.
23+
`./services/horizon/docker/start.sh pubnet` will run the containers on the Stellar public network.
2424

25-
`./start.sh standalone` will run the containers on a private standalone Stellar network.
25+
`./services/horizon/docker/start.sh standalone` will run the containers on a private standalone Stellar network.
2626

27-
`./start.sh testnet` will run the containers on the Stellar test network.
27+
`./services/horizon/docker/start.sh testnet` will run the containers on the Stellar test network.
2828

2929
The following ports will be exposed:
3030
- Horizon: **8000**
@@ -42,47 +42,21 @@ We will now configure a development environment to run Horizon service locally w
4242
### Building Stellar Core
4343
Horizon requires an instance of stellar-core binary on the same host. This is referred to as the `Captive Core`. Since, we are running horizon for dev purposes, we recommend considering two approaches to get the stellar-core binary, if saving time is top priority and your development machine is on a linux debian o/s, then consider installing the debian package, otherwise the next option available is to compile the core source directly to binary on your machine, refer to [INSTALL.md](https://github.com/stellar/stellar-core/blob/master/INSTALL.md) file for the instructions on both approaches.
4444

45-
### Building Horizon
46-
47-
1. Change to the horizon services directory - `cd go/services/horizon/`.
48-
2. Compile the Horizon binary: `go build -o stellar-horizon && go install`. You should see the resulting `stellar-horizon` executable in `go/services/horizon`.
49-
3. Add the executable to your PATH in your `~/.bashrc` or equivalent, for easy access: `export PATH=$PATH:{absolute-path-to-horizon-folder}`
50-
51-
Open a new terminal. Confirm everything worked by running `stellar-horizon --help` successfully. You should see an informative message listing the command line options supported by Horizon.
52-
5345
### Database Setup
5446

55-
Horizon uses a Postgres database backend to record information ingested from an associated Stellar Core. The unit and integration tests will also attempt to reference a Postgres db server at ``localhost:5432`` with trust auth method enabled by default for ``postgres`` user. You can either install the server locally or run any type of docker container that hosts the database server. We recommend using the [docker-compose.yml](/services/horizon/docker/docker-compose.yml) file in the ``docker`` folder:
47+
Horizon uses a Postgres database to record information ingested from Stellar Core. The unit and integration tests also expect a Postgres DB to be running at ``localhost:5432`` with trust auth method enabled by default for the ``postgres`` user. You can run the following command to spin up a Horizon database as a docker container:
5648
```bash
57-
docker-compose -f ./docker/docker-compose.yml up horizon-postgres
49+
docker-compose -f ./services/horizon/docker/docker-compose.yml up -d horizon-postgres
5850
```
59-
This starts a Horizon Postgres docker container and exposes it on the port 5432. Note that while Horizon will run locally, it's PostgresQL db will run in docker.
51+
The docker container will accept database connections on port 5432. Note that while Horizon will run locally, it's PostgresQL db will run in docker.
6052

6153
To shut down all docker containers and free up resources, run the following command:
6254
```bash
63-
docker-compose -f ./docker/docker-compose.yml down
64-
```
65-
66-
### Run tests
67-
At this point you should be able to run Horizon's unit tests:
68-
```bash
69-
cd go/services/horizon/
70-
go test ./...
55+
docker-compose -f ./services/horizon/docker/docker-compose.yml down --remove-orphans -v
7156
```
7257

73-
To run the integration tests, you need to set some environment variables:
58+
### Running Horizon in an IDE
7459

75-
```bash
76-
export HORIZON_INTEGRATION_TESTS_ENABLED=true
77-
export HORIZON_INTEGRATION_TESTS_CORE_MAX_SUPPORTED_PROTOCOL=19
78-
export HORIZON_INTEGRATION_TESTS_DOCKER_IMG=stellar/stellar-core:19.11.0-1323.7fb6d5e88.focal
79-
go test -race -timeout 25m -v ./services/horizon/internal/integration/...
80-
```
81-
Note that this will also require a Postgres instance running on port 5432 either locally or exposed through a docker container. Also note that the ``POSTGRES_HOST_AUTH_METHOD`` has been enabled.
82-
83-
### Setup Debug Configuration in IDE
84-
85-
#### Code Debug
8660
Add a debug configuration in your IDE to attach a debugger to the local Horizon process and set breakpoints in your code. Here is an example configuration for VS Code:
8761

8862
```json
@@ -94,18 +68,45 @@ Add a debug configuration in your IDE to attach a debugger to the local Horizon
9468
"program": "${workspaceRoot}/services/horizon/main.go",
9569
"env": {
9670
"DATABASE_URL": "postgres://postgres@localhost:5432/horizon?sslmode=disable",
97-
"CAPTIVE_CORE_CONFIG_APPEND_PATH": "./ingest/ledgerbackend/configs/captive-core-testnet.cfg",
98-
"HISTORY_ARCHIVE_URLS": "https://history.stellar.org/prd/core-testnet/core_testnet_001,https://history.stellar.org/prd/core-testnet/core_testnet_002",
99-
"NETWORK_PASSPHRASE": "Test SDF Network ; September 2015",
71+
"APPLY_MIGRATIONS": "true",
72+
"NETWORK": "testnet",
10073
"PER_HOUR_RATE_LIMIT": "0"
10174
},
10275
"args": []
10376
}
10477
```
10578
If all is well, you should see ingest logs written to standard out. You can read more about configuring the different environment variables in [Configuring](https://developers.stellar.org/docs/run-api-server/configuring) section of our public documentation.
10679

107-
#### Test Debug
108-
You can also use a similar configuration to debug the integration and unit tests. For e.g. here is a configuration for debugging the ```TestFilteringAccountWhiteList``` integration test.
80+
### Building Horizon Binary
81+
82+
1. Change to the horizon services directory - `cd go/services/horizon/`.
83+
2. Compile the Horizon binary: `go build -o stellar-horizon && go install`. You should see the resulting `stellar-horizon` executable in `go/services/horizon`.
84+
3. Add the executable to your PATH in your `~/.bashrc` or equivalent, for easy access: `export PATH=$PATH:{absolute-path-to-horizon-folder}`
85+
86+
Open a new terminal. Confirm everything worked by running `stellar-horizon --help` successfully. You should see an informative message listing the command line options supported by Horizon.
87+
88+
### Run tests
89+
90+
Once you have [installed stellar-core](#building-stellar-core) on your machine and have the
91+
[Horizon database](#database-setup) up and running, you should be able to run Horizon's unit tests:
92+
93+
```bash
94+
cd go/services/horizon/
95+
go test ./...
96+
```
97+
98+
To run the integration tests, you need to set some environment variables:
99+
100+
```bash
101+
export HORIZON_INTEGRATION_TESTS_ENABLED=true
102+
export HORIZON_INTEGRATION_TESTS_CORE_MAX_SUPPORTED_PROTOCOL=21
103+
export HORIZON_INTEGRATION_TESTS_DOCKER_IMG=stellar/stellar-core:21
104+
go test -race -timeout 25m -v ./services/horizon/internal/integration/...
105+
```
106+
107+
#### Running tests in IDE
108+
109+
You can debug integration and unit tests in your IDE. For example, here is a VS Code configuration for debugging the ```TestFilteringAccountWhiteList``` integration test.
109110
```json
110111
{
111112
"name": "Debug Test Function",
@@ -115,8 +116,8 @@ You can also use a similar configuration to debug the integration and unit tests
115116
"program": "${workspaceRoot}/services/horizon/internal/integration",
116117
"env": {
117118
"HORIZON_INTEGRATION_TESTS_ENABLED": "true",
118-
"HORIZON_INTEGRATION_TESTS_CORE_MAX_SUPPORTED_PROTOCOL": "19",
119-
"HORIZON_INTEGRATION_TESTS_DOCKER_IMG": "stellar/stellar-core:19.11.0-1323.7fb6d5e88.focal"
119+
"HORIZON_INTEGRATION_TESTS_CORE_MAX_SUPPORTED_PROTOCOL": "21",
120+
"HORIZON_INTEGRATION_TESTS_DOCKER_IMG": "stellar/stellar-core:21"
120121
},
121122
"args": [
122123
"-test.run",
@@ -166,18 +167,18 @@ this customization is only applicable when running a standalone network, as it r
166167

167168
## Using a specific version of Stellar Core
168169

169-
By default, the Docker Compose file is configured to use version 19 of Protocol and Stellar Core. You can specify optional environment variables from the command shell for stating version overrides for either the docker-compose or start.sh invocations.
170+
By default, the Docker Compose file is configured to use version 21 of Protocol and Stellar Core. You can specify optional environment variables from the command shell for stating version overrides for either the docker-compose or start.sh invocations.
170171
```bash
171-
export PROTOCOL_VERSION="19"
172-
export CORE_IMAGE="stellar/stellar-core:19.11.0-1323.7fb6d5e88.focal"
173-
export STELLAR_CORE_VERSION="19.11.0-1323.7fb6d5e88.focal"
172+
export PROTOCOL_VERSION="21"
173+
export CORE_IMAGE="stellar/stellar-core:21"
174+
export STELLAR_CORE_VERSION="21.0.0-1872.c6f474133.focal"
174175
```
175176

176177
Example:
177178

178-
Runs Stellar Protocol and Core version 19, for any mode of testnet, standalone, pubnet
179+
Runs Stellar Protocol and Core version 21, for any mode of testnet, standalone, pubnet
179180
```bash
180-
PROTOCOL_VERSION=19 CORE_IMAGE=stellar/stellar-core:19.11.0-1323.7fb6d5e88.focal STELLAR_CORE_VERSION=19.11.0-1323.7fb6d5e88.focal ./start.sh [standalone|pubnet]
181+
PROTOCOL_VERSION=21 CORE_IMAGE=stellar/stellar-core:21 STELLAR_CORE_VERSION=21.0.0-1872.c6f474133.focal ./start.sh [standalone|pubnet]
181182
```
182183

183184
## <a name="logging"></a> **Logging**

services/horizon/internal/docs/TESTING_NOTES.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ go test github.com/stellar/go/services/horizon/...
1515
Before running integration tests, you also need to set some environment variables:
1616
```bash
1717
export HORIZON_INTEGRATION_TESTS_ENABLED=true
18-
export HORIZON_INTEGRATION_TESTS_CORE_MAX_SUPPORTED_PROTOCOL=19
19-
export HORIZON_INTEGRATION_TESTS_DOCKER_IMG=stellar/stellar-core:19.11.0-1323.7fb6d5e88.focal
18+
export HORIZON_INTEGRATION_TESTS_CORE_MAX_SUPPORTED_PROTOCOL=21
19+
export HORIZON_INTEGRATION_TESTS_DOCKER_IMG=stellar/stellar-core:21.0.0-1872.c6f474133.focal
2020
```
2121
Make sure to check [horizon.yml](/.github/workflows/horizon.yml) for the latest core image version.
2222

0 commit comments

Comments
 (0)