2019-01-24 20:41:30 +00:00
|
|
|
// VulcanizeDB
|
|
|
|
// Copyright © 2018 Vulcanize
|
|
|
|
|
|
|
|
// 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/>.
|
2018-10-12 14:13:13 +00:00
|
|
|
|
|
|
|
package vat_move_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
. "github.com/onsi/ginkgo"
|
|
|
|
. "github.com/onsi/gomega"
|
|
|
|
"github.com/vulcanize/vulcanizedb/pkg/datastore/postgres"
|
|
|
|
"github.com/vulcanize/vulcanizedb/pkg/datastore/postgres/repositories"
|
2018-10-11 20:25:14 +00:00
|
|
|
"github.com/vulcanize/vulcanizedb/pkg/fakes"
|
2018-11-12 13:17:58 +00:00
|
|
|
"github.com/vulcanize/vulcanizedb/pkg/transformers/shared/constants"
|
2018-10-12 14:13:13 +00:00
|
|
|
"github.com/vulcanize/vulcanizedb/pkg/transformers/test_data"
|
2018-11-12 13:17:58 +00:00
|
|
|
"github.com/vulcanize/vulcanizedb/pkg/transformers/test_data/shared_behaviors"
|
2018-10-12 14:13:13 +00:00
|
|
|
"github.com/vulcanize/vulcanizedb/pkg/transformers/vat_move"
|
|
|
|
"github.com/vulcanize/vulcanizedb/test_config"
|
|
|
|
)
|
|
|
|
|
|
|
|
var _ = Describe("Vat Move", func() {
|
|
|
|
var db *postgres.DB
|
2018-11-12 13:17:58 +00:00
|
|
|
var repository vat_move.VatMoveRepository
|
2018-10-12 14:13:13 +00:00
|
|
|
|
|
|
|
BeforeEach(func() {
|
2018-11-12 13:17:58 +00:00
|
|
|
db = test_config.NewTestDB(test_config.NewTestNode())
|
2018-10-12 14:13:13 +00:00
|
|
|
test_config.CleanTestDB(db)
|
2018-11-12 13:17:58 +00:00
|
|
|
repository = vat_move.VatMoveRepository{}
|
|
|
|
repository.SetDB(db)
|
2018-10-12 14:13:13 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
Describe("Create", func() {
|
2018-11-12 13:17:58 +00:00
|
|
|
modelWithDifferentLogIdx := test_data.VatMoveModel
|
|
|
|
modelWithDifferentLogIdx.LogIndex++
|
|
|
|
inputs := shared_behaviors.CreateBehaviorInputs{
|
|
|
|
CheckedHeaderColumnName: constants.VatMoveChecked,
|
|
|
|
LogEventTableName: "maker.vat_move",
|
|
|
|
TestModel: test_data.VatMoveModel,
|
|
|
|
ModelWithDifferentLogIdx: modelWithDifferentLogIdx,
|
|
|
|
Repository: &repository,
|
|
|
|
}
|
|
|
|
|
|
|
|
shared_behaviors.SharedRepositoryCreateBehaviors(&inputs)
|
2018-10-12 14:13:13 +00:00
|
|
|
|
2018-11-12 13:17:58 +00:00
|
|
|
It("persists vat move records", func() {
|
|
|
|
headerRepository := repositories.NewHeaderRepository(db)
|
|
|
|
headerID, err := headerRepository.CreateOrUpdateHeader(fakes.FakeHeader)
|
2018-10-12 14:13:13 +00:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
|
2018-11-12 13:17:58 +00:00
|
|
|
err = repository.Create(headerID, []interface{}{test_data.VatMoveModel})
|
2018-10-23 16:49:13 +00:00
|
|
|
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2018-10-12 14:13:13 +00:00
|
|
|
var dbVatMove vat_move.VatMoveModel
|
2018-10-23 16:49:13 +00:00
|
|
|
err = db.Get(&dbVatMove, `SELECT src, dst, rad, log_idx, tx_idx, raw_log FROM maker.vat_move WHERE header_id = $1`, headerID)
|
2018-10-12 14:13:13 +00:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(dbVatMove.Src).To(Equal(test_data.VatMoveModel.Src))
|
|
|
|
Expect(dbVatMove.Dst).To(Equal(test_data.VatMoveModel.Dst))
|
|
|
|
Expect(dbVatMove.Rad).To(Equal(test_data.VatMoveModel.Rad))
|
2018-10-23 16:49:13 +00:00
|
|
|
Expect(dbVatMove.LogIndex).To(Equal(test_data.VatMoveModel.LogIndex))
|
2018-10-12 14:13:13 +00:00
|
|
|
Expect(dbVatMove.TransactionIndex).To(Equal(test_data.VatMoveModel.TransactionIndex))
|
|
|
|
Expect(dbVatMove.Raw).To(MatchJSON(test_data.VatMoveModel.Raw))
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
Describe("MarkHeaderChecked", func() {
|
2018-11-12 13:17:58 +00:00
|
|
|
inputs := shared_behaviors.MarkedHeaderCheckedBehaviorInputs{
|
|
|
|
CheckedHeaderColumnName: constants.VatMoveChecked,
|
|
|
|
Repository: &repository,
|
|
|
|
}
|
2018-10-12 14:13:13 +00:00
|
|
|
|
2018-11-12 13:17:58 +00:00
|
|
|
shared_behaviors.SharedRepositoryMarkHeaderCheckedBehaviors(&inputs)
|
2018-10-12 14:13:13 +00:00
|
|
|
})
|
|
|
|
})
|