2022-10-18 01:24:12 +00:00
|
|
|
// Copyright 2022 Woodpecker Authors
|
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.
|
|
|
|
|
2015-11-11 21:42:31 +00:00
|
|
|
package github
|
|
|
|
|
|
|
|
import (
|
2021-09-28 10:56:59 +00:00
|
|
|
"context"
|
2016-05-03 20:01:16 +00:00
|
|
|
"net/http/httptest"
|
2015-11-11 21:42:31 +00:00
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/franela/goblin"
|
2016-05-03 20:01:16 +00:00
|
|
|
"github.com/gin-gonic/gin"
|
2021-10-12 07:25:13 +00:00
|
|
|
|
2022-11-04 23:35:06 +00:00
|
|
|
"github.com/woodpecker-ci/woodpecker/server/forge/github/fixtures"
|
2021-10-12 07:25:13 +00:00
|
|
|
"github.com/woodpecker-ci/woodpecker/server/model"
|
2015-11-11 21:42:31 +00:00
|
|
|
)
|
|
|
|
|
2016-05-03 20:01:16 +00:00
|
|
|
func Test_github(t *testing.T) {
|
|
|
|
gin.SetMode(gin.TestMode)
|
|
|
|
|
|
|
|
s := httptest.NewServer(fixtures.Handler())
|
|
|
|
c, _ := New(Opts{
|
|
|
|
URL: s.URL,
|
|
|
|
SkipVerify: true,
|
|
|
|
})
|
2015-11-11 21:42:31 +00:00
|
|
|
|
2021-09-28 10:56:59 +00:00
|
|
|
ctx := context.Background()
|
2015-11-11 21:42:31 +00:00
|
|
|
g := goblin.Goblin(t)
|
2016-05-03 20:01:16 +00:00
|
|
|
g.Describe("GitHub", func() {
|
|
|
|
g.After(func() {
|
|
|
|
s.Close()
|
2015-11-11 21:42:31 +00:00
|
|
|
})
|
|
|
|
|
2022-11-04 23:35:06 +00:00
|
|
|
g.Describe("Creating a forge", func() {
|
2016-05-03 20:01:16 +00:00
|
|
|
g.It("Should return client with specified options", func() {
|
2022-11-04 23:35:06 +00:00
|
|
|
forge, _ := New(Opts{
|
2022-01-31 14:38:00 +00:00
|
|
|
URL: "http://localhost:8080/",
|
|
|
|
Client: "0ZXh0IjoiI",
|
|
|
|
Secret: "I1NiIsInR5",
|
|
|
|
SkipVerify: true,
|
2016-05-03 20:01:16 +00:00
|
|
|
})
|
2022-11-04 23:35:06 +00:00
|
|
|
g.Assert(forge.(*client).URL).Equal("http://localhost:8080")
|
|
|
|
g.Assert(forge.(*client).API).Equal("http://localhost:8080/api/v3/")
|
|
|
|
g.Assert(forge.(*client).Client).Equal("0ZXh0IjoiI")
|
|
|
|
g.Assert(forge.(*client).Secret).Equal("I1NiIsInR5")
|
|
|
|
g.Assert(forge.(*client).SkipVerify).Equal(true)
|
2016-05-03 20:01:16 +00:00
|
|
|
})
|
|
|
|
})
|
2015-11-11 21:42:31 +00:00
|
|
|
|
2016-05-03 20:01:16 +00:00
|
|
|
g.Describe("Generating a netrc file", func() {
|
|
|
|
g.It("Should return a netrc with the user token", func() {
|
2022-11-04 23:35:06 +00:00
|
|
|
forge, _ := New(Opts{})
|
|
|
|
netrc, _ := forge.Netrc(fakeUser, fakeRepo)
|
2016-05-03 20:01:16 +00:00
|
|
|
g.Assert(netrc.Machine).Equal("github.com")
|
|
|
|
g.Assert(netrc.Login).Equal(fakeUser.Token)
|
|
|
|
g.Assert(netrc.Password).Equal("x-oauth-basic")
|
|
|
|
})
|
|
|
|
g.It("Should return a netrc with the machine account", func() {
|
2022-11-04 23:35:06 +00:00
|
|
|
forge, _ := New(Opts{})
|
|
|
|
netrc, _ := forge.Netrc(nil, fakeRepo)
|
2016-05-03 20:01:16 +00:00
|
|
|
g.Assert(netrc.Machine).Equal("github.com")
|
2022-01-31 14:38:00 +00:00
|
|
|
g.Assert(netrc.Login).Equal("")
|
|
|
|
g.Assert(netrc.Password).Equal("")
|
2015-11-11 21:42:31 +00:00
|
|
|
})
|
|
|
|
})
|
2016-05-03 20:01:16 +00:00
|
|
|
|
|
|
|
g.Describe("Requesting a repository", func() {
|
|
|
|
g.It("Should return the repository details", func() {
|
2022-11-15 14:01:23 +00:00
|
|
|
repo, err := c.Repo(ctx, fakeUser, fakeRepo.ForgeRemoteID, fakeRepo.Owner, fakeRepo.Name)
|
2021-11-04 13:42:25 +00:00
|
|
|
g.Assert(err).IsNil()
|
2022-11-15 14:01:23 +00:00
|
|
|
g.Assert(repo.ForgeRemoteID).Equal(fakeRepo.ForgeRemoteID)
|
2016-05-03 20:01:16 +00:00
|
|
|
g.Assert(repo.Owner).Equal(fakeRepo.Owner)
|
|
|
|
g.Assert(repo.Name).Equal(fakeRepo.Name)
|
|
|
|
g.Assert(repo.FullName).Equal(fakeRepo.FullName)
|
2021-11-22 11:55:13 +00:00
|
|
|
g.Assert(repo.IsSCMPrivate).IsTrue()
|
2016-05-03 20:01:16 +00:00
|
|
|
g.Assert(repo.Clone).Equal(fakeRepo.Clone)
|
|
|
|
g.Assert(repo.Link).Equal(fakeRepo.Link)
|
|
|
|
})
|
|
|
|
g.It("Should handle a not found error", func() {
|
2022-09-05 15:08:51 +00:00
|
|
|
_, err := c.Repo(ctx, fakeUser, "0", fakeRepoNotFound.Owner, fakeRepoNotFound.Name)
|
2021-11-04 13:42:25 +00:00
|
|
|
g.Assert(err).IsNotNil()
|
2016-05-03 20:01:16 +00:00
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
g.It("Should return a user repository list")
|
|
|
|
|
|
|
|
g.It("Should return a user team list")
|
|
|
|
|
2022-11-09 07:12:17 +00:00
|
|
|
g.It("Should register repository hooks")
|
2016-05-03 20:01:16 +00:00
|
|
|
|
|
|
|
g.It("Should return a repository file")
|
|
|
|
|
|
|
|
g.Describe("Given an authentication request", func() {
|
|
|
|
g.It("Should redirect to the GitHub login page")
|
|
|
|
g.It("Should create an access token")
|
|
|
|
g.It("Should handle an access token error")
|
|
|
|
g.It("Should return the authenticated user")
|
2016-12-19 05:42:56 +00:00
|
|
|
g.It("Should handle authentication errors")
|
2016-05-03 20:01:16 +00:00
|
|
|
})
|
2015-11-11 21:42:31 +00:00
|
|
|
})
|
|
|
|
}
|
2016-03-10 19:30:14 +00:00
|
|
|
|
2016-05-03 20:01:16 +00:00
|
|
|
var (
|
|
|
|
fakeUser = &model.User{
|
|
|
|
Login: "octocat",
|
|
|
|
Token: "cfcd2084",
|
|
|
|
}
|
|
|
|
|
|
|
|
fakeRepo = &model.Repo{
|
2022-11-15 14:01:23 +00:00
|
|
|
ForgeRemoteID: "5",
|
|
|
|
Owner: "octocat",
|
|
|
|
Name: "Hello-World",
|
|
|
|
FullName: "octocat/Hello-World",
|
|
|
|
Avatar: "https://github.com/images/error/octocat_happy.gif",
|
|
|
|
Link: "https://github.com/octocat/Hello-World",
|
|
|
|
Clone: "https://github.com/octocat/Hello-World.git",
|
|
|
|
IsSCMPrivate: true,
|
2016-05-03 20:01:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fakeRepoNotFound = &model.Repo{
|
|
|
|
Owner: "test_name",
|
|
|
|
Name: "repo_not_found",
|
|
|
|
FullName: "test_name/repo_not_found",
|
|
|
|
}
|
|
|
|
)
|