Rainbond/builder/sources/git_test.go

105 lines
3.0 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 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-09-02 16:58:07 +08:00
res, err := GitClone(csi, "/tmp/rainbonddoc3", event.GetTestLogger(), 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-ui.git",
Branch: "master",
}
//logger := event.GetManager().GetLogger("system")
2018-09-02 16:58:07 +08:00
res, err := GitClone(csi, "/tmp/rainbonddoc4", event.GetTestLogger(), 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")
2018-09-02 16:58:07 +08:00
res, err := GitPull(csi, "/tmp/master2", event.GetTestLogger(), 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-09-02 16:58:07 +08:00
res, err := GitCloneOrPull(csi, "/tmp/goodrainweb2", event.GetTestLogger(), 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())
}
func TestGetShowURL(t *testing.T) {
t.Log(getShowURL("https://zsl1526:79890ffc74014b34b49040d42b95d5af@github.com:9090/zsl1549/python-demo.git"))
}