39c2a55942
* port statediff from 9b7fd9af80/statediff/statediff.go
; minor fixes
* integrating state diff extracting, building, and persisting into geth processes
* work towards persisting created statediffs in ipfs; based off github.com/vulcanize/eth-block-extractor
* Add a state diff service
* Remove diff extractor from blockchain
* Update imports
* Move statediff on/off check to geth cmd config
* Update starting state diff service
* Add debugging logs for creating diff
* Add statediff extractor and builder tests and small refactoring
* Start to write statediff to a CSV
* Restructure statediff directory
* Pull CSV publishing methods into their own file
* Reformatting due to go fmt
* Add gomega to vendor dir
* Remove testing focuses
* Update statediff tests to use golang test pkg
instead of ginkgo
- builder_test
- extractor_test
- publisher_test
* Use hexutil.Encode instead of deprecated common.ToHex
* Remove OldValue from DiffBigInt and DiffUint64 fields
* Update builder test
* Remove old storage value from updated accounts
* Remove old values from created/deleted accounts
* Update publisher to account for only storing current account values
* Update service loop and fetching previous block
* Update testing
- remove statediff ginkgo test suite file
- move mocks to their own dir
* Updates per go fmt
* Updates to tests
* Pass statediff mode and path in through cli
* Return filename from publisher
* Remove some duplication in builder
* Remove code field from state diff output
this is the contract byte code, and it can still be obtained by querying
the db by the codeHash
* Consolidate acct diff structs for updated & updated/deleted accts
* Include block number in csv filename
* Clean up error logging
* Cleanup formatting, spelling, etc
* Address PR comments
* Add contract address and storage value to csv
* Refactor accumulating account row in csv publisher
* Add DiffStorage struct
* Add storage key to csv
* Address PR comments
* Fix publisher to include rows for accounts that don't have store updates
* Update builder test after merging in release/1.8
* Update test contract to include storage on contract intialization
- so that we're able to test that storage diffing works for created and
deleted accounts (not just updated accounts).
* Factor out a common trie iterator method in builder
133 lines
3.9 KiB
Go
133 lines
3.9 KiB
Go
package matchers
|
|
|
|
import (
|
|
"fmt"
|
|
"math"
|
|
|
|
"github.com/onsi/gomega/format"
|
|
)
|
|
|
|
type BeNumericallyMatcher struct {
|
|
Comparator string
|
|
CompareTo []interface{}
|
|
}
|
|
|
|
func (matcher *BeNumericallyMatcher) FailureMessage(actual interface{}) (message string) {
|
|
return matcher.FormatFailureMessage(actual, false)
|
|
}
|
|
|
|
func (matcher *BeNumericallyMatcher) NegatedFailureMessage(actual interface{}) (message string) {
|
|
return matcher.FormatFailureMessage(actual, true)
|
|
}
|
|
|
|
func (matcher *BeNumericallyMatcher) FormatFailureMessage(actual interface{}, negated bool) (message string) {
|
|
if len(matcher.CompareTo) == 1 {
|
|
message = fmt.Sprintf("to be %s", matcher.Comparator)
|
|
} else {
|
|
message = fmt.Sprintf("to be within %v of %s", matcher.CompareTo[1], matcher.Comparator)
|
|
}
|
|
if negated {
|
|
message = "not " + message
|
|
}
|
|
return format.Message(actual, message, matcher.CompareTo[0])
|
|
}
|
|
|
|
func (matcher *BeNumericallyMatcher) Match(actual interface{}) (success bool, err error) {
|
|
if len(matcher.CompareTo) == 0 || len(matcher.CompareTo) > 2 {
|
|
return false, fmt.Errorf("BeNumerically requires 1 or 2 CompareTo arguments. Got:\n%s", format.Object(matcher.CompareTo, 1))
|
|
}
|
|
if !isNumber(actual) {
|
|
return false, fmt.Errorf("Expected a number. Got:\n%s", format.Object(actual, 1))
|
|
}
|
|
if !isNumber(matcher.CompareTo[0]) {
|
|
return false, fmt.Errorf("Expected a number. Got:\n%s", format.Object(matcher.CompareTo[0], 1))
|
|
}
|
|
if len(matcher.CompareTo) == 2 && !isNumber(matcher.CompareTo[1]) {
|
|
return false, fmt.Errorf("Expected a number. Got:\n%s", format.Object(matcher.CompareTo[0], 1))
|
|
}
|
|
|
|
switch matcher.Comparator {
|
|
case "==", "~", ">", ">=", "<", "<=":
|
|
default:
|
|
return false, fmt.Errorf("Unknown comparator: %s", matcher.Comparator)
|
|
}
|
|
|
|
if isFloat(actual) || isFloat(matcher.CompareTo[0]) {
|
|
var secondOperand float64 = 1e-8
|
|
if len(matcher.CompareTo) == 2 {
|
|
secondOperand = toFloat(matcher.CompareTo[1])
|
|
}
|
|
success = matcher.matchFloats(toFloat(actual), toFloat(matcher.CompareTo[0]), secondOperand)
|
|
} else if isInteger(actual) {
|
|
var secondOperand int64 = 0
|
|
if len(matcher.CompareTo) == 2 {
|
|
secondOperand = toInteger(matcher.CompareTo[1])
|
|
}
|
|
success = matcher.matchIntegers(toInteger(actual), toInteger(matcher.CompareTo[0]), secondOperand)
|
|
} else if isUnsignedInteger(actual) {
|
|
var secondOperand uint64 = 0
|
|
if len(matcher.CompareTo) == 2 {
|
|
secondOperand = toUnsignedInteger(matcher.CompareTo[1])
|
|
}
|
|
success = matcher.matchUnsignedIntegers(toUnsignedInteger(actual), toUnsignedInteger(matcher.CompareTo[0]), secondOperand)
|
|
} else {
|
|
return false, fmt.Errorf("Failed to compare:\n%s\n%s:\n%s", format.Object(actual, 1), matcher.Comparator, format.Object(matcher.CompareTo[0], 1))
|
|
}
|
|
|
|
return success, nil
|
|
}
|
|
|
|
func (matcher *BeNumericallyMatcher) matchIntegers(actual, compareTo, threshold int64) (success bool) {
|
|
switch matcher.Comparator {
|
|
case "==", "~":
|
|
diff := actual - compareTo
|
|
return -threshold <= diff && diff <= threshold
|
|
case ">":
|
|
return (actual > compareTo)
|
|
case ">=":
|
|
return (actual >= compareTo)
|
|
case "<":
|
|
return (actual < compareTo)
|
|
case "<=":
|
|
return (actual <= compareTo)
|
|
}
|
|
return false
|
|
}
|
|
|
|
func (matcher *BeNumericallyMatcher) matchUnsignedIntegers(actual, compareTo, threshold uint64) (success bool) {
|
|
switch matcher.Comparator {
|
|
case "==", "~":
|
|
if actual < compareTo {
|
|
actual, compareTo = compareTo, actual
|
|
}
|
|
return actual-compareTo <= threshold
|
|
case ">":
|
|
return (actual > compareTo)
|
|
case ">=":
|
|
return (actual >= compareTo)
|
|
case "<":
|
|
return (actual < compareTo)
|
|
case "<=":
|
|
return (actual <= compareTo)
|
|
}
|
|
return false
|
|
}
|
|
|
|
func (matcher *BeNumericallyMatcher) matchFloats(actual, compareTo, threshold float64) (success bool) {
|
|
switch matcher.Comparator {
|
|
case "~":
|
|
return math.Abs(actual-compareTo) <= threshold
|
|
case "==":
|
|
return (actual == compareTo)
|
|
case ">":
|
|
return (actual > compareTo)
|
|
case ">=":
|
|
return (actual >= compareTo)
|
|
case "<":
|
|
return (actual < compareTo)
|
|
case "<=":
|
|
return (actual <= compareTo)
|
|
}
|
|
return false
|
|
}
|