2022-04-22 16:27:54 +00:00
|
|
|
package boot_test
|
|
|
|
|
|
|
|
import (
|
2022-04-26 17:57:01 +00:00
|
|
|
"context"
|
|
|
|
|
2022-04-22 16:27:54 +00:00
|
|
|
. "github.com/onsi/ginkgo/v2"
|
|
|
|
. "github.com/onsi/gomega"
|
|
|
|
"github.com/vulcanize/ipld-ethcl-indexer/internal/boot"
|
|
|
|
)
|
|
|
|
|
|
|
|
var _ = Describe("Boot", func() {
|
|
|
|
var (
|
2022-04-27 18:01:59 +00:00
|
|
|
dbAddress string = "localhost"
|
|
|
|
dbPort int = 8077
|
|
|
|
dbName string = "vulcanize_testing"
|
|
|
|
dbUsername string = "vdbm"
|
|
|
|
dbPassword string = "password"
|
|
|
|
dbDriver string = "PGX"
|
|
|
|
bcAddress string = "localhost"
|
|
|
|
bcPort int = 5052
|
|
|
|
bcConnectionProtocol string = "http"
|
2022-04-22 16:27:54 +00:00
|
|
|
)
|
|
|
|
Describe("Booting the application", Label("integration"), func() {
|
|
|
|
Context("When the DB and BC are both up and running", func() {
|
|
|
|
It("Should connect successfully", func() {
|
2022-04-27 18:01:59 +00:00
|
|
|
_, db, err := boot.BootApplicationWithRetry(context.Background(), dbAddress, dbPort, dbName, dbUsername, dbPassword, dbDriver, bcAddress, bcPort, bcConnectionProtocol)
|
2022-04-22 16:27:54 +00:00
|
|
|
defer db.Close()
|
|
|
|
Expect(err).To(BeNil())
|
|
|
|
})
|
|
|
|
})
|
|
|
|
Context("When the DB is running but not the BC", func() {
|
|
|
|
It("Should not connect successfully", func() {
|
2022-04-27 18:01:59 +00:00
|
|
|
_, _, err := boot.BootApplication(context.Background(), dbAddress, dbPort, dbName, dbUsername, dbPassword, dbDriver, "hi", 100, bcConnectionProtocol)
|
2022-04-22 16:27:54 +00:00
|
|
|
Expect(err).ToNot(BeNil())
|
|
|
|
})
|
|
|
|
})
|
|
|
|
Context("When the BC is running but not the DB", func() {
|
|
|
|
It("Should not connect successfully", func() {
|
2022-04-27 18:01:59 +00:00
|
|
|
_, _, err := boot.BootApplication(context.Background(), "hi", 10, dbName, dbUsername, dbPassword, dbDriver, bcAddress, bcPort, bcConnectionProtocol)
|
2022-04-22 16:27:54 +00:00
|
|
|
Expect(err).ToNot(BeNil())
|
|
|
|
})
|
|
|
|
})
|
|
|
|
Context("When neither the BC or DB are running", func() {
|
|
|
|
It("Should not connect successfully", func() {
|
2022-04-27 18:01:59 +00:00
|
|
|
_, _, err := boot.BootApplication(context.Background(), "hi", 10, dbName, dbUsername, dbPassword, dbDriver, "hi", 100, bcConnectionProtocol)
|
2022-04-22 16:27:54 +00:00
|
|
|
Expect(err).ToNot(BeNil())
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
})
|