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-09-04 16:35:38 +00:00
|
|
|
|
|
|
|
package repo_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
. "github.com/onsi/ginkgo"
|
|
|
|
. "github.com/onsi/gomega"
|
2018-10-11 18:21:49 +00:00
|
|
|
|
|
|
|
"github.com/vulcanize/vulcanizedb/pkg/datastore"
|
2018-10-02 22:25: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"
|
2018-10-11 20:25:14 +00:00
|
|
|
"github.com/vulcanize/vulcanizedb/pkg/fakes"
|
2018-09-04 16:35:38 +00:00
|
|
|
"github.com/vulcanize/vulcanizedb/pkg/transformers/drip_file/repo"
|
2018-11-08 17:07:54 +00:00
|
|
|
"github.com/vulcanize/vulcanizedb/pkg/transformers/shared/constants"
|
2018-09-04 16:35:38 +00:00
|
|
|
"github.com/vulcanize/vulcanizedb/pkg/transformers/test_data"
|
2018-11-06 16:51:26 +00:00
|
|
|
"github.com/vulcanize/vulcanizedb/pkg/transformers/test_data/shared_behaviors"
|
2018-09-04 16:35:38 +00:00
|
|
|
"github.com/vulcanize/vulcanizedb/test_config"
|
|
|
|
)
|
|
|
|
|
2018-10-02 22:25:38 +00:00
|
|
|
var _ = Describe("Drip file repo repository", func() {
|
2018-10-11 18:21:49 +00:00
|
|
|
var (
|
|
|
|
db *postgres.DB
|
2018-10-18 09:53:34 +00:00
|
|
|
dripFileRepoRepository repo.DripFileRepoRepository
|
2018-10-11 18:21:49 +00:00
|
|
|
headerRepository datastore.HeaderRepository
|
|
|
|
)
|
|
|
|
|
|
|
|
BeforeEach(func() {
|
2018-11-06 16:51:26 +00:00
|
|
|
db = test_config.NewTestDB(test_config.NewTestNode())
|
2018-10-11 18:21:49 +00:00
|
|
|
test_config.CleanTestDB(db)
|
|
|
|
headerRepository = repositories.NewHeaderRepository(db)
|
2018-10-22 13:03:41 +00:00
|
|
|
dripFileRepoRepository = repo.DripFileRepoRepository{}
|
|
|
|
dripFileRepoRepository.SetDB(db)
|
2018-10-11 18:21:49 +00:00
|
|
|
})
|
|
|
|
|
2018-09-04 16:35:38 +00:00
|
|
|
Describe("Create", func() {
|
2018-11-06 16:51:26 +00:00
|
|
|
modelWithDifferentLogIdx := test_data.DripFileRepoModel
|
|
|
|
modelWithDifferentLogIdx.LogIndex++
|
|
|
|
inputs := shared_behaviors.CreateBehaviorInputs{
|
2018-11-08 17:07:54 +00:00
|
|
|
CheckedHeaderColumnName: constants.DripFileRepoChecked,
|
2018-11-06 16:51:26 +00:00
|
|
|
LogEventTableName: "maker.drip_file_repo",
|
|
|
|
TestModel: test_data.DripFileRepoModel,
|
|
|
|
ModelWithDifferentLogIdx: modelWithDifferentLogIdx,
|
|
|
|
Repository: &dripFileRepoRepository,
|
|
|
|
}
|
|
|
|
|
|
|
|
shared_behaviors.SharedRepositoryCreateBehaviors(&inputs)
|
2018-10-11 18:21:49 +00:00
|
|
|
|
|
|
|
It("adds a drip file repo event", func() {
|
2018-11-06 16:51:26 +00:00
|
|
|
headerID, err := headerRepository.CreateOrUpdateHeader(fakes.FakeHeader)
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2018-10-25 16:31:00 +00:00
|
|
|
err = dripFileRepoRepository.Create(headerID, []interface{}{test_data.DripFileRepoModel})
|
|
|
|
|
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2018-09-04 16:35:38 +00:00
|
|
|
var dbDripFileRepo repo.DripFileRepoModel
|
2018-10-19 20:30:07 +00:00
|
|
|
err = db.Get(&dbDripFileRepo, `SELECT what, data, log_idx, tx_idx, raw_log FROM maker.drip_file_repo WHERE header_id = $1`, headerID)
|
2018-09-04 16:35:38 +00:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
|
|
|
Expect(dbDripFileRepo.What).To(Equal(test_data.DripFileRepoModel.What))
|
|
|
|
Expect(dbDripFileRepo.Data).To(Equal(test_data.DripFileRepoModel.Data))
|
2018-10-19 20:30:07 +00:00
|
|
|
Expect(dbDripFileRepo.LogIndex).To(Equal(test_data.DripFileRepoModel.LogIndex))
|
2018-09-04 16:35:38 +00:00
|
|
|
Expect(dbDripFileRepo.TransactionIndex).To(Equal(test_data.DripFileRepoModel.TransactionIndex))
|
|
|
|
Expect(dbDripFileRepo.Raw).To(MatchJSON(test_data.DripFileRepoModel.Raw))
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2018-10-02 22:25:38 +00:00
|
|
|
Describe("MarkHeaderChecked", func() {
|
2018-11-06 16:51:26 +00:00
|
|
|
inputs := shared_behaviors.MarkedHeaderCheckedBehaviorInputs{
|
2018-11-08 17:07:54 +00:00
|
|
|
CheckedHeaderColumnName: constants.DripFileRepoChecked,
|
2018-11-06 16:51:26 +00:00
|
|
|
Repository: &dripFileRepoRepository,
|
|
|
|
}
|
2018-10-02 22:25:38 +00:00
|
|
|
|
2018-11-06 16:51:26 +00:00
|
|
|
shared_behaviors.SharedRepositoryMarkHeaderCheckedBehaviors(&inputs)
|
2018-10-02 22:25:38 +00:00
|
|
|
})
|
2018-09-04 16:35:38 +00:00
|
|
|
})
|