-
Notifications
You must be signed in to change notification settings - Fork 130
Add support for resolving BIP 353 Human-Readable Names #630
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
b699f3e
e83f2cf
f816e83
a1b980f
a4d5613
ea7b1ce
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,44 @@ | ||
| name: CI Checks - HRN Integration Tests | ||
|
|
||
| on: [push, pull_request] | ||
|
|
||
| concurrency: | ||
| group: ${{ github.workflow }}-${{ github.ref }} | ||
| cancel-in-progress: true | ||
|
|
||
| jobs: | ||
| build-and-test: | ||
| runs-on: ubuntu-latest | ||
|
|
||
| steps: | ||
| - name: Checkout source code | ||
| uses: actions/checkout@v3 | ||
| - name: Install Rust stable toolchain | ||
| run: | | ||
| curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --profile=minimal --default-toolchain stable | ||
| - name: Enable caching for bitcoind | ||
| id: cache-bitcoind | ||
| uses: actions/cache@v4 | ||
| with: | ||
| path: bin/bitcoind-${{ runner.os }}-${{ runner.arch }} | ||
| key: bitcoind-29.0-${{ runner.os }}-${{ runner.arch }} | ||
| - name: Enable caching for electrs | ||
| id: cache-electrs | ||
| uses: actions/cache@v4 | ||
| with: | ||
| path: bin/electrs-${{ runner.os }}-${{ runner.arch }} | ||
| key: electrs-${{ runner.os }}-${{ runner.arch }} | ||
| - name: Download bitcoind/electrs | ||
| if: "steps.cache-bitcoind.outputs.cache-hit != 'true' || steps.cache-electrs.outputs.cache-hit != 'true'" | ||
| run: | | ||
| source ./scripts/download_bitcoind_electrs.sh | ||
| mkdir -p bin | ||
| mv "$BITCOIND_EXE" bin/bitcoind-${{ runner.os }}-${{ runner.arch }} | ||
| mv "$ELECTRS_EXE" bin/electrs-${{ runner.os }}-${{ runner.arch }} | ||
| - name: Set bitcoind/electrs environment variables | ||
| run: | | ||
| echo "BITCOIND_EXE=$( pwd )/bin/bitcoind-${{ runner.os }}-${{ runner.arch }}" >> "$GITHUB_ENV" | ||
| echo "ELECTRS_EXE=$( pwd )/bin/electrs-${{ runner.os }}-${{ runner.arch }}" >> "$GITHUB_ENV" | ||
| - name: Run HRN Integration Tests | ||
| run: | | ||
| RUSTFLAGS="--cfg no_download --cfg hrn_tests $RUSTFLAGS" cargo test --test integration_tests_hrn | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -72,23 +72,31 @@ jobs: | |
| echo "BITCOIND_EXE=$( pwd )/bin/bitcoind-${{ runner.os }}-${{ runner.arch }}" >> "$GITHUB_ENV" | ||
| echo "ELECTRS_EXE=$( pwd )/bin/electrs-${{ runner.os }}-${{ runner.arch }}" >> "$GITHUB_ENV" | ||
| - name: Build on Rust ${{ matrix.toolchain }} | ||
| env: | ||
| RUSTFLAGS: "--cfg hrn_tests" | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Rather than sprinkling this in everywhere, can we just create a dedicated |
||
| run: cargo build --verbose --color always | ||
| - name: Build with UniFFI support on Rust ${{ matrix.toolchain }} | ||
| if: matrix.build-uniffi | ||
| env: | ||
| RUSTFLAGS: "--cfg hrn_tests" | ||
| run: cargo build --features uniffi --verbose --color always | ||
| - name: Check release build on Rust ${{ matrix.toolchain }} | ||
| env: | ||
| RUSTFLAGS: "--cfg hrn_tests" | ||
| run: cargo check --release --verbose --color always | ||
| - name: Check release build with UniFFI support on Rust ${{ matrix.toolchain }} | ||
| if: matrix.build-uniffi | ||
| env: | ||
| RUSTFLAGS: "--cfg hrn_tests" | ||
| run: cargo check --release --features uniffi --verbose --color always | ||
| - name: Test on Rust ${{ matrix.toolchain }} | ||
| if: "matrix.platform != 'windows-latest'" | ||
| run: | | ||
| RUSTFLAGS="--cfg no_download --cfg cycle_tests" cargo test | ||
| RUSTFLAGS="--cfg no_download --cfg cycle_tests --cfg hrn_tests" cargo test | ||
| - name: Test with UniFFI support on Rust ${{ matrix.toolchain }} | ||
| if: "matrix.platform != 'windows-latest' && matrix.build-uniffi" | ||
| run: | | ||
| RUSTFLAGS="--cfg no_download --cfg cycle_tests" cargo test --features uniffi | ||
| RUSTFLAGS="--cfg no_download --cfg cycle_tests --cfg hrn_tests" cargo test --features uniffi | ||
|
|
||
| linting: | ||
| name: Linting | ||
|
|
@@ -102,14 +110,14 @@ jobs: | |
| rustup component add clippy | ||
| - name: Ban `unwrap` in library code | ||
| run: | | ||
| cargo clippy --lib --verbose --color always -- -A warnings -D clippy::unwrap_used -A clippy::tabs_in_doc_comments | ||
| cargo clippy --lib --features uniffi --verbose --color always -- -A warnings -D clippy::unwrap_used -A clippy::tabs_in_doc_comments | ||
| RUSTFLAGS="--cfg hrn_tests" cargo clippy --lib --verbose --color always -- -A warnings -D clippy::unwrap_used -A clippy::tabs_in_doc_comments | ||
| RUSTFLAGS="--cfg hrn_tests" cargo clippy --lib --features uniffi --verbose --color always -- -A warnings -D clippy::unwrap_used -A clippy::tabs_in_doc_comments | ||
|
|
||
| doc: | ||
| name: Documentation | ||
| runs-on: ubuntu-latest | ||
| env: | ||
| RUSTDOCFLAGS: -Dwarnings | ||
| RUSTDOCFLAGS: "-Dwarnings --cfg hrn_tests" | ||
| steps: | ||
| - uses: actions/checkout@v6 | ||
| - uses: dtolnay/rust-toolchain@nightly | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -176,13 +176,29 @@ class LibraryTest { | |
| config1.storageDirPath = tmpDir1 | ||
| config1.listeningAddresses = listOf(listenAddress1) | ||
| config1.network = Network.REGTEST | ||
| if (System.getenv("HRN_TESTS") == null) { | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We really shouldn't need this commit at all if we provide sane defaults (that unfortunately now need to default to |
||
| config1.hrnConfig = HumanReadableNamesConfig( | ||
| resolutionConfig = HrnResolverConfig.Dns( | ||
| dnsServerAddress = "8.8.8.8:53", | ||
| enableHrnResolutionService = false | ||
| ) | ||
| ) | ||
| } | ||
|
|
||
| println("Config 1: $config1") | ||
|
|
||
| val config2 = defaultConfig() | ||
| config2.storageDirPath = tmpDir2 | ||
| config2.listeningAddresses = listOf(listenAddress2) | ||
| config2.network = Network.REGTEST | ||
| if (System.getenv("HRN_TESTS") == null) { | ||
| config2.hrnConfig = HumanReadableNamesConfig( | ||
| resolutionConfig = HrnResolverConfig.Dns( | ||
| dnsServerAddress = "8.8.8.8:53", | ||
| enableHrnResolutionService = false | ||
| ) | ||
| ) | ||
| } | ||
| println("Config 2: $config2") | ||
|
|
||
| val builder1 = Builder.fromConfig(config1) | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: Please avoid whitespace lines between steps.