Skip to content

Conversation

@GeorgeTsagk
Copy link
Member

@GeorgeTsagk GeorgeTsagk commented Dec 18, 2025

Description

Adds test coverage for ComputeView function of tapchannel package.

Depends on lightningnetwork/lnd#10454
Depends on lightningnetwork/lnd#10434

@gemini-code-assist
Copy link

Summary of Changes

Hello @GeorgeTsagk, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed!

This pull request focuses on enhancing the robustness of the tapchannel package by introducing extensive unit tests for the ComputeView function. These tests cover a wide range of HTLC (Hashed Timelock Contract) processing scenarios, ensuring accurate balance calculations and update filtering. Concurrently, minor adjustments were made to the HTLC processing logic to correctly account for specific height conditions, and project dependencies were updated to reflect ongoing development in related lnd components.

Highlights

  • New Test Coverage: A comprehensive suite of unit tests has been added for the ComputeView function in the tapchannel package, significantly improving its reliability and ensuring correct behavior across various scenarios.
  • HTLC Processing Logic Refinement: The logic within processRemoveEntry and processAddEntry in tapchannel/commitment.go has been updated to correctly handle HTLC entries where the removeHeight or addHeight is zero, ensuring these are processed as intended.
  • Dependency Updates: The go.mod and go.sum files have been updated to include a newer version of github.com/btcsuite/btcd/btcec/v2 and temporary replace directives pointing to a specific lnd fork by the author, aligning with external dependencies.

🧠 New Feature in Public Preview: You can now enable Memory to help Gemini Code Assist learn from your team's feedback. This makes future code reviews more consistent and personalized to your project's style. Click here to enable Memory in your admin console.

Using Gemini Code Assist

The full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips.

Invoking Gemini

You can request assistance from Gemini at any point by creating a comment using either /gemini <command> or @gemini-code-assist <command>. Below is a summary of the supported commands on the current page.

Feature Command Description
Code Review /gemini review Performs a code review for the current pull request in its current state.
Pull Request Summary /gemini summary Provides a summary of the current pull request in its current state.
Comment @gemini-code-assist Responds in comments when explicitly tagged, both in pull request comments and review comments.
Help /gemini help Displays a list of available commands.

Customization

To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a .gemini/ folder in the base of the repository. Detailed instructions can be found here.

Limitations & Feedback

Gemini Code Assist may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments. If you're interested in giving your feedback about your experience with Gemini Code Assist for Github and other Google products, sign up here.

You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension.

Footnotes

  1. Review the Privacy Notices, Generative AI Prohibited Use Policy, Terms of Service, and learn how to configure Gemini Code Assist in GitHub here. Gemini can make mistakes, so double check it and use code with caution.

Copy link

@gemini-code-assist gemini-code-assist bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Code Review

This pull request adds comprehensive test coverage for the ComputeView function in the tapchannel package, which is a great addition for ensuring the correctness of the commitment logic. The new tests are well-structured and cover a wide range of scenarios.

The PR also includes a small but important fix in processRemoveEntry and processAddEntry to correctly handle HTLC entries that are being added to the current commitment state.

I have one suggestion for the new test file to improve maintainability by replacing magic numbers with named constants and to prevent a potential issue with duplicate HTLC indexes in test data.

Comment on lines +91 to +155
desc := lnwallet.NewTestAuxHtlcDescriptor(
lnwire.ChannelID{},
lnwallet.PaymentHash{byte(htlc.htlcIndex)},
100,
lnwire.MilliSatoshi(10000000),
htlc.htlcIndex,
htlc.parentIndex,
htlc.entryType,
makeAssetRecords(htlc.amount),
htlc.addHeightLocal,
htlc.addHeightRemote,
htlc.removeHeightLocal,
htlc.removeHeightRemote,
)
localDescriptors = append(localDescriptors, desc)
}

// Create remote HTLCs
for _, htlc := range cfg.remoteHtlcs {
desc := lnwallet.NewTestAuxHtlcDescriptor(
lnwire.ChannelID{},
lnwallet.PaymentHash{byte(htlc.htlcIndex)},
100,
lnwire.MilliSatoshi(10000000),
htlc.htlcIndex,
htlc.parentIndex,
htlc.entryType,
makeAssetRecords(htlc.amount),
htlc.addHeightLocal,
htlc.addHeightRemote,
htlc.removeHeightLocal,
htlc.removeHeightRemote,
)
remoteDescriptors = append(remoteDescriptors, desc)
}

