2019-01-28 22:52:47 +00:00
|
|
|
// VulcanizeDB
|
2019-03-12 15:46:42 +00:00
|
|
|
// Copyright © 2019 Vulcanize
|
2019-01-28 22:52:47 +00:00
|
|
|
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Affero General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU Affero General Public License for more details.
|
|
|
|
|
|
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
|
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
2019-01-31 23:14:42 +00:00
|
|
|
package utils_test
|
2019-01-28 22:52:47 +00:00
|
|
|
|
|
|
|
import (
|
2019-01-31 23:14:42 +00:00
|
|
|
"math/big"
|
|
|
|
|
2019-01-28 22:52:47 +00:00
|
|
|
"github.com/ethereum/go-ethereum/common"
|
|
|
|
. "github.com/onsi/ginkgo"
|
|
|
|
. "github.com/onsi/gomega"
|
2019-01-31 23:14:42 +00:00
|
|
|
|
2019-02-10 22:42:41 +00:00
|
|
|
"github.com/vulcanize/vulcanizedb/libraries/shared/storage/utils"
|
2019-01-28 22:52:47 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
var _ = Describe("Storage decoder", func() {
|
|
|
|
It("decodes uint256", func() {
|
|
|
|
fakeInt := common.HexToHash("0000000000000000000000000000000000000000000000000000000000000539")
|
2019-01-31 23:14:42 +00:00
|
|
|
row := utils.StorageDiffRow{StorageValue: fakeInt}
|
|
|
|
metadata := utils.StorageValueMetadata{Type: utils.Uint256}
|
2019-01-28 22:52:47 +00:00
|
|
|
|
2019-01-31 23:14:42 +00:00
|
|
|
result, err := utils.Decode(row, metadata)
|
2019-01-28 22:52:47 +00:00
|
|
|
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(result).To(Equal(big.NewInt(0).SetBytes(fakeInt.Bytes()).String()))
|
|
|
|
})
|
|
|
|
|
2019-03-08 17:12:02 +00:00
|
|
|
It("decodes uint48", func() {
|
|
|
|
fakeInt := common.HexToHash("0000000000000000000000000000000000000000000000000000000000000123")
|
|
|
|
row := utils.StorageDiffRow{StorageValue: fakeInt}
|
|
|
|
metadata := utils.StorageValueMetadata{Type: utils.Uint48}
|
|
|
|
|
|
|
|
result, err := utils.Decode(row, metadata)
|
|
|
|
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(result).To(Equal(big.NewInt(0).SetBytes(fakeInt.Bytes()).String()))
|
|
|
|
})
|
|
|
|
|
2019-07-18 18:30:04 +00:00
|
|
|
Describe("when there are multiple items packed in the storage slot", func() {
|
|
|
|
It("decodes the first uint48 item packed in", func() {
|
|
|
|
packedStorage := common.HexToHash("000000000000000000000000000000000000000000000002a300000000002a30")
|
|
|
|
row := utils.StorageDiffRow{StorageValue: packedStorage}
|
|
|
|
packedTypes := map[int]utils.ValueType{}
|
|
|
|
packedTypes[0] = utils.Uint48
|
|
|
|
packedTypes[1] = utils.Uint48
|
|
|
|
|
|
|
|
metadata := utils.StorageValueMetadata{
|
|
|
|
Type: utils.PackedSlot,
|
|
|
|
PackedTypes: packedTypes,
|
|
|
|
}
|
|
|
|
|
|
|
|
result, err := utils.Decode(row, metadata)
|
|
|
|
decodedValues := result.([]string)
|
|
|
|
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
expectedResult1 := big.NewInt(0).SetBytes(common.HexToHash("2a30").Bytes()).String()
|
|
|
|
expectedResult2 := big.NewInt(0).SetBytes(common.HexToHash("2a300").Bytes()).String()
|
|
|
|
Expect(decodedValues[0]).To(Equal(expectedResult1))
|
|
|
|
Expect(decodedValues[1]).To(Equal(expectedResult2))
|
|
|
|
})
|
|
|
|
|
|
|
|
})
|
|
|
|
|
2019-01-28 22:52:47 +00:00
|
|
|
It("decodes address", func() {
|
|
|
|
fakeAddress := common.HexToAddress("0x12345")
|
2019-01-31 23:14:42 +00:00
|
|
|
row := utils.StorageDiffRow{StorageValue: fakeAddress.Hash()}
|
|
|
|
metadata := utils.StorageValueMetadata{Type: utils.Address}
|
2019-01-28 22:52:47 +00:00
|
|
|
|
2019-01-31 23:14:42 +00:00
|
|
|
result, err := utils.Decode(row, metadata)
|
2019-01-28 22:52:47 +00:00
|
|
|
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(result).To(Equal(fakeAddress.Hex()))
|
|
|
|
})
|
|
|
|
})
|