-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain_test.go
64 lines (51 loc) · 1.14 KB
/
main_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
package main
import (
"log"
"os"
"testing"
"time"
mgo "github.com/globalsign/mgo"
"github.com/globalsign/mgo/bson"
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
)
var testData [5]dummyModel
var testDB *mgo.Database
var _ = BeforeSuite(func() {
log.Print("Setup")
mongoDBURI := os.Getenv("MONGODB_URI")
if mongoDBURI == "" {
panic("mongoDB URI is empty")
}
// create data
session, err := mgo.Dial(mongoDBURI)
if err != nil {
log.Fatal(err)
}
databaseName := os.Getenv("MONGODB_DATABASE")
testDB = session.DB(databaseName)
for i := range testData {
testData[i] = dummyModel{
Content: `{"test":"hello"}`,
Status: 200,
Headers: "",
Charset: "utf-8",
ContentType: "application/json",
Version: "v1",
CreatedAt: time.Now(),
}
testData[i].ID = bson.NewObjectId()
db.C(collectionDummy).Insert(&testData[i])
log.Printf("item : %+v", testData[i])
}
})
var _ = AfterSuite(func() {
log.Print("TearDown")
for i := range testData {
db.C(collectionDummy).Remove(&testData[i])
}
})
func TestMain(t *testing.T) {
RegisterFailHandler(Fail)
RunSpecs(t, "Dummy Http Responser Suite")
}