Skip to content
This repository was archived by the owner on Apr 17, 2019. It is now read-only.

Commit 89f6948

Browse files
authored
Merge pull request #3009 from krzysied/dir_list_fix
Utils - fixing ListDirs method
2 parents 8888e4c + 03c3218 commit 89f6948

File tree

2 files changed

+27
-25
lines changed

2 files changed

+27
-25
lines changed

test-utils/utils/bucket.go

+26-24
Original file line numberDiff line numberDiff line change
@@ -94,24 +94,13 @@ func (b *Bucket) ExpandPathURL(pathElements ...interface{}) *url.URL {
9494
// enclosed by the provided path. Note that there's currently no way to get a
9595
// path that ends in '/'.
9696
func (b *Bucket) ExpandListURL(pathElements ...interface{}) *url.URL {
97-
return buildURL(map[string]string{
97+
return b.buildURL(map[string]string{
9898
// GCS api doesn't like preceding '/', so remove it.
9999
"prefix": strings.TrimPrefix(joinStringsAndInts(pathElements...), "/"),
100100
})
101101
}
102102

103-
// ExpandListDirURL produces the URL for a list API query which will list directories
104-
// enclosed by the provided path. Note that there's currently no way to get a
105-
// path that ends in '/'.
106-
func (b *Bucket) ExpandListDirURL(pathElements ...interface{}) *url.URL {
107-
return buildURL(map[string]string{
108-
// GCS api doesn't like preceding '/', so remove it.
109-
"prefix": strings.TrimPrefix(joinStringsAndInts(pathElements...)+"/", "/"),
110-
"delimiter": "/",
111-
})
112-
}
113-
114-
func (b *Bucket) buildUrl(parameters map[string]string) *url.URL {
103+
func (b *Bucket) buildURL(parameters map[string]string) *url.URL {
115104
q := url.Values{}
116105
for key, value := range parameters {
117106
q.Set(key, value)
@@ -146,18 +135,31 @@ func (b *Bucket) List(pathElements ...interface{}) ([]string, error) {
146135
// ListDirs returns a list of all directories inside the given path.
147136
// The returned direcotry name included the complete path from bucket root
148137
func (b *Bucket) ListDirs(pathElements ...interface{}) ([]string, error) {
149-
listURL := b.ExpandListDirURL(pathElements...)
150-
data, err := queryURL(listURL.String())
151-
if err != nil {
152-
return nil, err
153-
}
154138
var ret []string
155-
if _, ok := data["prefixes"]; !ok {
156-
glog.Warningf("No matching dirs were found (from: %v)", listURL.String())
157-
return ret, nil
158-
}
159-
for _, item := range data["prefixes"].([]interface{}) {
160-
ret = append(ret, item.(string))
139+
var pageToken string
140+
for {
141+
var ok bool
142+
listURL := b.buildURL(map[string]string{
143+
// GCS api doesn't like preceding '/', so remove it.
144+
"prefix": strings.TrimPrefix(joinStringsAndInts(pathElements...)+"/", "/"),
145+
"delimiter": "/",
146+
"pageToken": pageToken,
147+
})
148+
data, err := queryURL(listURL.String())
149+
if err != nil {
150+
return nil, err
151+
}
152+
if _, ok = data["prefixes"]; !ok {
153+
glog.Warningf("No matching dirs were found (from: %v)", listURL.String())
154+
return ret, nil
155+
}
156+
for _, item := range data["prefixes"].([]interface{}) {
157+
ret = append(ret, item.(string))
158+
}
159+
pageToken, ok = data["nextPageToken"].(string)
160+
if !ok {
161+
break
162+
}
161163
}
162164
return ret, nil
163165
}

test-utils/utils/utils.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@ func (u *Utils) CheckFinishedStatus(job string, buildNumber int) (bool, error) {
282282
body, err := ioutil.ReadAll(response.Body)
283283
if err != nil {
284284
glog.Errorf("Failed to read the response for %v/%v/%v: %v", job, buildNumber, "finished.json", err)
285-
return false, err
285+
return false, fmt.Errorf("non-success response: %v", response.StatusCode)
286286
}
287287
err = json.Unmarshal(body, &result)
288288
if err != nil {

0 commit comments

Comments
 (0)