2023-02-20 18:21:52 +00:00
|
|
|
// VulcanizeDB
|
|
|
|
// Copyright © 2023 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 shared
|
|
|
|
|
|
|
|
import "github.com/jmoiron/sqlx"
|
|
|
|
|
2023-03-30 20:38:30 +00:00
|
|
|
/*
|
|
|
|
Hostname: "localhost",
|
|
|
|
Port: 8077,
|
|
|
|
DatabaseName: "cerc_testing",
|
|
|
|
Username: "vdbm",
|
|
|
|
Password: "password",
|
|
|
|
*/
|
|
|
|
|
2023-02-20 18:21:52 +00:00
|
|
|
// TestDB connect to the testing database
|
2023-03-30 20:38:30 +00:00
|
|
|
// it assumes the database has the IPFS ipld.blocks table present
|
|
|
|
// DO NOT use a production db for the test db, as it will remove all contents of the ipld.blocks table
|
2023-02-20 18:21:52 +00:00
|
|
|
func TestDB() (*sqlx.DB, error) {
|
2023-03-30 20:38:30 +00:00
|
|
|
connectStr := "postgresql://vdbm:password@localhost:8077/cerc_testing?sslmode=disable"
|
2023-02-20 18:21:52 +00:00
|
|
|
return sqlx.Connect("postgres", connectStr)
|
|
|
|
}
|
|
|
|
|
2023-03-30 20:38:30 +00:00
|
|
|
// ResetTestDB drops all rows in the test db ipld.blocks table
|
2023-02-20 18:21:52 +00:00
|
|
|
func ResetTestDB(db *sqlx.DB) error {
|
2023-03-30 20:38:30 +00:00
|
|
|
_, err := db.Exec("TRUNCATE ipld.blocks CASCADE")
|
2023-02-20 18:21:52 +00:00
|
|
|
return err
|
|
|
|
}
|