2018-02-19 22:24:10 +00:00
|
|
|
// Copyright 2018 Drone.IO Inc.
|
2018-03-21 13:02:17 +00:00
|
|
|
//
|
2018-02-19 22:24:10 +00:00
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
2018-03-21 13:02:17 +00:00
|
|
|
//
|
2018-02-19 22:24:10 +00:00
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
2018-03-21 13:02:17 +00:00
|
|
|
//
|
2018-02-19 22:24:10 +00:00
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
2016-04-30 08:00:39 +00:00
|
|
|
package bitbucket
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"net/http"
|
|
|
|
"testing"
|
|
|
|
|
2019-08-27 11:01:29 +00:00
|
|
|
"github.com/laszlocph/woodpecker/remote/bitbucket/fixtures"
|
2016-04-30 08:00:39 +00:00
|
|
|
|
|
|
|
"github.com/franela/goblin"
|
|
|
|
)
|
|
|
|
|
|
|
|
func Test_parser(t *testing.T) {
|
|
|
|
|
|
|
|
g := goblin.Goblin(t)
|
2016-05-01 06:22:30 +00:00
|
|
|
g.Describe("Bitbucket parser", func() {
|
2016-04-30 08:00:39 +00:00
|
|
|
|
|
|
|
g.It("Should ignore unsupported hook", func() {
|
|
|
|
buf := bytes.NewBufferString(fixtures.HookPush)
|
|
|
|
req, _ := http.NewRequest("POST", "/hook", buf)
|
|
|
|
req.Header = http.Header{}
|
|
|
|
req.Header.Set(hookEvent, "issue:created")
|
|
|
|
|
|
|
|
r, b, err := parseHook(req)
|
|
|
|
g.Assert(r == nil).IsTrue()
|
|
|
|
g.Assert(b == nil).IsTrue()
|
|
|
|
g.Assert(err == nil).IsTrue()
|
|
|
|
})
|
|
|
|
|
2016-05-01 06:22:30 +00:00
|
|
|
g.Describe("Given a pull request hook payload", func() {
|
2016-04-30 08:00:39 +00:00
|
|
|
|
|
|
|
g.It("Should return err when malformed", func() {
|
|
|
|
buf := bytes.NewBufferString("[]")
|
|
|
|
req, _ := http.NewRequest("POST", "/hook", buf)
|
|
|
|
req.Header = http.Header{}
|
|
|
|
req.Header.Set(hookEvent, hookPullCreated)
|
|
|
|
|
|
|
|
_, _, err := parseHook(req)
|
|
|
|
g.Assert(err != nil).IsTrue()
|
|
|
|
})
|
|
|
|
|
|
|
|
g.It("Should return nil if not open", func() {
|
|
|
|
buf := bytes.NewBufferString(fixtures.HookMerged)
|
|
|
|
req, _ := http.NewRequest("POST", "/hook", buf)
|
|
|
|
req.Header = http.Header{}
|
|
|
|
req.Header.Set(hookEvent, hookPullCreated)
|
|
|
|
|
|
|
|
r, b, err := parseHook(req)
|
|
|
|
g.Assert(r == nil).IsTrue()
|
|
|
|
g.Assert(b == nil).IsTrue()
|
|
|
|
g.Assert(err == nil).IsTrue()
|
|
|
|
})
|
|
|
|
|
|
|
|
g.It("Should return pull request details", func() {
|
|
|
|
buf := bytes.NewBufferString(fixtures.HookPull)
|
|
|
|
req, _ := http.NewRequest("POST", "/hook", buf)
|
|
|
|
req.Header = http.Header{}
|
|
|
|
req.Header.Set(hookEvent, hookPullCreated)
|
|
|
|
|
|
|
|
r, b, err := parseHook(req)
|
|
|
|
g.Assert(err == nil).IsTrue()
|
|
|
|
g.Assert(r.FullName).Equal("user_name/repo_name")
|
|
|
|
g.Assert(b.Commit).Equal("ce5965ddd289")
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
2016-05-01 06:22:30 +00:00
|
|
|
g.Describe("Given a push hook payload", func() {
|
2016-04-30 08:00:39 +00:00
|
|
|
|
|
|
|
g.It("Should return err when malformed", func() {
|
|
|
|
buf := bytes.NewBufferString("[]")
|
|
|
|
req, _ := http.NewRequest("POST", "/hook", buf)
|
|
|
|
req.Header = http.Header{}
|
|
|
|
req.Header.Set(hookEvent, hookPush)
|
|
|
|
|
|
|
|
_, _, err := parseHook(req)
|
|
|
|
g.Assert(err != nil).IsTrue()
|
|
|
|
})
|
|
|
|
|
|
|
|
g.It("Should return nil if missing commit sha", func() {
|
|
|
|
buf := bytes.NewBufferString(fixtures.HookPushEmptyHash)
|
|
|
|
req, _ := http.NewRequest("POST", "/hook", buf)
|
|
|
|
req.Header = http.Header{}
|
|
|
|
req.Header.Set(hookEvent, hookPush)
|
|
|
|
|
|
|
|
r, b, err := parseHook(req)
|
|
|
|
g.Assert(r == nil).IsTrue()
|
|
|
|
g.Assert(b == nil).IsTrue()
|
|
|
|
g.Assert(err == nil).IsTrue()
|
|
|
|
})
|
|
|
|
|
|
|
|
g.It("Should return push details", func() {
|
|
|
|
buf := bytes.NewBufferString(fixtures.HookPush)
|
|
|
|
req, _ := http.NewRequest("POST", "/hook", buf)
|
|
|
|
req.Header = http.Header{}
|
|
|
|
req.Header.Set(hookEvent, hookPush)
|
|
|
|
|
|
|
|
r, b, err := parseHook(req)
|
|
|
|
g.Assert(err == nil).IsTrue()
|
|
|
|
g.Assert(r.FullName).Equal("user_name/repo_name")
|
|
|
|
g.Assert(b.Commit).Equal("709d658dc5b6d6afcd46049c2f332ee3f515a67d")
|
|
|
|
})
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|