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/bitbucket/user_test.go

91 lines
1.9 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 bitbucket
import (
"context"
"encoding/json"
"io/ioutil"
"testing"
"git.awesome-for.me/liuzhiguo/go-scm/scm"
"github.com/google/go-cmp/cmp"
"github.com/h2non/gock"
)
func TestUserFind(t *testing.T) {
defer gock.Off()
gock.New("https://api.bitbucket.org").
Get("/2.0/user").
Reply(200).
Type("application/json").
File("testdata/user.json")
client, _ := New("https://api.bitbucket.org")
got, _, err := client.Users.Find(context.Background())
if err != nil {
t.Error(err)
}
want := new(scm.User)
raw, _ := ioutil.ReadFile("testdata/user.json.golden")
json.Unmarshal(raw, &want)
if diff := cmp.Diff(got, want); diff != "" {
t.Errorf("Unexpected Results")
t.Log(diff)
}
}
func TestUserLoginFind(t *testing.T) {
defer gock.Off()
gock.New("https://api.bitbucket.org").
Get("/2.0/users/brydzewski").
Reply(200).
Type("application/json").
File("testdata/user.json")
client, _ := New("https://api.bitbucket.org")
got, _, err := client.Users.FindLogin(context.Background(), "brydzewski")
if err != nil {
t.Error(err)
}
want := new(scm.User)
raw, _ := ioutil.ReadFile("testdata/user.json.golden")
json.Unmarshal(raw, &want)
if diff := cmp.Diff(got, want); diff != "" {
t.Errorf("Unexpected Results")
t.Log(diff)
}
}
func TestUserFindEmail(t *testing.T) {
defer gock.Off()
gock.New("https://api.bitbucket.org").
Get("/2.0/user/emails").
Reply(200).
Type("application/json").
File("testdata/userEmail.json")
client, _ := New("https://api.bitbucket.org")
got, _, err := client.Users.FindEmail(context.Background())
if err != nil {
t.Error(err)
}
want := "test@harness.io"
if diff := cmp.Diff(got, want); diff != "" {
t.Errorf("Unexpected Results")
t.Log(diff)
}
}