Rainbond/builder/sources/git_test.go

106 lines
2.9 KiB
Go
Raw Normal View History

2018-03-14 14:12:26 +08:00
// Copyright (C) 2014-2018 Goodrain Co., Ltd.
2018-01-17 22:06:58 +08:00
// RAINBOND, Application Management Platform
2018-03-14 14:33:31 +08:00
2018-01-17 22:06:58 +08:00
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version. For any non-GPL usage of Rainbond,
// one or multiple Commercial Licenses authorized by Goodrain Co., Ltd.
// must be obtained first.
2018-03-14 14:33:31 +08:00
2018-01-17 22:06:58 +08:00
// 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 General Public License for more details.
2018-03-14 14:33:31 +08:00
2018-01-17 22:06:58 +08:00
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
package sources
import (
2018-03-27 13:07:53 +08:00
"io"
2018-01-17 22:06:58 +08:00
"testing"
2018-04-23 15:07:37 +08:00
"time"
2018-01-17 22:06:58 +08:00
"github.com/goodrain/rainbond/event"
2018-01-17 22:06:58 +08:00
)
func init() {
event.NewManager(event.EventConfig{
2018-03-08 15:36:46 +08:00
DiscoverAddress: []string{"172.17.0.1:2379"},
2018-01-17 22:06:58 +08:00
})
}
func TestGitClone(t *testing.T) {
2018-04-23 15:07:37 +08:00
start := time.Now()
2018-01-17 22:06:58 +08:00
csi := CodeSourceInfo{
2018-07-05 12:47:23 +08:00
RepositoryURL: "git@gitee.com:zhoujunhaogoodrain/webhook_test.git",
2018-01-17 22:06:58 +08:00
Branch: "master",
}
//logger := event.GetManager().GetLogger("system")
2018-04-23 15:07:37 +08:00
res, err := GitClone(csi, "/tmp/rainbonddoc3", nil, 1)
if err != nil {
t.Fatal(err)
}
2018-04-23 15:07:37 +08:00
t.Logf("Take %d ms", time.Now().Unix()-start.Unix())
commit, err := GetLastCommit(res)
t.Logf("%+v %+v", commit, err)
}
func TestGitCloneByTag(t *testing.T) {
start := time.Now()
csi := CodeSourceInfo{
RepositoryURL: "https://github.com/goodrain/rainbond-install.git",
Branch: "tag:v3.5.1",
}
//logger := event.GetManager().GetLogger("system")
res, err := GitClone(csi, "/tmp/rainbonddoc4", nil, 1)
if err != nil {
t.Fatal(err)
}
t.Logf("Take %d ms", time.Now().Unix()-start.Unix())
commit, err := GetLastCommit(res)
t.Logf("%+v %+v", commit, err)
}
2018-03-30 15:08:40 +08:00
func TestGitPull(t *testing.T) {
csi := CodeSourceInfo{
2018-07-05 12:47:23 +08:00
RepositoryURL: "git@gitee.com:zhoujunhaogoodrain/webhook_test.git",
Branch: "master2",
2018-03-30 15:08:40 +08:00
}
//logger := event.GetManager().GetLogger("system")
res, err := GitPull(csi, "/tmp/master2", nil, 1)
2018-03-30 15:08:40 +08:00
if err != nil {
t.Fatal(err)
}
commit, err := GetLastCommit(res)
if err != nil {
t.Fatal(err)
2018-03-30 15:08:40 +08:00
}
t.Logf("%v", commit)
2018-03-30 15:08:40 +08:00
}
func TestGitPullOrClone(t *testing.T) {
csi := CodeSourceInfo{
2018-07-05 12:47:23 +08:00
RepositoryURL: "git@gitee.com:zhoujunhaogoodrain/webhook_test.git",
}
//logger := event.GetManager().GetLogger("system")
2018-04-23 15:07:37 +08:00
res, err := GitCloneOrPull(csi, "/tmp/goodrainweb2", nil, 1)
2018-01-17 22:06:58 +08:00
if err != nil {
t.Fatal(err)
}
//get last commit
commit, err := GetLastCommit(res)
2018-03-27 13:07:53 +08:00
if err != nil && err != io.EOF {
t.Fatal(err)
}
t.Logf("%+v", commit)
2018-01-17 22:06:58 +08:00
}
2018-03-31 12:53:50 +08:00
func TestGetCodeCacheDir(t *testing.T) {
csi := CodeSourceInfo{
RepositoryURL: "git@121.196.222.148:summersoft/yycx_push.git",
Branch: "test",
2018-03-31 12:53:50 +08:00
}
t.Log(csi.GetCodeSourceDir())
}