mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-19 08:21:01 +00:00
d13c1caebf
1. server/builds.go:92 uses SetStatus(). 2. The other APIs we talked about: Status(), StatusList(), we were able to move out. 3. The repo_del_test.go code merge into repo_test.go 4. Unit tests for the other build APIs added. - We are facing a crash in: github.com/drone/drone/datastore/bolt.(*DB).SetBuildTask(0xc208056080, 0x5e15d0, 0x15, 0x1, 0xc208036940, 0x0, 0x0) which seems to be related to the note in: build.go:207 (// TODO check index to prevent nil pointer / panic) 5. With these new tests we get over 86% plus test cover for bolt package.
183 lines
5.1 KiB
Go
183 lines
5.1 KiB
Go
package bolt
|
|
|
|
import (
|
|
"github.com/drone/drone/common"
|
|
. "github.com/franela/goblin"
|
|
"io/ioutil"
|
|
"os"
|
|
"testing"
|
|
)
|
|
|
|
func TestRepo(t *testing.T) {
|
|
g := Goblin(t)
|
|
g.Describe("Repo", func() {
|
|
testUser := "octocat"
|
|
testRepo := "github.com/octopod/hq"
|
|
testRepo2 := "github.com/octopod/avengers"
|
|
var db *DB // Temp database
|
|
|
|
// create a new database before each unit
|
|
// test and destroy afterwards.
|
|
g.BeforeEach(func() {
|
|
db = Must("/tmp/drone.test.db")
|
|
})
|
|
g.AfterEach(func() {
|
|
os.Remove(db.Path())
|
|
})
|
|
|
|
g.It("Should set Repo", func() {
|
|
err := db.SetRepo(&common.Repo{FullName: testRepo})
|
|
g.Assert(err).Equal(nil)
|
|
|
|
repo, err := db.Repo(testRepo)
|
|
g.Assert(err).Equal(nil)
|
|
g.Assert(repo.FullName).Equal(testRepo)
|
|
})
|
|
|
|
g.It("Should get Repo", func() {
|
|
db.SetRepo(&common.Repo{FullName: testRepo})
|
|
|
|
repo, err := db.Repo(testRepo)
|
|
g.Assert(err).Equal(nil)
|
|
g.Assert(repo.FullName).Equal(testRepo)
|
|
})
|
|
|
|
g.It("Should del Repo", func() {
|
|
db.SetRepo(&common.Repo{FullName: testRepo})
|
|
|
|
db.Repo(testRepo)
|
|
err_ := db.DelRepo((&common.Repo{FullName: testRepo}))
|
|
g.Assert(err_).Equal(nil)
|
|
})
|
|
|
|
g.It("Should get RepoList", func() {
|
|
db.SetRepoNotExists(&common.User{Login: testUser}, &common.Repo{FullName: testRepo})
|
|
db.SetRepoNotExists(&common.User{Login: testUser}, &common.Repo{FullName: testRepo2})
|
|
|
|
repos, err := db.RepoList(testUser)
|
|
g.Assert(err).Equal(nil)
|
|
g.Assert(len(repos)).Equal(2)
|
|
})
|
|
|
|
g.It("Should set RepoParams", func() {
|
|
db.SetRepo(&common.Repo{FullName: testRepo})
|
|
err := db.SetRepoParams(testRepo, map[string]string{"A": "Alpha"})
|
|
g.Assert(err).Equal(nil)
|
|
})
|
|
|
|
g.It("Should get RepoParams", func() {
|
|
db.SetRepo(&common.Repo{FullName: testRepo})
|
|
err := db.SetRepoParams(testRepo, map[string]string{"A": "Alpha", "B": "Beta"})
|
|
params, err := db.RepoParams(testRepo)
|
|
g.Assert(err).Equal(nil)
|
|
g.Assert(len(params)).Equal(2)
|
|
g.Assert(params["A"]).Equal("Alpha")
|
|
g.Assert(params["B"]).Equal("Beta")
|
|
})
|
|
|
|
// we test again with same repo/user already existing
|
|
// to see if it will return "ErrConflict"
|
|
g.It("Should set SetRepoNotExists", func() {
|
|
err := db.SetRepoNotExists(&common.User{Login: testUser}, &common.Repo{FullName: testRepo})
|
|
g.Assert(err).Equal(nil)
|
|
// We should get ErrConflict now, trying to add the same repo again.
|
|
err_ := db.SetRepoNotExists(&common.User{Login: testUser}, &common.Repo{FullName: testRepo})
|
|
g.Assert(err_).Equal(ErrKeyExists)
|
|
})
|
|
|
|
g.It("Should set RepoKeypair", func() {
|
|
db.SetRepo(&common.Repo{FullName: testRepo})
|
|
|
|
err := db.SetRepoKeypair(testRepo, &common.Keypair{Private: "A", Public: "Alpha"})
|
|
g.Assert(err).Equal(nil)
|
|
})
|
|
|
|
g.It("Should get RepoKeypair", func() {
|
|
db.SetRepo(&common.Repo{FullName: testRepo})
|
|
err := db.SetRepoKeypair(testRepo, &common.Keypair{Private: "A", Public: "Alpha"})
|
|
|
|
keypair, err := db.RepoKeypair(testRepo)
|
|
g.Assert(err).Equal(nil)
|
|
g.Assert(keypair.Public).Equal("Alpha")
|
|
g.Assert(keypair.Private).Equal("A")
|
|
})
|
|
|
|
g.It("Should set Subscriber", func() {
|
|
db.SetRepo(&common.Repo{FullName: testRepo})
|
|
err := db.SetSubscriber(testUser, testRepo)
|
|
g.Assert(err).Equal(nil)
|
|
})
|
|
|
|
g.It("Should get Subscribed", func() {
|
|
db.SetRepo(&common.Repo{FullName: testRepo})
|
|
err := db.SetSubscriber(testUser, testRepo)
|
|
subscribed, err := db.Subscribed(testUser, testRepo)
|
|
g.Assert(err).Equal(nil)
|
|
g.Assert(subscribed).Equal(true)
|
|
})
|
|
|
|
g.It("Should del Subscriber", func() {
|
|
db.SetRepo(&common.Repo{FullName: testRepo})
|
|
db.SetSubscriber(testUser, testRepo)
|
|
err := db.DelSubscriber(testUser, testRepo)
|
|
g.Assert(err).Equal(nil)
|
|
|
|
subscribed, err := db.Subscribed(testUser, testRepo)
|
|
g.Assert(subscribed).Equal(false)
|
|
|
|
})
|
|
|
|
})
|
|
}
|
|
|
|
func TestRepoDel(t *testing.T) {
|
|
g := Goblin(t)
|
|
g.Describe("Delete repo", func() {
|
|
|
|
var db *DB // temporary database
|
|
|
|
user := &common.User{Login: "freya"}
|
|
repoUri := string("github.com/octopod/hq")
|
|
|
|
// create a new database before each unit
|
|
// test and destroy afterwards.
|
|
g.BeforeEach(func() {
|
|
file, err := ioutil.TempFile(os.TempDir(), "drone-bolt")
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
db = Must(file.Name())
|
|
})
|
|
g.AfterEach(func() {
|
|
os.Remove(db.Path())
|
|
})
|
|
|
|
g.It("should cleanup", func() {
|
|
repo := &common.Repo{FullName: repoUri}
|
|
err := db.SetRepoNotExists(user, repo)
|
|
g.Assert(err).Equal(nil)
|
|
|
|
db.SetBuild(repoUri, &common.Build{State: "success"})
|
|
db.SetBuild(repoUri, &common.Build{State: "success"})
|
|
db.SetBuild(repoUri, &common.Build{State: "pending"})
|
|
|
|
db.SetBuildStatus(repoUri, 1, &common.Status{Context: "success"})
|
|
db.SetBuildStatus(repoUri, 2, &common.Status{Context: "success"})
|
|
db.SetBuildStatus(repoUri, 3, &common.Status{Context: "pending"})
|
|
|
|
// first a little sanity to validate our test conditions
|
|
_, err = db.BuildLast(repoUri)
|
|
g.Assert(err).Equal(nil)
|
|
|
|
// now run our specific test suite
|
|
// 1. ensure that we can delete the repo
|
|
err = db.DelRepo(repo)
|
|
g.Assert(err).Equal(nil)
|
|
|
|
// 2. ensure that deleting the repo cleans up other references
|
|
_, err = db.Build(repoUri, 1)
|
|
g.Assert(err).Equal(ErrKeyNotFound)
|
|
})
|
|
})
|
|
}
|