Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-workhorse
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kazuhiko Shiozaki
gitlab-workhorse
Commits
b0452381
Commit
b0452381
authored
Dec 10, 2015
by
Kamil Trzcinski
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make go fmt happy
parent
d186cf65
Changes
8
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
21 additions
and
23 deletions
+21
-23
deploy_page_test.go
deploy_page_test.go
+2
-2
error_pages_test.go
error_pages_test.go
+4
-5
main.go
main.go
+1
-1
main_test.go
main_test.go
+0
-1
sendfile_test.go
sendfile_test.go
+6
-7
servefile.go
servefile.go
+2
-2
servefile_test.go
servefile_test.go
+4
-3
uploads_test.go
uploads_test.go
+2
-2
No files found.
deploy_page_test.go
View file @
b0452381
package
main
import
(
"testing"
"io/ioutil"
"os"
"net/http"
"net/http/httptest"
"os"
"path/filepath"
"testing"
)
func
TestIfNoDeployPageExist
(
t
*
testing
.
T
)
{
...
...
error_pages_test.go
View file @
b0452381
package
main
import
(
"
testing
"
"
fmt
"
"io/ioutil"
"
path/filepath
"
"
net/http
"
"net/http/httptest"
"os"
"
net/http
"
"
fmt
"
"
path/filepath
"
"
testing
"
)
func
TestIfErrorPageIsPresented
(
t
*
testing
.
T
)
{
...
...
@@ -59,4 +59,3 @@ func TestIfErrorPassedIfNoErrorPageIsFound(t *testing.T) {
t
.
Error
(
"Page should be response error: "
,
w
.
Body
.
String
())
}
}
main.go
View file @
b0452381
...
...
@@ -37,7 +37,7 @@ var authSocket = flag.String("authSocket", "", "Optional: Unix domain socket to
var
pprofListenAddr
=
flag
.
String
(
"pprofListenAddr"
,
""
,
"pprof listening address, e.g. 'localhost:6060'"
)
var
relativeUrlRoot
=
flag
.
String
(
"relativeUrlRoot"
,
"/"
,
"GitLab relative URL root"
)
var
documentRoot
=
flag
.
String
(
"documentRoot"
,
"public"
,
"Path to static files content"
)
var
proxyTimeout
=
flag
.
Duration
(
"proxyTimeout"
,
5
*
time
.
Minute
,
"Proxy request timeout"
)
var
proxyTimeout
=
flag
.
Duration
(
"proxyTimeout"
,
5
*
time
.
Minute
,
"Proxy request timeout"
)
type
httpRoute
struct
{
method
string
...
...
main_test.go
View file @
b0452381
...
...
@@ -366,4 +366,3 @@ func repoPath(t *testing.T) string {
}
return
path
.
Join
(
cwd
,
testRepoRoot
,
testRepo
)
}
sendfile_test.go
View file @
b0452381
package
main
import
(
"
testing
"
"
bytes
"
"fmt"
"path"
"net/http/httptest"
"net/http"
"io/ioutil"
"log"
"net/http"
"net/http/httptest"
"os"
"io/ioutil"
"os/exec"
"bytes"
"path"
"testing"
)
func
TestDeniedLfsDownload
(
t
*
testing
.
T
)
{
...
...
@@ -98,4 +98,3 @@ func deniedXSendfileDownload(t *testing.T, contentFilename string, filePath stri
t
.
Fatal
(
"Unexpected file contents in download"
)
}
}
servefile.go
View file @
b0452381
servefile_test.go
View file @
b0452381
package
main
import
(
"io/ioutil"
"
testing
"
"
net/http
"
"net/http/httptest"
"os"
"net/http"
"path/filepath"
"testing"
)
func
TestServingNonExistingFile
(
t
*
testing
.
T
)
{
...
...
uploads_test.go
View file @
b0452381
...
...
@@ -41,7 +41,7 @@ func TestUploadHandlerForwardingRawData(t *testing.T) {
fmt
.
Fprint
(
w
,
"RESPONSE"
)
})
httpRequest
,
err
:=
http
.
NewRequest
(
"PATCH"
,
ts
.
URL
+
"/url/path"
,
bytes
.
NewBufferString
(
"REQUEST"
))
httpRequest
,
err
:=
http
.
NewRequest
(
"PATCH"
,
ts
.
URL
+
"/url/path"
,
bytes
.
NewBufferString
(
"REQUEST"
))
if
err
!=
nil
{
t
.
Fatal
(
err
)
}
...
...
@@ -123,7 +123,7 @@ func TestUploadHandlerRewritingMultiPartData(t *testing.T) {
fmt
.
Fprint
(
file
,
"test"
)
writer
.
Close
()
httpRequest
,
err
:=
http
.
NewRequest
(
"PUT"
,
ts
.
URL
+
"/url/path"
,
nil
)
httpRequest
,
err
:=
http
.
NewRequest
(
"PUT"
,
ts
.
URL
+
"/url/path"
,
nil
)
if
err
!=
nil
{
t
.
Fatal
(
err
)
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment