This repository was archived by the owner on Feb 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsettings_integration_test.go
More file actions
158 lines (126 loc) · 4.34 KB
/
Copy pathsettings_integration_test.go
File metadata and controls
158 lines (126 loc) · 4.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
// Copyright (c) 2015 Ableton AG, Berlin. All rights reserved.
//
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// +build integration
package travis
import (
"context"
"net/http"
"reflect"
"testing"
"time"
)
func TestSettingsService_Integration_FindByRepoId(t *testing.T) {
setting, res, err := integrationClient.Settings.FindByRepoId(context.TODO(), integrationRepoId, BuildsOnlyWithTravisYmlSetting)
if err != nil {
t.Fatalf("unexpected error occured: %s", err)
}
if res.StatusCode != http.StatusOK {
t.Fatalf("invalid http status: %s", res.Status)
}
want := &Setting{
Name: String(BuildsOnlyWithTravisYmlSetting),
Value: false,
Metadata: &Metadata{
Type: String("setting"),
Href: String("/repo/20783933/setting/builds_only_with_travis_yml"),
Representation: String("standard"),
Permissions: &Permissions{"read": true, "write": true},
},
}
if !reflect.DeepEqual(setting, want) {
t.Errorf("Settings.FindByRepoId returned %+v, want %+v", setting, want)
}
}
func TestSettingsService_Integration_FindByRepoSlug(t *testing.T) {
setting, res, err := integrationClient.Settings.FindByRepoSlug(context.TODO(), integrationRepoSlug, BuildsOnlyWithTravisYmlSetting)
if err != nil {
t.Fatalf("unexpected error occured: %s", err)
}
if res.StatusCode != http.StatusOK {
t.Fatalf("invalid http status: %s", res.Status)
}
want := &Setting{
Name: String(BuildsOnlyWithTravisYmlSetting),
Value: false,
Metadata: &Metadata{
Type: String("setting"),
Href: String("/repo/20783933/setting/builds_only_with_travis_yml"),
Representation: String("standard"),
Permissions: &Permissions{"read": true, "write": true},
},
}
if !reflect.DeepEqual(setting, want) {
t.Errorf("Settings.FindByRepoSlug returned %+v, want %+v", setting, want)
}
}
func TestSettingsService_Integration_ListByRepoId(t *testing.T) {
settings, res, err := integrationClient.Settings.ListByRepoId(context.TODO(), integrationRepoId)
if err != nil {
t.Fatalf("unexpected error occured: %s", err)
}
if res.StatusCode != http.StatusOK {
t.Fatalf("invalid http status: %s", res.Status)
}
if len(settings) == 0 {
t.Fatalf("Settings.ListByRepoId settings cannot be empty")
}
}
func TestSettingsService_Integration_ListByRepoSlug(t *testing.T) {
settings, res, err := integrationClient.Settings.ListByRepoSlug(context.TODO(), integrationRepoSlug)
if err != nil {
t.Fatalf("unexpected error occured: %s", err)
}
if res.StatusCode != http.StatusOK {
t.Fatalf("invalid http status: %s", res.Status)
}
if len(settings) == 0 {
t.Fatalf("Settings.ListByRepoSlug settings cannot be empty")
}
}
func TestSettingsService_Integration_UpdateByRepoIdAndSlug(t *testing.T) {
s := SettingBody{Name: BuildsOnlyWithTravisYmlSetting, Value: true}
setting, res, err := integrationClient.Settings.UpdateByRepoId(context.TODO(), integrationRepoId, &s)
if err != nil {
t.Fatalf("unexpected error occured: %s", err)
}
if res.StatusCode != http.StatusOK {
t.Fatalf("invalid http status: %s", res.Status)
}
want := &Setting{
Name: String(BuildsOnlyWithTravisYmlSetting),
Value: true,
Metadata: &Metadata{
Type: String("setting"),
Href: String("/repo/20783933/setting/builds_only_with_travis_yml"),
Representation: String("standard"),
Permissions: &Permissions{"read": true, "write": true},
},
}
if !reflect.DeepEqual(setting, want) {
t.Errorf("Settings.UpdateByRepoId returned %+v, want %+v", setting, want)
}
time.Sleep(2 * time.Second)
s = SettingBody{Name: BuildsOnlyWithTravisYmlSetting, Value: false}
setting, res, err = integrationClient.Settings.UpdateByRepoSlug(context.TODO(), integrationRepoSlug, &s)
if err != nil {
t.Fatalf("unexpected error occured: %s", err)
}
if res.StatusCode != http.StatusOK {
t.Fatalf("invalid http status: %s", res.Status)
}
want = &Setting{
Name: String(BuildsOnlyWithTravisYmlSetting),
Value: false,
Metadata: &Metadata{
Type: String("setting"),
Href: String("/repo/20783933/setting/builds_only_with_travis_yml"),
Representation: String("standard"),
Permissions: &Permissions{"read": true, "write": true},
},
}
if !reflect.DeepEqual(setting, want) {
t.Errorf("Settings.UpdateByRepoSlug returned %+v, want %+v", setting, want)
}
}