90 lines
3.4 KiB
Go
90 lines
3.4 KiB
Go
// 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/>.
|
|
|
|
package deal_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/deal"
|
|
"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/test_config"
|
|
)
|
|
|
|
var _ = Describe("Deal Repository", func() {
|
|
var (
|
|
db *postgres.DB
|
|
dealRepository deal.DealRepository
|
|
headerRepository repositories.HeaderRepository
|
|
)
|
|
|
|
BeforeEach(func() {
|
|
db = test_config.NewTestDB(test_config.NewTestNode())
|
|
test_config.CleanTestDB(db)
|
|
dealRepository = deal.DealRepository{}
|
|
dealRepository.SetDB(db)
|
|
headerRepository = repositories.NewHeaderRepository(db)
|
|
})
|
|
|
|
Describe("Create", func() {
|
|
modelWithDifferentLogIdx := test_data.DealModel
|
|
modelWithDifferentLogIdx.LogIndex = modelWithDifferentLogIdx.LogIndex + 1
|
|
inputs := shared_behaviors.CreateBehaviorInputs{
|
|
CheckedHeaderColumnName: constants.DealChecked,
|
|
LogEventTableName: "maker.deal",
|
|
TestModel: test_data.DealModel,
|
|
ModelWithDifferentLogIdx: modelWithDifferentLogIdx,
|
|
Repository: &dealRepository,
|
|
}
|
|
|
|
shared_behaviors.SharedRepositoryCreateBehaviors(&inputs)
|
|
|
|
It("persists a deal record", func() {
|
|
headerId, err := headerRepository.CreateOrUpdateHeader(fakes.FakeHeader)
|
|
Expect(err).NotTo(HaveOccurred())
|
|
err = dealRepository.Create(headerId, []interface{}{test_data.DealModel})
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
var count int
|
|
db.QueryRow(`SELECT count(*) FROM maker.deal`).Scan(&count)
|
|
Expect(count).To(Equal(1))
|
|
var dbResult deal.DealModel
|
|
err = db.Get(&dbResult, `SELECT bid_id, contract_address, log_idx, tx_idx, raw_log FROM maker.deal WHERE header_id = $1`, headerId)
|
|
Expect(err).NotTo(HaveOccurred())
|
|
Expect(dbResult.BidId).To(Equal(test_data.DealModel.BidId))
|
|
Expect(dbResult.ContractAddress).To(Equal(test_data.DealModel.ContractAddress))
|
|
Expect(dbResult.LogIndex).To(Equal(test_data.DealModel.LogIndex))
|
|
Expect(dbResult.TransactionIndex).To(Equal(test_data.DealModel.TransactionIndex))
|
|
Expect(dbResult.Raw).To(MatchJSON(test_data.DealModel.Raw))
|
|
})
|
|
})
|
|
|
|
Describe("MarkHeaderChecked", func() {
|
|
inputs := shared_behaviors.MarkedHeaderCheckedBehaviorInputs{
|
|
CheckedHeaderColumnName: constants.DealChecked,
|
|
Repository: &dealRepository,
|
|
}
|
|
|
|
shared_behaviors.SharedRepositoryMarkHeaderCheckedBehaviors(&inputs)
|
|
})
|
|
})
|