-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathrepo_test.go
144 lines (118 loc) · 3.61 KB
/
repo_test.go
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
/*
Copyright 2017 HomeAway, Inc
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
http://www.apache.org/licenses/LICENSE-2.0
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.
*/
package cobblerclient
import (
"testing"
"time"
)
func TestNewRepo(t *testing.T) {
// Arrange, Act & Assert
_ = NewRepo()
}
func TestGetRepos(t *testing.T) {
c := createStubHTTPClientSingle(t, "get-repos")
repos, err := c.GetRepos()
FailOnError(t, err)
if len(repos) != 1 {
t.Errorf("Wrong number of repos returned.")
}
}
func TestGetRepo(t *testing.T) {
// Arrange
c := createStubHTTPClientSingle(t, "get-repo")
c.CachedVersion = CobblerVersion{3, 3, 2}
// Act
repo, err := c.GetRepo("rhel-7-x86_64", false, false)
// Assert
FailOnError(t, err)
if repo.Name != "rhel-7-x86_64" {
t.Errorf("Wrong repo returned.")
}
}
func TestDeleteRepo(t *testing.T) {
c := createStubHTTPClientSingle(t, "delete-repo")
err := c.DeleteRepo("test")
FailOnError(t, err)
}
func TestDeleteRepoRecursive(t *testing.T) {
c := createStubHTTPClientSingle(t, "delete-repo")
err := c.DeleteRepoRecursive("test", false)
FailOnError(t, err)
}
func TestListRepoNames(t *testing.T) {
c := createStubHTTPClientSingle(t, "get-item-names-repo")
repos, err := c.ListRepoNames()
FailOnError(t, err)
if len(repos) != 0 {
t.Errorf("Wrong number of repos returned.")
}
}
func TestGetReposSince(t *testing.T) {
c := createStubHTTPClientSingle(t, "get-repo-since")
repos, err := c.GetReposSince(time.Date(1970, 1, 1, 0, 0, 0, 0, time.UTC))
FailOnError(t, err)
if len(repos) != 1 {
t.Errorf("Wrong number of repos returned.")
}
}
func TestFindRepo(t *testing.T) {
c := createStubHTTPClientSingle(t, "find-repo")
criteria := make(map[string]interface{}, 1)
criteria["name"] = "test"
repos, err := c.FindRepo(criteria)
FailOnError(t, err)
if len(repos) != 1 {
t.Errorf("Wrong number of repos returned.")
}
}
func TestFindRepoNames(t *testing.T) {
c := createStubHTTPClientSingle(t, "find-repo-names")
criteria := make(map[string]interface{}, 1)
criteria["name"] = "test"
repos, err := c.FindRepoNames(criteria)
FailOnError(t, err)
if len(repos) != 1 {
t.Errorf("Wrong number of repos returned.")
}
}
func TestSaveRepo(t *testing.T) {
c := createStubHTTPClientSingle(t, "save-repo")
err := c.SaveRepo("repo::testrepo", "bypass")
FailOnError(t, err)
}
func TestCopyRepo(t *testing.T) {
c := createStubHTTPClientSingle(t, "copy-repo")
err := c.CopyRepo("repo::testrepo", "testrepo2")
FailOnError(t, err)
}
func TestRenameRepo(t *testing.T) {
c := createStubHTTPClientSingle(t, "rename-repo")
err := c.RenameRepo("repo::testrepo2", "testrepo1")
FailOnError(t, err)
}
func TestGetRepoHandle(t *testing.T) {
c := createStubHTTPClientSingle(t, "get-repo-handle")
res, err := c.GetRepoHandle("testrepo")
FailOnError(t, err)
if res != "repo::testrepo" {
t.Error("Wrong object id returned.")
}
}
/*
* NOTE: We're skipping the testing of CREATE, UPDATE, DELETE methods for now because
* the current implementation of the StubHTTPClient does not allow
* buffered mock responses so as soon as the method makes the second
* call to Cobbler it'll fail.
* This is a system test, so perhaps we can run Cobbler in a Docker container
* and take it from there.
*/