-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Feat/expr in var origin #45
Merged
Merged
Changes from all commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
bc77886
WIP
ascandone 6bc61b6
fix
ascandone f94edad
fixes after rebase
ascandone 50d8dd2
fix analysis error
ascandone 6a6a408
fix
ascandone 2913012
minor
ascandone e34e068
impl failing test
ascandone b181a44
fix
ascandone aadf28b
removed comment
ascandone 8d69215
cleaned up code a bit
ascandone 04f4da5
minor
ascandone 078b72f
run go mod tidy
ascandone bd79452
put feature under feature flag
ascandone 07d6ecf
added feature flag test
ascandone 4cb0ee2
prevent invalid nested meta()
ascandone e437588
activate feature flag in the cli
ascandone c8acd97
fix
ascandone f8fd8d1
moved t.Parallel() modifier
ascandone File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
package interpreter | ||
|
||
import ( | ||
"math/big" | ||
|
||
"github.com/formancehq/numscript/internal/utils" | ||
) | ||
|
||
func (b Balances) fetchAccountBalances(account string) AccountBalance { | ||
return defaultMapGet(b, account, func() AccountBalance { | ||
return AccountBalance{} | ||
}) | ||
} | ||
|
||
// Get the (account, asset) tuple from the Balances | ||
// if the tuple is not present, it will write a big.NewInt(0) in it and return it | ||
func (b Balances) fetchBalance(account string, asset string) *big.Int { | ||
accountBalances := b.fetchAccountBalances(account) | ||
|
||
return defaultMapGet(accountBalances, asset, func() *big.Int { | ||
return new(big.Int) | ||
}) | ||
} | ||
|
||
func (b Balances) has(account string, asset string) bool { | ||
accountBalances := defaultMapGet(b, account, func() AccountBalance { | ||
return AccountBalance{} | ||
}) | ||
|
||
_, ok := accountBalances[asset] | ||
return ok | ||
} | ||
|
||
// given a BalanceQuery, return a new query which only contains needed (asset, account) pairs | ||
// (that is, the ones that aren't already cached) | ||
func (b Balances) filterQuery(q BalanceQuery) BalanceQuery { | ||
filteredQuery := BalanceQuery{} | ||
for accountName, queriedCurrencies := range q { | ||
filteredCurrencies := utils.Filter(queriedCurrencies, func(currency string) bool { | ||
return !b.has(accountName, currency) | ||
}) | ||
|
||
if len(filteredCurrencies) > 0 { | ||
filteredQuery[accountName] = filteredCurrencies | ||
} | ||
|
||
} | ||
return filteredQuery | ||
} | ||
|
||
// Merge balances by adding balances in the "update" arg | ||
func (b Balances) mergeBalance(update Balances) { | ||
// merge queried balance | ||
for acc, accBalances := range update { | ||
cachedAcc := defaultMapGet(b, acc, func() AccountBalance { | ||
return AccountBalance{} | ||
}) | ||
|
||
for curr, amt := range accBalances { | ||
cachedAcc[curr] = amt | ||
} | ||
} | ||
} | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
package interpreter | ||
|
||
import ( | ||
"math/big" | ||
"testing" | ||
|
||
"github.com/stretchr/testify/require" | ||
) | ||
|
||
func TestFilterQuery(t *testing.T) { | ||
fullBalance := Balances{ | ||
"alice": AccountBalance{ | ||
"EUR/2": big.NewInt(1), | ||
"USD/2": big.NewInt(2), | ||
}, | ||
"bob": AccountBalance{ | ||
"BTC": big.NewInt(3), | ||
}, | ||
} | ||
|
||
filteredQuery := fullBalance.filterQuery(BalanceQuery{ | ||
"alice": []string{"GBP/2", "YEN", "EUR/2"}, | ||
"bob": []string{"BTC"}, | ||
"charlie": []string{"ETH"}, | ||
}) | ||
|
||
require.Equal(t, BalanceQuery{ | ||
"alice": []string{"GBP/2", "YEN"}, | ||
"charlie": []string{"ETH"}, | ||
}, filteredQuery) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
💡 Verification agent
🧩 Analysis chain
Effective balance merging implementation.
The
mergeBalance
method effectively combines balances from multiple sources, which is crucial for maintaining accurate state during script execution.Note: Static analysis suggests lines 50-51 are not covered by tests. Consider adding a test case that exercises the scenario where a new account is added during a merge operation.
🏁 Script executed:
Length of output: 183
Action: Add test coverage for the mergeBalance update scenario.
The current implementation in
internal/interpreter/balances.go
(lines 46-57) correctly merges balance updates; however, our grep check shows no test case covers the branch where a new account is introduced (specifically affecting lines 50-51). Please add a unit test that exercises this scenario to ensure that when an account does not exist in the cached balance, it is correctly initialized and updated.internal/interpreter/balances.go
(lines 46-57)*_test.go
file that simulates merging an update with a new account.🧰 Tools
🪛 GitHub Check: codecov/patch
[warning] 50-51: internal/interpreter/balances.go#L50-L51
Added lines #L50 - L51 were not covered by tests