-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow worker machines to download build artifacts
- Loading branch information
1 parent
dc4beb4
commit 0f84859
Showing
4 changed files
with
161 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,10 +3,20 @@ | |
package api | ||
|
||
import ( | ||
"bytes" | ||
"io/ioutil" | ||
"net/http" | ||
"net/http/httptest" | ||
"strconv" | ||
"testing" | ||
"time" | ||
|
||
"github.com/ReconfigureIO/platform/models" | ||
"github.com/gin-gonic/gin" | ||
"github.com/golang/mock/gomock" | ||
"github.com/jinzhu/gorm" | ||
|
||
"github.com/ReconfigureIO/platform/models" | ||
"github.com/ReconfigureIO/platform/service/storage" | ||
) | ||
|
||
func TestGetPublicBuilds(t *testing.T) { | ||
|
@@ -46,3 +56,93 @@ func TestGetPublicBuilds(t *testing.T) { | |
} | ||
}) | ||
} | ||
|
||
func TestDownloadArtifact(t *testing.T) { | ||
models.RunTransaction(func(db *gorm.DB) { | ||
DB(db) | ||
now := time.Now() | ||
|
||
user := models.User{ | ||
GithubID: 1, | ||
Email: "[email protected]", | ||
} | ||
db.Create(&user) | ||
|
||
builds := []models.Build{ | ||
{ | ||
Token: "foobar", | ||
Project: models.Project{ | ||
User: models.User{ | ||
ID: user.ID, | ||
}, | ||
}, | ||
BatchJob: models.BatchJob{ | ||
ID: 1, | ||
BatchID: "foobar", | ||
Events: []models.BatchJobEvent{ | ||
models.BatchJobEvent{ | ||
ID: "1", | ||
BatchJobID: 1, | ||
Timestamp: now.Add(-5 * time.Minute), | ||
Status: "QUEUED", | ||
}, | ||
models.BatchJobEvent{ | ||
ID: "2", | ||
BatchJobID: 1, | ||
Timestamp: now.Add(-4 * time.Minute), | ||
Status: "STARTED", | ||
}, | ||
models.BatchJobEvent{ | ||
ID: "3", | ||
BatchJobID: 1, | ||
Timestamp: now.Add(-3 * time.Minute), | ||
Status: "COMPLETED", | ||
}, | ||
}, | ||
}, | ||
}, | ||
} | ||
|
||
for i := range builds { | ||
err := db.Create(&(builds[i])).Error | ||
if err != nil { | ||
t.Fatal(err) | ||
} | ||
} | ||
|
||
mockCtrl := gomock.NewController(t) | ||
defer mockCtrl.Finish() | ||
storageService := storage.NewMockService(mockCtrl) | ||
storageService.EXPECT().Download("builds/"+builds[0].ID+"/artifacts.zip").Return(ioutil.NopCloser(bytes.NewReader([]byte("foo"))), nil) | ||
|
||
build := Build{ | ||
Storage: storageService, | ||
} | ||
r := gin.Default() | ||
r.GET("builds/:id/artifacts", build.DownloadArtifact) | ||
|
||
// Test if human user auth lets you download artifacts | ||
w := httptest.NewRecorder() | ||
req, _ := http.NewRequest("GET", "/builds/"+builds[0].ID+"/artifacts", nil) | ||
req.SetBasicAuth(strconv.Itoa(user.GithubID), user.Token) | ||
r.ServeHTTP(w, req) | ||
|
||
if w.Code == 200 { | ||
t.Error("Human user was allowed to download artifacts") | ||
} | ||
|
||
// Test if machine token auth lets you download artifacts | ||
w = httptest.NewRecorder() | ||
req, _ = http.NewRequest("GET", "/builds/"+builds[0].ID+"/artifacts?token="+builds[0].Token, nil) | ||
r.ServeHTTP(w, req) | ||
|
||
if w.Code != 200 { | ||
t.Fatalf("Machine could not download artifact, response code: %v", w.Code) | ||
} | ||
|
||
if w.Body.String() != "foo" { | ||
t.Fatalf("Expected artifact contents to be foo, got %v \n", w.Body.String()) | ||
} | ||
|
||
}) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters