Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
caddy
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
nexedi
caddy
Commits
d6242e9c
Commit
d6242e9c
authored
Oct 15, 2015
by
Makpoc
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Apply review comments - change the used domain, remove obsolete function, remove commented tests
parent
bd4d9c6f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
22 deletions
+12
-22
middleware/context_test.go
middleware/context_test.go
+12
-22
No files found.
middleware/context_test.go
View file @
d6242e9c
...
...
@@ -119,7 +119,7 @@ func TestCookie(t *testing.T) {
},
// Test 3 - cookie with optional fields
{
cookie
:
&
http
.
Cookie
{
Name
:
"cookie"
,
Value
:
"cookieValue"
,
Path
:
"/path"
,
Domain
:
"https://
caddy.com
"
,
Expires
:
(
time
.
Now
()
.
Add
(
10
*
time
.
Minute
)),
MaxAge
:
120
},
cookie
:
&
http
.
Cookie
{
Name
:
"cookie"
,
Value
:
"cookieValue"
,
Path
:
"/path"
,
Domain
:
"https://
localhost
"
,
Expires
:
(
time
.
Now
()
.
Add
(
10
*
time
.
Minute
)),
MaxAge
:
120
},
cookieName
:
"cookie"
,
expectedValue
:
"cookieValue"
,
},
...
...
@@ -194,12 +194,6 @@ func TestIP(t *testing.T) {
{
"[2001:db8:a0b:12f0::1]"
,
"[2001:db8:a0b:12f0::1]"
},
// Test 4 - ipv6 with zone and port
{
`[fe80:1::3%eth0]:44`
,
`fe80:1::3%eth0`
},
// Test 5 - ipv6 without port with brackets
// {"[:fe:2]", ":fe:2"}, // TODO - failing (error in SplitHostPort) returns the host with brackets
// Test 6 - invalid address
// {":::::::::::::", ""}, // TODO - failing (error in SplitHostPort) returns the invalid address
// Test 7 - invalid address
// {"[::1][]", ""}, // TODO - failing (error in SplitHostPort) returns the invalid address
}
for
i
,
test
:=
range
tests
{
...
...
@@ -323,49 +317,49 @@ func TestPathMatches(t *testing.T) {
}{
// Test 0
{
urlStr
:
"http://
caddy.com
/"
,
urlStr
:
"http://
localhost
/"
,
pattern
:
""
,
shouldMatch
:
true
,
},
// Test 1
{
urlStr
:
"http://
caddy.com
"
,
urlStr
:
"http://
localhost
"
,
pattern
:
""
,
shouldMatch
:
true
,
},
// Test 1
{
urlStr
:
"http://
caddy.com
/"
,
urlStr
:
"http://
localhost
/"
,
pattern
:
"/"
,
shouldMatch
:
true
,
},
// Test 3
{
urlStr
:
"http://
caddy.com
/?param=val"
,
urlStr
:
"http://
localhost
/?param=val"
,
pattern
:
"/"
,
shouldMatch
:
true
,
},
// Test 4
{
urlStr
:
"http://
caddy.com
/dir1/dir2"
,
urlStr
:
"http://
localhost
/dir1/dir2"
,
pattern
:
"/dir2"
,
shouldMatch
:
false
,
},
// Test 5
{
urlStr
:
"http://
caddy.com
/dir1/dir2"
,
urlStr
:
"http://
localhost
/dir1/dir2"
,
pattern
:
"/dir1"
,
shouldMatch
:
true
,
},
// Test 6
{
urlStr
:
"http://
caddy.com
:444/dir1/dir2"
,
urlStr
:
"http://
localhost
:444/dir1/dir2"
,
pattern
:
"/dir1"
,
shouldMatch
:
true
,
},
// Test 7
{
urlStr
:
"http://
caddy.com
/dir1/dir2"
,
urlStr
:
"http://
localhost
/dir1/dir2"
,
pattern
:
"*/dir2"
,
shouldMatch
:
false
,
},
...
...
@@ -387,13 +381,13 @@ func TestPathMatches(t *testing.T) {
}
func
initTestContext
()
(
Context
,
error
)
{
rootDir
:=
getTestFilesFolder
()
body
:=
bytes
.
NewBufferString
(
"request body"
)
request
,
err
:=
http
.
NewRequest
(
"GET"
,
"https://
caddy.com
"
,
body
)
request
,
err
:=
http
.
NewRequest
(
"GET"
,
"https://
localhost
"
,
body
)
if
err
!=
nil
{
return
Context
{},
err
}
return
Context
{
Root
:
http
.
Dir
(
rootDir
),
Req
:
request
},
nil
return
Context
{
Root
:
http
.
Dir
(
os
.
TempDir
()),
Req
:
request
},
nil
}
func
getContextOrFail
(
t
*
testing
.
T
)
Context
{
...
...
@@ -404,10 +398,6 @@ func getContextOrFail(t *testing.T) Context {
return
context
}
func
getTestFilesFolder
()
string
{
return
os
.
TempDir
()
}
func
getTestPrefix
(
testN
int
)
string
{
return
fmt
.
Sprintf
(
"Test [%d]: "
,
testN
)
}
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