You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
go-scm/scm/driver/gitea/gitea_test.go

56 lines
1.4 KiB
Go

// Copyright 2017 Drone.IO Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// package gitea implements a Gogs client.
package gitea
import (
"git.awesome-for.me/liuzhiguo/go-scm/scm"
"testing"
)
func TestClient(t *testing.T) {
client, err := New("https://try.gitea.io")
if err != nil {
t.Error(err)
}
if got, want := client.BaseURL.String(), "https://try.gitea.io/"; got != want {
t.Errorf("Want Client URL %q, got %q", want, got)
}
}
func TestClient_Base(t *testing.T) {
client, err := New("https://try.gitea.io/v1")
if err != nil {
t.Error(err)
}
if got, want := client.BaseURL.String(), "https://try.gitea.io/v1/"; got != want {
t.Errorf("Want Client URL %q, got %q", want, got)
}
}
func TestClient_Error(t *testing.T) {
_, err := New("http://a b.com/")
if err == nil {
t.Errorf("Expect error when invalid URL")
}
}
func testPage(res *scm.Response) func(t *testing.T) {
return func(t *testing.T) {
if got, want := res.Page.Next, 2; got != want {
t.Errorf("Want next page %d, got %d", want, got)
}
if got, want := res.Page.Prev, 1; got != want {
t.Errorf("Want prev page %d, got %d", want, got)
}
if got, want := res.Page.First, 1; got != want {
t.Errorf("Want first page %d, got %d", want, got)
}
if got, want := res.Page.Last, 5; got != want {
t.Errorf("Want last page %d, got %d", want, got)
}
}
}