ipld-eth-server/pkg/transformers/vat_init/repository_test.go

84 lines
3.0 KiB
Go
Raw Normal View History

// 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.
2018-09-04 16:35:38 +00:00
package vat_init_test
import (
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
"github.com/vulcanize/vulcanizedb/pkg/transformers/shared/constants"
"github.com/vulcanize/vulcanizedb/pkg/transformers/test_data/shared_behaviors"
2018-09-04 16:35:38 +00:00
"github.com/vulcanize/vulcanizedb/pkg/datastore/postgres"
2018-09-04 16:35:38 +00:00
"github.com/vulcanize/vulcanizedb/pkg/datastore/postgres/repositories"
"github.com/vulcanize/vulcanizedb/pkg/fakes"
2018-09-04 16:35:38 +00:00
"github.com/vulcanize/vulcanizedb/pkg/transformers/test_data"
"github.com/vulcanize/vulcanizedb/pkg/transformers/vat_init"
"github.com/vulcanize/vulcanizedb/test_config"
)
var _ = Describe("Vat init repository", func() {
var (
db *postgres.DB
repository vat_init.VatInitRepository
)
BeforeEach(func() {
db = test_config.NewTestDB(test_config.NewTestNode())
test_config.CleanTestDB(db)
repository = vat_init.VatInitRepository{}
repository.SetDB(db)
})
2018-09-04 16:35:38 +00:00
Describe("Create", func() {
modelWithDifferentLogIdx := test_data.VatInitModel
modelWithDifferentLogIdx.LogIndex++
inputs := shared_behaviors.CreateBehaviorInputs{
CheckedHeaderColumnName: constants.VatInitChecked,
LogEventTableName: "maker.vat_init",
TestModel: test_data.VatInitModel,
ModelWithDifferentLogIdx: modelWithDifferentLogIdx,
Repository: &repository,
}
shared_behaviors.SharedRepositoryCreateBehaviors(&inputs)
2018-09-04 16:35:38 +00:00
It("persists vat init records", func() {
headerRepository := repositories.NewHeaderRepository(db)
headerID, err := headerRepository.CreateOrUpdateHeader(fakes.FakeHeader)
Expect(err).NotTo(HaveOccurred())
err = repository.Create(headerID, []interface{}{test_data.VatInitModel})
2018-10-22 21:48:27 +00:00
Expect(err).NotTo(HaveOccurred())
2018-09-04 16:35:38 +00:00
var dbVatInit vat_init.VatInitModel
2018-10-22 21:48:27 +00:00
err = db.Get(&dbVatInit, `SELECT ilk, log_idx, tx_idx, raw_log FROM maker.vat_init WHERE header_id = $1`, headerID)
2018-09-04 16:35:38 +00:00
Expect(err).NotTo(HaveOccurred())
Expect(dbVatInit.Ilk).To(Equal(test_data.VatInitModel.Ilk))
2018-10-22 21:48:27 +00:00
Expect(dbVatInit.LogIndex).To(Equal(test_data.VatInitModel.LogIndex))
2018-09-04 16:35:38 +00:00
Expect(dbVatInit.TransactionIndex).To(Equal(test_data.VatInitModel.TransactionIndex))
Expect(dbVatInit.Raw).To(MatchJSON(test_data.VatInitModel.Raw))
})
})
Describe("MarkHeaderChecked", func() {
inputs := shared_behaviors.MarkedHeaderCheckedBehaviorInputs{
CheckedHeaderColumnName: constants.VatInitChecked,
Repository: &repository,
}
2018-09-04 16:35:38 +00:00
shared_behaviors.SharedRepositoryMarkHeaderCheckedBehaviors(&inputs)
2018-09-04 16:35:38 +00:00
})
})