2018-08-09 21:55:02 +00:00
|
|
|
// 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 frob_test
|
|
|
|
|
|
|
|
import (
|
|
|
|
. "github.com/onsi/ginkgo"
|
|
|
|
. "github.com/onsi/gomega"
|
|
|
|
|
2018-10-02 22:25:38 +00:00
|
|
|
"github.com/vulcanize/vulcanizedb/pkg/datastore/postgres"
|
2018-08-09 21:55:02 +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-08-09 21:55:02 +00:00
|
|
|
"github.com/vulcanize/vulcanizedb/pkg/transformers/frob"
|
2018-11-12 16:50:51 +00:00
|
|
|
"github.com/vulcanize/vulcanizedb/pkg/transformers/shared/constants"
|
2018-08-09 21:55:02 +00:00
|
|
|
"github.com/vulcanize/vulcanizedb/pkg/transformers/test_data"
|
2018-11-12 16:50:51 +00:00
|
|
|
"github.com/vulcanize/vulcanizedb/pkg/transformers/test_data/shared_behaviors"
|
2018-08-09 21:55:02 +00:00
|
|
|
"github.com/vulcanize/vulcanizedb/test_config"
|
|
|
|
)
|
|
|
|
|
|
|
|
var _ = Describe("Frob repository", func() {
|
2018-10-11 18:21:49 +00:00
|
|
|
var (
|
2018-11-12 16:50:51 +00:00
|
|
|
db *postgres.DB
|
|
|
|
frobRepository frob.FrobRepository
|
2018-10-11 18:21:49 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
BeforeEach(func() {
|
2018-11-12 16:50:51 +00:00
|
|
|
db = test_config.NewTestDB(test_config.NewTestNode())
|
2018-10-11 18:21:49 +00:00
|
|
|
test_config.CleanTestDB(db)
|
2018-10-29 20:08:00 +00:00
|
|
|
frobRepository = frob.FrobRepository{}
|
|
|
|
frobRepository.SetDB(db)
|
2018-10-11 18:21:49 +00:00
|
|
|
})
|
|
|
|
|
2018-08-09 21:55:02 +00:00
|
|
|
Describe("Create", func() {
|
2018-11-12 16:50:51 +00:00
|
|
|
modelWithDifferentLogIdx := test_data.FrobModel
|
|
|
|
modelWithDifferentLogIdx.LogIndex++
|
|
|
|
inputs := shared_behaviors.CreateBehaviorInputs{
|
|
|
|
CheckedHeaderColumnName: constants.FrobChecked,
|
|
|
|
LogEventTableName: "maker.frob",
|
|
|
|
TestModel: test_data.FrobModel,
|
|
|
|
ModelWithDifferentLogIdx: modelWithDifferentLogIdx,
|
|
|
|
Repository: &frobRepository,
|
|
|
|
}
|
|
|
|
|
|
|
|
shared_behaviors.SharedRepositoryCreateBehaviors(&inputs)
|
2018-10-02 22:25:38 +00:00
|
|
|
|
2018-11-12 16:50:51 +00:00
|
|
|
It("adds a frob", func() {
|
|
|
|
headerRepository := repositories.NewHeaderRepository(db)
|
|
|
|
headerID, err := headerRepository.CreateOrUpdateHeader(fakes.FakeHeader)
|
2018-08-09 21:55:02 +00:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2018-10-11 18:21:49 +00:00
|
|
|
|
2018-10-29 20:08:00 +00:00
|
|
|
err = frobRepository.Create(headerID, []interface{}{test_data.FrobModel})
|
2018-10-22 19:37:59 +00:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2018-08-09 21:55:02 +00:00
|
|
|
var dbFrob frob.FrobModel
|
2018-10-22 19:37:59 +00:00
|
|
|
err = db.Get(&dbFrob, `SELECT art, dart, dink, iart, ilk, ink, urn, log_idx, tx_idx, raw_log FROM maker.frob WHERE header_id = $1`, headerID)
|
2018-11-12 16:50:51 +00:00
|
|
|
|
2018-08-09 21:55:02 +00:00
|
|
|
Expect(err).NotTo(HaveOccurred())
|
2018-08-30 23:51:56 +00:00
|
|
|
Expect(dbFrob.Ilk).To(Equal(test_data.FrobModel.Ilk))
|
|
|
|
Expect(dbFrob.Urn).To(Equal(test_data.FrobModel.Urn))
|
|
|
|
Expect(dbFrob.Ink).To(Equal(test_data.FrobModel.Ink))
|
|
|
|
Expect(dbFrob.Art).To(Equal(test_data.FrobModel.Art))
|
|
|
|
Expect(dbFrob.Dink).To(Equal(test_data.FrobModel.Dink))
|
|
|
|
Expect(dbFrob.Dart).To(Equal(test_data.FrobModel.Dart))
|
|
|
|
Expect(dbFrob.IArt).To(Equal(test_data.FrobModel.IArt))
|
2018-10-22 19:37:59 +00:00
|
|
|
Expect(dbFrob.LogIndex).To(Equal(test_data.FrobModel.LogIndex))
|
2018-08-30 23:51:56 +00:00
|
|
|
Expect(dbFrob.TransactionIndex).To(Equal(test_data.FrobModel.TransactionIndex))
|
|
|
|
Expect(dbFrob.Raw).To(MatchJSON(test_data.FrobModel.Raw))
|
2018-08-09 21:55:02 +00:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2018-10-02 22:25:38 +00:00
|
|
|
Describe("MarkHeaderChecked", func() {
|
2018-11-12 16:50:51 +00:00
|
|
|
inputs := shared_behaviors.MarkedHeaderCheckedBehaviorInputs{
|
|
|
|
CheckedHeaderColumnName: constants.FrobChecked,
|
|
|
|
Repository: &frobRepository,
|
|
|
|
}
|
2018-10-02 22:25:38 +00:00
|
|
|
|
2018-11-12 16:50:51 +00:00
|
|
|
shared_behaviors.SharedRepositoryMarkHeaderCheckedBehaviors(&inputs)
|
2018-10-02 22:25:38 +00:00
|
|
|
})
|
2018-08-09 21:55:02 +00:00
|
|
|
})
|