// Add non-asset HTLC if requested
if cfg.localNonAsset {
localDescriptors = append(
localDescriptors,
lnwallet.AuxHtlcDescriptor{
ChanID: lnwire.ChannelID{},
RHash: lnwallet.PaymentHash{},
Timeout: 100,
Amount: lnwire.MilliSatoshi(10000000),
HtlcIndex: 999,
ParentIndex: 0,
CustomRecords: nil, // No assets
},
)
}
if cfg.remoteNonAsset {
remoteDescriptors = append(
remoteDescriptors,
lnwallet.AuxHtlcDescriptor{
ChanID: lnwire.ChannelID{},
RHash: lnwallet.PaymentHash{},
Timeout: 100,
Amount: lnwire.MilliSatoshi(10000000),
HtlcIndex: 999,
ParentIndex: 0,
CustomRecords: nil, // No assets
},
)
}

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The createView function uses several magic numbers for creating test HTLC descriptors (e.g., 100 for timeout, 10000000 for amount, 999 for HTLC index). It's a good practice to define these as constants to improve readability and maintainability.

Additionally, both local and remote non-asset HTLCs are created with the same HtlcIndex of 999. This could cause conflicts in tests where both are used. Using distinct constants for these indexes will prevent this potential issue.

I suggest defining the following constants at the file level:

const ( testBtcTimeout = 100 testBtcAmount = lnwire.MilliSatoshi(10000000) localNonAssetHtlcIndex = 999 remoteNonAssetHtlcIndex = 998 )

And then using them within createView for both asset and non-asset HTLCs.

desc := lnwallet.NewTestAuxHtlcDescriptor(	lnwire.ChannelID{},	lnwallet.PaymentHash{byte(htlc.htlcIndex)}, testBtcTimeout, testBtcAmount, htlc.htlcIndex, htlc.parentIndex, htlc.entryType, makeAssetRecords(htlc.amount), htlc.addHeightLocal, htlc.addHeightRemote, htlc.removeHeightLocal, htlc.removeHeightRemote,	) localDescriptors = append(localDescriptors, desc)	} // Create remote HTLCs for _, htlc := range cfg.remoteHtlcs { desc := lnwallet.NewTestAuxHtlcDescriptor(	lnwire.ChannelID{},	lnwallet.PaymentHash{byte(htlc.htlcIndex)}, testBtcTimeout, testBtcAmount, htlc.htlcIndex, htlc.parentIndex, htlc.entryType, makeAssetRecords(htlc.amount), htlc.addHeightLocal, htlc.addHeightRemote, htlc.removeHeightLocal, htlc.removeHeightRemote,	) remoteDescriptors = append(remoteDescriptors, desc)	} // Add non-asset HTLC if requested if cfg.localNonAsset { localDescriptors = append( localDescriptors,	lnwallet.AuxHtlcDescriptor{ ChanID: lnwire.ChannelID{}, RHash: lnwallet.PaymentHash{}, Timeout: testBtcTimeout, Amount: testBtcAmount, HtlcIndex: localNonAssetHtlcIndex, ParentIndex: 0, CustomRecords: nil, // No assets	},	)	} if cfg.remoteNonAsset { remoteDescriptors = append( remoteDescriptors,	lnwallet.AuxHtlcDescriptor{ ChanID: lnwire.ChannelID{}, RHash: lnwallet.PaymentHash{}, Timeout: testBtcTimeout, Amount: testBtcAmount, HtlcIndex: remoteNonAssetHtlcIndex, ParentIndex: 0, CustomRecords: nil, // No assets	},	)	}
@coveralls
Copy link

coveralls commented Dec 18, 2025

Pull Request Test Coverage Report for Build 20347304176

Details

  • 0 of 0 changed or added relevant lines in 0 files are covered.
  • 8662 unchanged lines in 131 files lost coverage.
  • Overall coverage decreased (-7.5%) to 49.486%

Files with Coverage Reduction New Missed Lines %
authmailbox/client.go 2 69.84%
commitment/proof.go 2 87.29%
fn/func.go 2 58.82%
fn/retry.go 2 92.5%
tapdb/sqlc/mssmt.sql.go 2 48.34%
tapdb/sqlc/db_custom.go 3 70.83%
universe/interface.go 3 74.21%
commitment/encoding.go 4 68.75%
mssmt/encoding.go 4 76.67%
rpcutils/price_oracle_marshal.go 4 85.07%
Totals Coverage Status
Change from base Build 20345556040: -7.5%
Covered Lines: 56852
Relevant Lines: 114884

💛 - Coveralls
@GeorgeTsagk GeorgeTsagk force-pushed the channel-commitment-test branch from b0a9047 to c5718c3 Compare December 18, 2025 18:35
We add a simple framework to test the function ComputeView which produces the asset balance state of a channel by processing the htlc view at the current height. Now that "NewTestAuxHtlcDescriptor" is available on LND we can craft various test cases where the HTLC entries have different add/remove heights.
@GeorgeTsagk GeorgeTsagk force-pushed the channel-commitment-test branch from c5718c3 to 163a77b Compare December 19, 2025 10:15
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

3 participants