Skip to content

Add test coverage for ComputeView#1919

Merged
darioAnongba merged 1 commit intomainfrom
channel-commitment-test
Mar 19, 2026
Merged

Add test coverage for ComputeView#1919
darioAnongba merged 1 commit intomainfrom
channel-commitment-test

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 23287921871

Details

  • 0 of 0 changed or added relevant lines in 0 files are covered.
  • 40 unchanged lines in 11 files lost coverage.
  • Overall coverage increased (+0.2%) to 33.664%

Files with Coverage Reduction New Missed Lines %
address/address.go 2 67.54%
asset/asset.go 2 46.74%
tappsbt/create.go 2 22.71%
asset/mock.go 3 65.89%
tapchannel/aux_leaf_signer.go 3 43.18%
tapgarden/planter.go 3 63.45%
commitment/tap.go 4 72.21%
rfqmsg/records.go 4 65.69%
tapdb/universe.go 4 76.99%
tapdb/multiverse.go 6 54.38%
Totals Coverage Status
Change from base Build 23242626536: 0.2%
Covered Lines: 33326
Relevant Lines: 98996

💛 - Coveralls

@GeorgeTsagk GeorgeTsagk force-pushed the channel-commitment-test branch 2 times, most recently from c5718c3 to 163a77b Compare December 19, 2025 10:15
@lightninglabs-deploy
Copy link

@GeorgeTsagk, remember to re-request review from reviewers when ready

@GeorgeTsagk GeorgeTsagk force-pushed the channel-commitment-test branch from 163a77b to 7855926 Compare March 11, 2026 12:47
@GeorgeTsagk
Copy link
Member Author

All dependency PRs have been merged. This is now ready for review.

Copy link
Member

@jtobin jtobin left a comment

Choose a reason for hiding this comment

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

Nothing but nits, LGTM. 👍 👍

An agent flagged that whoseCommit=Local coverage is limited, in that most complex multi-HTLC/settle/fail scenarios use whoseCommit=Remote. Sounds reasonable, but again nittish, as IMO the changes are a strict improvement.

}

for _, tc := range testCases {
tc := tc
Copy link
Member

Choose a reason for hiding this comment

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

Nit: apparently this is unnecessary in Go 1.22+.

expectedTheirUpdates: 0,
},
{
name: "1 add, 1 settle",
Copy link
Member

Choose a reason for hiding this comment

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

Nit: duplicate name, maybe worth differentiating explicitly.

expectedTheirUpdates: 1,
},
{
name: "1 add, 1 settle",
Copy link
Member

Choose a reason for hiding this comment

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

Other side of nit.

@github-project-automation github-project-automation bot moved this from 🆕 New to 👀 In review in Taproot-Assets Project Board Mar 12, 2026
@GeorgeTsagk GeorgeTsagk force-pushed the channel-commitment-test branch from 7855926 to 710bff7 Compare March 16, 2026 10:49
@GeorgeTsagk GeorgeTsagk enabled auto-merge March 16, 2026 11:51
@GeorgeTsagk GeorgeTsagk disabled auto-merge March 16, 2026 14:30
@GeorgeTsagk GeorgeTsagk enabled auto-merge March 16, 2026 14:30
@GeorgeTsagk GeorgeTsagk disabled auto-merge March 19, 2026 09:11
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 710bff7 to 9b3bedc Compare March 19, 2026 09:16
@GeorgeTsagk GeorgeTsagk enabled auto-merge March 19, 2026 10:30
@GeorgeTsagk GeorgeTsagk added this pull request to the merge queue Mar 19, 2026
@github-merge-queue github-merge-queue bot removed this pull request from the merge queue due to failed status checks Mar 19, 2026
@darioAnongba darioAnongba added this pull request to the merge queue Mar 19, 2026
Merged via the queue into main with commit ece0740 Mar 19, 2026
79 of 80 checks passed
@github-project-automation github-project-automation bot moved this from 👀 In review to ✅ Done in Taproot-Assets Project Board Mar 19, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

Status: ✅ Done

Development

Successfully merging this pull request may close these issues.

5 participants