95 lines
3.5 KiB
Go
95 lines
3.5 KiB
Go
// Copyright 2018 Vulcanize
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package vat_heal_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"
|
|
"github.com/vulcanize/vulcanizedb/pkg/fakes"
|
|
"github.com/vulcanize/vulcanizedb/pkg/transformers/shared/constants"
|
|
"github.com/vulcanize/vulcanizedb/pkg/transformers/test_data"
|
|
"github.com/vulcanize/vulcanizedb/pkg/transformers/test_data/shared_behaviors"
|
|
"github.com/vulcanize/vulcanizedb/pkg/transformers/vat_heal"
|
|
"github.com/vulcanize/vulcanizedb/test_config"
|
|
)
|
|
|
|
var _ = Describe("VatHeal Repository", func() {
|
|
var (
|
|
db *postgres.DB
|
|
repository vat_heal.VatHealRepository
|
|
)
|
|
|
|
BeforeEach(func() {
|
|
db = test_config.NewTestDB(test_config.NewTestNode())
|
|
test_config.CleanTestDB(db)
|
|
repository = vat_heal.VatHealRepository{}
|
|
repository.SetDB(db)
|
|
})
|
|
|
|
type VatHealDBResult struct {
|
|
vat_heal.VatHealModel
|
|
Id int
|
|
HeaderId int64 `db:"header_id"`
|
|
}
|
|
|
|
Describe("Create", func() {
|
|
modelWithDifferentLogIdx := test_data.VatHealModel
|
|
modelWithDifferentLogIdx.LogIndex++
|
|
inputs := shared_behaviors.CreateBehaviorInputs{
|
|
CheckedHeaderColumnName: constants.VatHealChecked,
|
|
LogEventTableName: "maker.vat_heal",
|
|
TestModel: test_data.VatHealModel,
|
|
ModelWithDifferentLogIdx: modelWithDifferentLogIdx,
|
|
Repository: &repository,
|
|
}
|
|
|
|
shared_behaviors.SharedRepositoryCreateBehaviors(&inputs)
|
|
|
|
It("persists vat heal records", func() {
|
|
headerRepository := repositories.NewHeaderRepository(db)
|
|
headerId, err := headerRepository.CreateOrUpdateHeader(fakes.FakeHeader)
|
|
Expect(err).NotTo(HaveOccurred())
|
|
anotherVatHeal := test_data.VatHealModel
|
|
anotherVatHeal.LogIndex = test_data.VatHealModel.LogIndex + 1
|
|
err = repository.Create(headerId, []interface{}{test_data.VatHealModel, anotherVatHeal})
|
|
|
|
var dbResult []VatHealDBResult
|
|
err = db.Select(&dbResult, `SELECT * from maker.vat_heal where header_id = $1`, headerId)
|
|
Expect(err).NotTo(HaveOccurred())
|
|
Expect(len(dbResult)).To(Equal(2))
|
|
Expect(dbResult[0].Urn).To(Equal(test_data.VatHealModel.Urn))
|
|
Expect(dbResult[0].V).To(Equal(test_data.VatHealModel.V))
|
|
Expect(dbResult[0].Rad).To(Equal(test_data.VatHealModel.Rad))
|
|
Expect(dbResult[0].LogIndex).To(Equal(test_data.VatHealModel.LogIndex))
|
|
Expect(dbResult[1].LogIndex).To(Equal(test_data.VatHealModel.LogIndex + 1))
|
|
Expect(dbResult[0].TransactionIndex).To(Equal(test_data.VatHealModel.TransactionIndex))
|
|
Expect(dbResult[0].Raw).To(MatchJSON(test_data.VatHealModel.Raw))
|
|
Expect(dbResult[0].HeaderId).To(Equal(headerId))
|
|
})
|
|
})
|
|
|
|
Describe("MarkCheckedHeader", func() {
|
|
inputs := shared_behaviors.MarkedHeaderCheckedBehaviorInputs{
|
|
CheckedHeaderColumnName: constants.VatHealChecked,
|
|
Repository: &repository,
|
|
}
|
|
|
|
shared_behaviors.SharedRepositoryMarkHeaderCheckedBehaviors(&inputs)
|
|
})
|
|
})
|