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
Łukasz Nowak
caddy
Commits
e3cea042
Commit
e3cea042
authored
Aug 30, 2015
by
karthic rao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Left over comments removed
Redundant comments in the code removed
parent
73026974
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
5 deletions
+2
-5
middleware/browse/browse_test.go
middleware/browse/browse_test.go
+2
-5
No files found.
middleware/browse/browse_test.go
View file @
e3cea042
package
browse
import
(
//"bytes"
"encoding/json"
"encoding/json"
"github.com/mholt/caddy/middleware"
"net/http"
"net/http/httptest"
...
...
@@ -191,7 +190,7 @@ func TestBrowseJson(t *testing.T) {
}
actualJsonResponseString
:=
rec
.
Body
.
String
()
//t.Logf("json response body: %s\n", respBody)
//generating the listing to compare it with the response body
file
,
err
:=
os
.
Open
(
b
.
Root
+
req
.
URL
.
Path
)
if
err
!=
nil
{
...
...
@@ -233,12 +232,10 @@ func TestBrowseJson(t *testing.T) {
listing
.
Order
=
"asc"
listing
.
applySort
()
//var buf bytes.Buffer
marsh
,
err
:=
json
.
Marshal
(
listing
.
Items
)
if
err
!=
nil
{
t
.
Fatalf
(
"Unable to Marshal the listing "
)
}
//t.Logf("json value: %s\n", string(marsh))
expectedJsonString
:=
string
(
marsh
)
if
actualJsonResponseString
!=
expectedJsonString
{
t
.
Errorf
(
"Json response string doesnt match the expected Json response "
)
...
...
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