forked from kyma-incubator/compass
-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.go
85 lines (74 loc) · 1.86 KB
/
main.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
package main
import (
"context"
"database/sql"
"fmt"
"github.com/astaxie/beego/orm"
"github.com/kyma-incubator/compass/docs/investigations/storage/sql-toolbox/libs/beego/internal/domain/application"
"github.com/kyma-incubator/compass/docs/investigations/storage/sql-toolbox/libs/beego/internal/dto"
"github.com/kyma-incubator/compass/docs/investigations/storage/sql-toolbox/libs/beego/internal/model"
_ "github.com/lib/pq"
)
func main() {
connStr := "user=postgres password=mysecretpassword dbname=compass sslmode=disable"
orm.RegisterModel(new(dto.ApplicationDTO), new(dto.APIDTO), new(dto.DocumentDTO))
db, err := sql.Open("postgres", connStr)
if err != nil {
panic(err)
}
if db.Ping() != nil {
panic("ping failed")
}
o, err := orm.NewOrmWithDB("postgres", "default", db)
if err != nil {
panic(err)
}
defer db.Close()
d := application.NewApplicationDao(o)
app := model.Application{
Name: "my-app",
Labels: "{}",
}
app.Documents = model.DocumentPage{
Data: []model.Document{
{
Title: "abcd",
},
{Title: "xyz"},
},
}
app.Apis = model.APIPage{
Data: []model.API{
{
TargetURL: "googgle.com",
},
{
TargetURL: "cncf.io",
},
},
}
ctx := context.TODO()
// TODO It does not work: https://github.com/astaxie/beego/issues/3070
// TODO panic: no LastInsertId available
brandNewApp, err := d.CreateApplication(ctx, app)
if err != nil {
panic(err)
}
appPage, err := d.GetApplications(ctx, model.PageRequest{
PageSize: 50,
}, model.Filer{})
if err != nil {
panic(err)
}
fmt.Println(len(appPage.Data))
nextPage, err := d.GetApplications(ctx, model.PageRequest{PageSize: 50, AfterCursor: appPage.PageInfo.EndCursor}, model.Filer{})
if err != nil {
panic(err)
}
fmt.Println(len(nextPage.Data))
ex, err := d.DeleteApplication(ctx, brandNewApp.ID)
if err != nil {
panic(err)
}
fmt.Println("Exist", ex)
}