mirror of
https://github.com/semaphoreui/semaphore.git
synced 2024-11-23 20:35:24 +01:00
97 lines
1.7 KiB
Go
97 lines
1.7 KiB
Go
package bolt
|
|
|
|
import (
|
|
"github.com/semaphoreui/semaphore/db"
|
|
"testing"
|
|
)
|
|
|
|
func TestTask_GetVersion(t *testing.T) {
|
|
VERSION := "1.54.48"
|
|
|
|
invID := 0
|
|
|
|
store := CreateTestStore()
|
|
|
|
build, err := store.CreateTemplate(db.Template{
|
|
ProjectID: 0,
|
|
Type: db.TemplateBuild,
|
|
Name: "Build",
|
|
Playbook: "build.yml",
|
|
InventoryID: &invID,
|
|
})
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
deploy, err := store.CreateTemplate(db.Template{
|
|
ProjectID: 0,
|
|
Type: db.TemplateDeploy,
|
|
BuildTemplateID: &build.ID,
|
|
Name: "Deploy",
|
|
Playbook: "deploy.yml",
|
|
InventoryID: &invID,
|
|
})
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
deploy2, err := store.CreateTemplate(db.Template{
|
|
ProjectID: 0,
|
|
Type: db.TemplateDeploy,
|
|
BuildTemplateID: &deploy.ID,
|
|
Name: "Deploy2",
|
|
Playbook: "deploy2.yml",
|
|
InventoryID: &invID,
|
|
})
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
buildTask, err := store.CreateTask(db.Task{
|
|
ProjectID: 0,
|
|
TemplateID: build.ID,
|
|
Version: &VERSION,
|
|
}, 0)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
deployTask, err := store.CreateTask(db.Task{
|
|
ProjectID: 0,
|
|
TemplateID: deploy.ID,
|
|
BuildTaskID: &buildTask.ID,
|
|
}, 0)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
deploy2Task, err := store.CreateTask(db.Task{
|
|
ProjectID: 0,
|
|
TemplateID: deploy2.ID,
|
|
BuildTaskID: &deployTask.ID,
|
|
}, 0)
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
version := deployTask.GetIncomingVersion(store)
|
|
if version == nil {
|
|
t.Fatal()
|
|
return
|
|
}
|
|
if *version != VERSION {
|
|
t.Fatal()
|
|
return
|
|
}
|
|
|
|
version = deploy2Task.GetIncomingVersion(store)
|
|
if version == nil {
|
|
t.Fatal()
|
|
return
|
|
}
|
|
if *version != VERSION {
|
|
t.Fatal()
|
|
return
|
|
}
|
|
}
|