mirror of
				https://github.com/caddyserver/caddy.git
				synced 2025-11-04 03:27:23 -05:00 
			
		
		
		
	removed redundant comment lines
This commit is contained in:
		
							parent
							
								
									730269743f
								
							
						
					
					
						commit
						679668e3c0
					
				@ -51,6 +51,16 @@ func TestFastcgiParse(t *testing.T) {
 | 
				
			|||||||
				SplitPath:  ".php",
 | 
									SplitPath:  ".php",
 | 
				
			||||||
				IndexFiles: []string{"index.php"},
 | 
									IndexFiles: []string{"index.php"},
 | 
				
			||||||
			}}},
 | 
								}}},
 | 
				
			||||||
 | 
							{`fastcgi / 127.0.0.1:9001 {
 | 
				
			||||||
 | 
						              split .html
 | 
				
			||||||
 | 
						              }`,
 | 
				
			||||||
 | 
								false, []fastcgi.Rule{{
 | 
				
			||||||
 | 
									Path:       "/",
 | 
				
			||||||
 | 
									Address:    "127.0.0.1:9001",
 | 
				
			||||||
 | 
									Ext:        "",
 | 
				
			||||||
 | 
									SplitPath:  ".html",
 | 
				
			||||||
 | 
									IndexFiles: []string{},
 | 
				
			||||||
 | 
								}}},
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
	for i, test := range tests {
 | 
						for i, test := range tests {
 | 
				
			||||||
		c := NewTestController(test.inputFastcgiConfig)
 | 
							c := NewTestController(test.inputFastcgiConfig)
 | 
				
			||||||
 | 
				
			|||||||
@ -1,7 +1,6 @@
 | 
				
			|||||||
package browse
 | 
					package browse
 | 
				
			||||||
 | 
					
 | 
				
			||||||
import (
 | 
					import (
 | 
				
			||||||
	//"bytes"
 | 
					 | 
				
			||||||
	"encoding/json"
 | 
						"encoding/json"
 | 
				
			||||||
	"github.com/mholt/caddy/middleware"
 | 
						"github.com/mholt/caddy/middleware"
 | 
				
			||||||
	"net/http"
 | 
						"net/http"
 | 
				
			||||||
@ -191,7 +190,7 @@ func TestBrowseJson(t *testing.T) {
 | 
				
			|||||||
	}
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	actualJsonResponseString := rec.Body.String()
 | 
						actualJsonResponseString := rec.Body.String()
 | 
				
			||||||
	//t.Logf("json response body: %s\n", respBody)
 | 
					
 | 
				
			||||||
	//generating the listing to compare it with the response body
 | 
						//generating the listing to compare it with the response body
 | 
				
			||||||
	file, err := os.Open(b.Root + req.URL.Path)
 | 
						file, err := os.Open(b.Root + req.URL.Path)
 | 
				
			||||||
	if err != nil {
 | 
						if err != nil {
 | 
				
			||||||
@ -233,12 +232,11 @@ func TestBrowseJson(t *testing.T) {
 | 
				
			|||||||
	listing.Order = "asc"
 | 
						listing.Order = "asc"
 | 
				
			||||||
	listing.applySort()
 | 
						listing.applySort()
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	//var buf bytes.Buffer
 | 
					 | 
				
			||||||
	marsh, err := json.Marshal(listing.Items)
 | 
						marsh, err := json.Marshal(listing.Items)
 | 
				
			||||||
	if err != nil {
 | 
						if err != nil {
 | 
				
			||||||
		t.Fatalf("Unable to Marshal the listing ")
 | 
							t.Fatalf("Unable to Marshal the listing ")
 | 
				
			||||||
	}
 | 
						}
 | 
				
			||||||
	//t.Logf("json value: %s\n", string(marsh))
 | 
					
 | 
				
			||||||
	expectedJsonString := string(marsh)
 | 
						expectedJsonString := string(marsh)
 | 
				
			||||||
	if actualJsonResponseString != expectedJsonString {
 | 
						if actualJsonResponseString != expectedJsonString {
 | 
				
			||||||
		t.Errorf("Json response string doesnt match the expected Json response ")
 | 
							t.Errorf("Json response string doesnt match the expected Json response ")
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user