mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-12-30 10:11:23 +02:00
88 lines
2.5 KiB
Go
88 lines
2.5 KiB
Go
|
// Copyright 2014 The go-github AUTHORS. All rights reserved.
|
||
|
//
|
||
|
// Use of this source code is governed by a BSD-style
|
||
|
// license that can be found in the LICENSE file.
|
||
|
|
||
|
package github
|
||
|
|
||
|
import (
|
||
|
"encoding/json"
|
||
|
"fmt"
|
||
|
"net/http"
|
||
|
"reflect"
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
func TestRepositoriesService_ListDeployments(t *testing.T) {
|
||
|
setup()
|
||
|
defer teardown()
|
||
|
|
||
|
mux.HandleFunc("/repos/o/r/deployments", func(w http.ResponseWriter, r *http.Request) {
|
||
|
testMethod(t, r, "GET")
|
||
|
testFormValues(t, r, values{"environment": "test"})
|
||
|
fmt.Fprint(w, `[{"id":1}, {"id":2}]`)
|
||
|
})
|
||
|
|
||
|
opt := &DeploymentsListOptions{Environment: "test"}
|
||
|
deployments, _, err := client.Repositories.ListDeployments("o", "r", opt)
|
||
|
if err != nil {
|
||
|
t.Errorf("Repositories.ListDeployments returned error: %v", err)
|
||
|
}
|
||
|
|
||
|
want := []Deployment{{ID: Int(1)}, {ID: Int(2)}}
|
||
|
if !reflect.DeepEqual(deployments, want) {
|
||
|
t.Errorf("Repositories.ListDeployments returned %+v, want %+v", deployments, want)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func TestRepositoriesService_CreateDeployment(t *testing.T) {
|
||
|
setup()
|
||
|
defer teardown()
|
||
|
|
||
|
input := &DeploymentRequest{Ref: String("1111"), Task: String("deploy")}
|
||
|
|
||
|
mux.HandleFunc("/repos/o/r/deployments", func(w http.ResponseWriter, r *http.Request) {
|
||
|
v := new(DeploymentRequest)
|
||
|
json.NewDecoder(r.Body).Decode(v)
|
||
|
|
||
|
testMethod(t, r, "POST")
|
||
|
if !reflect.DeepEqual(v, input) {
|
||
|
t.Errorf("Request body = %+v, want %+v", v, input)
|
||
|
}
|
||
|
|
||
|
fmt.Fprint(w, `{"ref": "1111", "task": "deploy"}`)
|
||
|
})
|
||
|
|
||
|
deployment, _, err := client.Repositories.CreateDeployment("o", "r", input)
|
||
|
if err != nil {
|
||
|
t.Errorf("Repositories.CreateDeployment returned error: %v", err)
|
||
|
}
|
||
|
|
||
|
want := &Deployment{Ref: String("1111"), Task: String("deploy")}
|
||
|
if !reflect.DeepEqual(deployment, want) {
|
||
|
t.Errorf("Repositories.CreateDeployment returned %+v, want %+v", deployment, want)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func TestRepositoriesService_ListDeploymentStatuses(t *testing.T) {
|
||
|
setup()
|
||
|
defer teardown()
|
||
|
|
||
|
mux.HandleFunc("/repos/o/r/deployments/1/statuses", func(w http.ResponseWriter, r *http.Request) {
|
||
|
testMethod(t, r, "GET")
|
||
|
testFormValues(t, r, values{"page": "2"})
|
||
|
fmt.Fprint(w, `[{"id":1}, {"id":2}]`)
|
||
|
})
|
||
|
|
||
|
opt := &ListOptions{Page: 2}
|
||
|
statutses, _, err := client.Repositories.ListDeploymentStatuses("o", "r", 1, opt)
|
||
|
if err != nil {
|
||
|
t.Errorf("Repositories.ListDeploymentStatuses returned error: %v", err)
|
||
|
}
|
||
|
|
||
|
want := []DeploymentStatus{{ID: Int(1)}, {ID: Int(2)}}
|
||
|
if !reflect.DeepEqual(statutses, want) {
|
||
|
t.Errorf("Repositories.ListDeploymentStatuses returned %+v, want %+v", statutses, want)
|
||
|
}
|
||
|
}
|