Source file src/net/url/url_test.go

     1  // Copyright 2009 The Go Authors. All rights reserved.
     2  // Use of this source code is governed by a BSD-style
     3  // license that can be found in the LICENSE file.
     4  
     5  package url
     6  
     7  import (
     8  	"bytes"
     9  	encodingPkg "encoding"
    10  	"encoding/gob"
    11  	"encoding/json"
    12  	"fmt"
    13  	"io"
    14  	"net"
    15  	"reflect"
    16  	"strings"
    17  	"testing"
    18  )
    19  
    20  type URLTest struct {
    21  	in        string
    22  	out       *URL   // expected parse
    23  	roundtrip string // expected result of reserializing the URL; empty means same as "in".
    24  }
    25  
    26  var urltests = []URLTest{
    27  	// no path
    28  	{
    29  		"http://www.google.com",
    30  		&URL{
    31  			Scheme: "http",
    32  			Host:   "www.google.com",
    33  		},
    34  		"",
    35  	},
    36  	// path
    37  	{
    38  		"http://www.google.com/",
    39  		&URL{
    40  			Scheme: "http",
    41  			Host:   "www.google.com",
    42  			Path:   "/",
    43  		},
    44  		"",
    45  	},
    46  	// path with hex escaping
    47  	{
    48  		"http://www.google.com/file%20one%26two",
    49  		&URL{
    50  			Scheme:  "http",
    51  			Host:    "www.google.com",
    52  			Path:    "/file one&two",
    53  			RawPath: "/file%20one%26two",
    54  		},
    55  		"",
    56  	},
    57  	// fragment with hex escaping
    58  	{
    59  		"http://www.google.com/#file%20one%26two",
    60  		&URL{
    61  			Scheme:      "http",
    62  			Host:        "www.google.com",
    63  			Path:        "/",
    64  			Fragment:    "file one&two",
    65  			RawFragment: "file%20one%26two",
    66  		},
    67  		"",
    68  	},
    69  	// user
    70  	{
    71  		"ftp://webmaster@www.google.com/",
    72  		&URL{
    73  			Scheme: "ftp",
    74  			User:   User("webmaster"),
    75  			Host:   "www.google.com",
    76  			Path:   "/",
    77  		},
    78  		"",
    79  	},
    80  	// escape sequence in username
    81  	{
    82  		"ftp://john%20doe@www.google.com/",
    83  		&URL{
    84  			Scheme: "ftp",
    85  			User:   User("john doe"),
    86  			Host:   "www.google.com",
    87  			Path:   "/",
    88  		},
    89  		"ftp://john%20doe@www.google.com/",
    90  	},
    91  	// empty query
    92  	{
    93  		"http://www.google.com/?",
    94  		&URL{
    95  			Scheme:     "http",
    96  			Host:       "www.google.com",
    97  			Path:       "/",
    98  			ForceQuery: true,
    99  		},
   100  		"",
   101  	},
   102  	// query ending in question mark (Issue 14573)
   103  	{
   104  		"http://www.google.com/?foo=bar?",
   105  		&URL{
   106  			Scheme:   "http",
   107  			Host:     "www.google.com",
   108  			Path:     "/",
   109  			RawQuery: "foo=bar?",
   110  		},
   111  		"",
   112  	},
   113  	// query
   114  	{
   115  		"http://www.google.com/?q=go+language",
   116  		&URL{
   117  			Scheme:   "http",
   118  			Host:     "www.google.com",
   119  			Path:     "/",
   120  			RawQuery: "q=go+language",
   121  		},
   122  		"",
   123  	},
   124  	// query with hex escaping: NOT parsed
   125  	{
   126  		"http://www.google.com/?q=go%20language",
   127  		&URL{
   128  			Scheme:   "http",
   129  			Host:     "www.google.com",
   130  			Path:     "/",
   131  			RawQuery: "q=go%20language",
   132  		},
   133  		"",
   134  	},
   135  	// %20 outside query
   136  	{
   137  		"http://www.google.com/a%20b?q=c+d",
   138  		&URL{
   139  			Scheme:   "http",
   140  			Host:     "www.google.com",
   141  			Path:     "/a b",
   142  			RawQuery: "q=c+d",
   143  		},
   144  		"",
   145  	},
   146  	// path without leading /, so no parsing
   147  	{
   148  		"http:www.google.com/?q=go+language",
   149  		&URL{
   150  			Scheme:   "http",
   151  			Opaque:   "www.google.com/",
   152  			RawQuery: "q=go+language",
   153  		},
   154  		"http:www.google.com/?q=go+language",
   155  	},
   156  	// path without leading /, so no parsing
   157  	{
   158  		"http:%2f%2fwww.google.com/?q=go+language",
   159  		&URL{
   160  			Scheme:   "http",
   161  			Opaque:   "%2f%2fwww.google.com/",
   162  			RawQuery: "q=go+language",
   163  		},
   164  		"http:%2f%2fwww.google.com/?q=go+language",
   165  	},
   166  	// non-authority with path
   167  	{
   168  		"mailto:/webmaster@golang.org",
   169  		&URL{
   170  			Scheme: "mailto",
   171  			Path:   "/webmaster@golang.org",
   172  		},
   173  		"mailto:///webmaster@golang.org", // unfortunate compromise
   174  	},
   175  	// non-authority
   176  	{
   177  		"mailto:webmaster@golang.org",
   178  		&URL{
   179  			Scheme: "mailto",
   180  			Opaque: "webmaster@golang.org",
   181  		},
   182  		"",
   183  	},
   184  	// unescaped :// in query should not create a scheme
   185  	{
   186  		"/foo?query=http://bad",
   187  		&URL{
   188  			Path:     "/foo",
   189  			RawQuery: "query=http://bad",
   190  		},
   191  		"",
   192  	},
   193  	// leading // without scheme should create an authority
   194  	{
   195  		"//foo",
   196  		&URL{
   197  			Host: "foo",
   198  		},
   199  		"",
   200  	},
   201  	// leading // without scheme, with userinfo, path, and query
   202  	{
   203  		"//user@foo/path?a=b",
   204  		&URL{
   205  			User:     User("user"),
   206  			Host:     "foo",
   207  			Path:     "/path",
   208  			RawQuery: "a=b",
   209  		},
   210  		"",
   211  	},
   212  	// Three leading slashes isn't an authority, but doesn't return an error.
   213  	// (We can't return an error, as this code is also used via
   214  	// ServeHTTP -> ReadRequest -> Parse, which is arguably a
   215  	// different URL parsing context, but currently shares the
   216  	// same codepath)
   217  	{
   218  		"///threeslashes",
   219  		&URL{
   220  			Path: "///threeslashes",
   221  		},
   222  		"",
   223  	},
   224  	{
   225  		"http://user:password@google.com",
   226  		&URL{
   227  			Scheme: "http",
   228  			User:   UserPassword("user", "password"),
   229  			Host:   "google.com",
   230  		},
   231  		"http://user:password@google.com",
   232  	},
   233  	// unescaped @ in username should not confuse host
   234  	{
   235  		"http://j@ne:password@google.com",
   236  		&URL{
   237  			Scheme: "http",
   238  			User:   UserPassword("j@ne", "password"),
   239  			Host:   "google.com",
   240  		},
   241  		"http://j%40ne:password@google.com",
   242  	},
   243  	// unescaped @ in password should not confuse host
   244  	{
   245  		"http://jane:p@ssword@google.com",
   246  		&URL{
   247  			Scheme: "http",
   248  			User:   UserPassword("jane", "p@ssword"),
   249  			Host:   "google.com",
   250  		},
   251  		"http://jane:p%40ssword@google.com",
   252  	},
   253  	{
   254  		"http://j@ne:password@google.com/p@th?q=@go",
   255  		&URL{
   256  			Scheme:   "http",
   257  			User:     UserPassword("j@ne", "password"),
   258  			Host:     "google.com",
   259  			Path:     "/p@th",
   260  			RawQuery: "q=@go",
   261  		},
   262  		"http://j%40ne:password@google.com/p@th?q=@go",
   263  	},
   264  	{
   265  		"http://www.google.com/?q=go+language#foo",
   266  		&URL{
   267  			Scheme:   "http",
   268  			Host:     "www.google.com",
   269  			Path:     "/",
   270  			RawQuery: "q=go+language",
   271  			Fragment: "foo",
   272  		},
   273  		"",
   274  	},
   275  	{
   276  		"http://www.google.com/?q=go+language#foo&bar",
   277  		&URL{
   278  			Scheme:   "http",
   279  			Host:     "www.google.com",
   280  			Path:     "/",
   281  			RawQuery: "q=go+language",
   282  			Fragment: "foo&bar",
   283  		},
   284  		"http://www.google.com/?q=go+language#foo&bar",
   285  	},
   286  	{
   287  		"http://www.google.com/?q=go+language#foo%26bar",
   288  		&URL{
   289  			Scheme:      "http",
   290  			Host:        "www.google.com",
   291  			Path:        "/",
   292  			RawQuery:    "q=go+language",
   293  			Fragment:    "foo&bar",
   294  			RawFragment: "foo%26bar",
   295  		},
   296  		"http://www.google.com/?q=go+language#foo%26bar",
   297  	},
   298  	{
   299  		"file:///home/adg/rabbits",
   300  		&URL{
   301  			Scheme: "file",
   302  			Host:   "",
   303  			Path:   "/home/adg/rabbits",
   304  		},
   305  		"file:///home/adg/rabbits",
   306  	},
   307  	// "Windows" paths are no exception to the rule.
   308  	// See golang.org/issue/6027, especially comment #9.
   309  	{
   310  		"file:///C:/FooBar/Baz.txt",
   311  		&URL{
   312  			Scheme: "file",
   313  			Host:   "",
   314  			Path:   "/C:/FooBar/Baz.txt",
   315  		},
   316  		"file:///C:/FooBar/Baz.txt",
   317  	},
   318  	// case-insensitive scheme
   319  	{
   320  		"MaIlTo:webmaster@golang.org",
   321  		&URL{
   322  			Scheme: "mailto",
   323  			Opaque: "webmaster@golang.org",
   324  		},
   325  		"mailto:webmaster@golang.org",
   326  	},
   327  	// Relative path
   328  	{
   329  		"a/b/c",
   330  		&URL{
   331  			Path: "a/b/c",
   332  		},
   333  		"a/b/c",
   334  	},
   335  	// escaped '?' in username and password
   336  	{
   337  		"http://%3Fam:pa%3Fsword@google.com",
   338  		&URL{
   339  			Scheme: "http",
   340  			User:   UserPassword("?am", "pa?sword"),
   341  			Host:   "google.com",
   342  		},
   343  		"",
   344  	},
   345  	// host subcomponent; IPv4 address in RFC 3986
   346  	{
   347  		"http://192.168.0.1/",
   348  		&URL{
   349  			Scheme: "http",
   350  			Host:   "192.168.0.1",
   351  			Path:   "/",
   352  		},
   353  		"",
   354  	},
   355  	// host and port subcomponents; IPv4 address in RFC 3986
   356  	{
   357  		"http://192.168.0.1:8080/",
   358  		&URL{
   359  			Scheme: "http",
   360  			Host:   "192.168.0.1:8080",
   361  			Path:   "/",
   362  		},
   363  		"",
   364  	},
   365  	// host subcomponent; IPv6 address in RFC 3986
   366  	{
   367  		"http://[fe80::1]/",
   368  		&URL{
   369  			Scheme: "http",
   370  			Host:   "[fe80::1]",
   371  			Path:   "/",
   372  		},
   373  		"",
   374  	},
   375  	// host and port subcomponents; IPv6 address in RFC 3986
   376  	{
   377  		"http://[fe80::1]:8080/",
   378  		&URL{
   379  			Scheme: "http",
   380  			Host:   "[fe80::1]:8080",
   381  			Path:   "/",
   382  		},
   383  		"",
   384  	},
   385  	// host subcomponent; IPv6 address with zone identifier in RFC 6874
   386  	{
   387  		"http://[fe80::1%25en0]/", // alphanum zone identifier
   388  		&URL{
   389  			Scheme: "http",
   390  			Host:   "[fe80::1%en0]",
   391  			Path:   "/",
   392  		},
   393  		"",
   394  	},
   395  	// host and port subcomponents; IPv6 address with zone identifier in RFC 6874
   396  	{
   397  		"http://[fe80::1%25en0]:8080/", // alphanum zone identifier
   398  		&URL{
   399  			Scheme: "http",
   400  			Host:   "[fe80::1%en0]:8080",
   401  			Path:   "/",
   402  		},
   403  		"",
   404  	},
   405  	// host subcomponent; IPv6 address with zone identifier in RFC 6874
   406  	{
   407  		"http://[fe80::1%25%65%6e%301-._~]/", // percent-encoded+unreserved zone identifier
   408  		&URL{
   409  			Scheme: "http",
   410  			Host:   "[fe80::1%en01-._~]",
   411  			Path:   "/",
   412  		},
   413  		"http://[fe80::1%25en01-._~]/",
   414  	},
   415  	// host and port subcomponents; IPv6 address with zone identifier in RFC 6874
   416  	{
   417  		"http://[fe80::1%25%65%6e%301-._~]:8080/", // percent-encoded+unreserved zone identifier
   418  		&URL{
   419  			Scheme: "http",
   420  			Host:   "[fe80::1%en01-._~]:8080",
   421  			Path:   "/",
   422  		},
   423  		"http://[fe80::1%25en01-._~]:8080/",
   424  	},
   425  	// alternate escapings of path survive round trip
   426  	{
   427  		"http://rest.rsc.io/foo%2fbar/baz%2Fquux?alt=media",
   428  		&URL{
   429  			Scheme:   "http",
   430  			Host:     "rest.rsc.io",
   431  			Path:     "/foo/bar/baz/quux",
   432  			RawPath:  "/foo%2fbar/baz%2Fquux",
   433  			RawQuery: "alt=media",
   434  		},
   435  		"",
   436  	},
   437  	// issue 12036
   438  	{
   439  		"mysql://a,b,c/bar",
   440  		&URL{
   441  			Scheme: "mysql",
   442  			Host:   "a,b,c",
   443  			Path:   "/bar",
   444  		},
   445  		"",
   446  	},
   447  	// worst case host, still round trips
   448  	{
   449  		"scheme://!$&'()*+,;=hello!:1/path",
   450  		&URL{
   451  			Scheme: "scheme",
   452  			Host:   "!$&'()*+,;=hello!:1",
   453  			Path:   "/path",
   454  		},
   455  		"",
   456  	},
   457  	// worst case path, still round trips
   458  	{
   459  		"http://host/!$&'()*+,;=:@[hello]",
   460  		&URL{
   461  			Scheme:  "http",
   462  			Host:    "host",
   463  			Path:    "/!$&'()*+,;=:@[hello]",
   464  			RawPath: "/!$&'()*+,;=:@[hello]",
   465  		},
   466  		"",
   467  	},
   468  	// golang.org/issue/5684
   469  	{
   470  		"http://example.com/oid/[order_id]",
   471  		&URL{
   472  			Scheme:  "http",
   473  			Host:    "example.com",
   474  			Path:    "/oid/[order_id]",
   475  			RawPath: "/oid/[order_id]",
   476  		},
   477  		"",
   478  	},
   479  	// golang.org/issue/12200 (colon with empty port)
   480  	{
   481  		"http://192.168.0.2:8080/foo",
   482  		&URL{
   483  			Scheme: "http",
   484  			Host:   "192.168.0.2:8080",
   485  			Path:   "/foo",
   486  		},
   487  		"",
   488  	},
   489  	{
   490  		"http://192.168.0.2:/foo",
   491  		&URL{
   492  			Scheme: "http",
   493  			Host:   "192.168.0.2:",
   494  			Path:   "/foo",
   495  		},
   496  		"",
   497  	},
   498  	{
   499  		// Malformed IPv6 but still accepted.
   500  		"http://2b01:e34:ef40:7730:8e70:5aff:fefe:edac:8080/foo",
   501  		&URL{
   502  			Scheme: "http",
   503  			Host:   "2b01:e34:ef40:7730:8e70:5aff:fefe:edac:8080",
   504  			Path:   "/foo",
   505  		},
   506  		"",
   507  	},
   508  	{
   509  		// Malformed IPv6 but still accepted.
   510  		"http://2b01:e34:ef40:7730:8e70:5aff:fefe:edac:/foo",
   511  		&URL{
   512  			Scheme: "http",
   513  			Host:   "2b01:e34:ef40:7730:8e70:5aff:fefe:edac:",
   514  			Path:   "/foo",
   515  		},
   516  		"",
   517  	},
   518  	{
   519  		"http://[2b01:e34:ef40:7730:8e70:5aff:fefe:edac]:8080/foo",
   520  		&URL{
   521  			Scheme: "http",
   522  			Host:   "[2b01:e34:ef40:7730:8e70:5aff:fefe:edac]:8080",
   523  			Path:   "/foo",
   524  		},
   525  		"",
   526  	},
   527  	{
   528  		"http://[2b01:e34:ef40:7730:8e70:5aff:fefe:edac]:/foo",
   529  		&URL{
   530  			Scheme: "http",
   531  			Host:   "[2b01:e34:ef40:7730:8e70:5aff:fefe:edac]:",
   532  			Path:   "/foo",
   533  		},
   534  		"",
   535  	},
   536  	// golang.org/issue/7991 and golang.org/issue/12719 (non-ascii %-encoded in host)
   537  	{
   538  		"http://hello.世界.com/foo",
   539  		&URL{
   540  			Scheme: "http",
   541  			Host:   "hello.世界.com",
   542  			Path:   "/foo",
   543  		},
   544  		"http://hello.%E4%B8%96%E7%95%8C.com/foo",
   545  	},
   546  	{
   547  		"http://hello.%e4%b8%96%e7%95%8c.com/foo",
   548  		&URL{
   549  			Scheme: "http",
   550  			Host:   "hello.世界.com",
   551  			Path:   "/foo",
   552  		},
   553  		"http://hello.%E4%B8%96%E7%95%8C.com/foo",
   554  	},
   555  	{
   556  		"http://hello.%E4%B8%96%E7%95%8C.com/foo",
   557  		&URL{
   558  			Scheme: "http",
   559  			Host:   "hello.世界.com",
   560  			Path:   "/foo",
   561  		},
   562  		"",
   563  	},
   564  	// golang.org/issue/10433 (path beginning with //)
   565  	{
   566  		"http://example.com//foo",
   567  		&URL{
   568  			Scheme: "http",
   569  			Host:   "example.com",
   570  			Path:   "//foo",
   571  		},
   572  		"",
   573  	},
   574  	// test that we can reparse the host names we accept.
   575  	{
   576  		"myscheme://authority<\"hi\">/foo",
   577  		&URL{
   578  			Scheme: "myscheme",
   579  			Host:   "authority<\"hi\">",
   580  			Path:   "/foo",
   581  		},
   582  		"",
   583  	},
   584  	// spaces in hosts are disallowed but escaped spaces in IPv6 scope IDs are grudgingly OK.
   585  	// This happens on Windows.
   586  	// golang.org/issue/14002
   587  	{
   588  		"tcp://[2020::2020:20:2020:2020%25Windows%20Loves%20Spaces]:2020",
   589  		&URL{
   590  			Scheme: "tcp",
   591  			Host:   "[2020::2020:20:2020:2020%Windows Loves Spaces]:2020",
   592  		},
   593  		"",
   594  	},
   595  	// test we can roundtrip magnet url
   596  	// fix issue https://golang.org/issue/20054
   597  	{
   598  		"magnet:?xt=urn:btih:c12fe1c06bba254a9dc9f519b335aa7c1367a88a&dn",
   599  		&URL{
   600  			Scheme:   "magnet",
   601  			Host:     "",
   602  			Path:     "",
   603  			RawQuery: "xt=urn:btih:c12fe1c06bba254a9dc9f519b335aa7c1367a88a&dn",
   604  		},
   605  		"magnet:?xt=urn:btih:c12fe1c06bba254a9dc9f519b335aa7c1367a88a&dn",
   606  	},
   607  	{
   608  		"mailto:?subject=hi",
   609  		&URL{
   610  			Scheme:   "mailto",
   611  			Host:     "",
   612  			Path:     "",
   613  			RawQuery: "subject=hi",
   614  		},
   615  		"mailto:?subject=hi",
   616  	},
   617  }
   618  
   619  // more useful string for debugging than fmt's struct printer
   620  func ufmt(u *URL) string {
   621  	var user, pass any
   622  	if u.User != nil {
   623  		user = u.User.Username()
   624  		if p, ok := u.User.Password(); ok {
   625  			pass = p
   626  		}
   627  	}
   628  	return fmt.Sprintf("opaque=%q, scheme=%q, user=%#v, pass=%#v, host=%q, path=%q, rawpath=%q, rawq=%q, frag=%q, rawfrag=%q, forcequery=%v",
   629  		u.Opaque, u.Scheme, user, pass, u.Host, u.Path, u.RawPath, u.RawQuery, u.Fragment, u.RawFragment, u.ForceQuery)
   630  }
   631  
   632  func BenchmarkString(b *testing.B) {
   633  	b.StopTimer()
   634  	b.ReportAllocs()
   635  	for _, tt := range urltests {
   636  		u, err := Parse(tt.in)
   637  		if err != nil {
   638  			b.Errorf("Parse(%q) returned error %s", tt.in, err)
   639  			continue
   640  		}
   641  		if tt.roundtrip == "" {
   642  			continue
   643  		}
   644  		b.StartTimer()
   645  		var g string
   646  		for i := 0; i < b.N; i++ {
   647  			g = u.String()
   648  		}
   649  		b.StopTimer()
   650  		if w := tt.roundtrip; b.N > 0 && g != w {
   651  			b.Errorf("Parse(%q).String() == %q, want %q", tt.in, g, w)
   652  		}
   653  	}
   654  }
   655  
   656  func TestParse(t *testing.T) {
   657  	for _, tt := range urltests {
   658  		u, err := Parse(tt.in)
   659  		if err != nil {
   660  			t.Errorf("Parse(%q) returned error %v", tt.in, err)
   661  			continue
   662  		}
   663  		if !reflect.DeepEqual(u, tt.out) {
   664  			t.Errorf("Parse(%q):\n\tgot  %v\n\twant %v\n", tt.in, ufmt(u), ufmt(tt.out))
   665  		}
   666  	}
   667  }
   668  
   669  const pathThatLooksSchemeRelative = "//not.a.user@not.a.host/just/a/path"
   670  
   671  var parseRequestURLTests = []struct {
   672  	url           string
   673  	expectedValid bool
   674  }{
   675  	{"http://foo.com", true},
   676  	{"http://foo.com/", true},
   677  	{"http://foo.com/path", true},
   678  	{"/", true},
   679  	{pathThatLooksSchemeRelative, true},
   680  	{"//not.a.user@%66%6f%6f.com/just/a/path/also", true},
   681  	{"*", true},
   682  	{"http://192.168.0.1/", true},
   683  	{"http://192.168.0.1:8080/", true},
   684  	{"http://[fe80::1]/", true},
   685  	{"http://[fe80::1]:8080/", true},
   686  
   687  	// Tests exercising RFC 6874 compliance:
   688  	{"http://[fe80::1%25en0]/", true},                 // with alphanum zone identifier
   689  	{"http://[fe80::1%25en0]:8080/", true},            // with alphanum zone identifier
   690  	{"http://[fe80::1%25%65%6e%301-._~]/", true},      // with percent-encoded+unreserved zone identifier
   691  	{"http://[fe80::1%25%65%6e%301-._~]:8080/", true}, // with percent-encoded+unreserved zone identifier
   692  
   693  	{"foo.html", false},
   694  	{"../dir/", false},
   695  	{" http://foo.com", false},
   696  	{"http://192.168.0.%31/", false},
   697  	{"http://192.168.0.%31:8080/", false},
   698  	{"http://[fe80::%31]/", false},
   699  	{"http://[fe80::%31]:8080/", false},
   700  	{"http://[fe80::%31%25en0]/", false},
   701  	{"http://[fe80::%31%25en0]:8080/", false},
   702  
   703  	// These two cases are valid as textual representations as
   704  	// described in RFC 4007, but are not valid as address
   705  	// literals with IPv6 zone identifiers in URIs as described in
   706  	// RFC 6874.
   707  	{"http://[fe80::1%en0]/", false},
   708  	{"http://[fe80::1%en0]:8080/", false},
   709  }
   710  
   711  func TestParseRequestURI(t *testing.T) {
   712  	for _, test := range parseRequestURLTests {
   713  		_, err := ParseRequestURI(test.url)
   714  		if test.expectedValid && err != nil {
   715  			t.Errorf("ParseRequestURI(%q) gave err %v; want no error", test.url, err)
   716  		} else if !test.expectedValid && err == nil {
   717  			t.Errorf("ParseRequestURI(%q) gave nil error; want some error", test.url)
   718  		}
   719  	}
   720  
   721  	url, err := ParseRequestURI(pathThatLooksSchemeRelative)
   722  	if err != nil {
   723  		t.Fatalf("Unexpected error %v", err)
   724  	}
   725  	if url.Path != pathThatLooksSchemeRelative {
   726  		t.Errorf("ParseRequestURI path:\ngot  %q\nwant %q", url.Path, pathThatLooksSchemeRelative)
   727  	}
   728  }
   729  
   730  var stringURLTests = []struct {
   731  	url  URL
   732  	want string
   733  }{
   734  	// No leading slash on path should prepend slash on String() call
   735  	{
   736  		url: URL{
   737  			Scheme: "http",
   738  			Host:   "www.google.com",
   739  			Path:   "search",
   740  		},
   741  		want: "http://www.google.com/search",
   742  	},
   743  	// Relative path with first element containing ":" should be prepended with "./", golang.org/issue/17184
   744  	{
   745  		url: URL{
   746  			Path: "this:that",
   747  		},
   748  		want: "./this:that",
   749  	},
   750  	// Relative path with second element containing ":" should not be prepended with "./"
   751  	{
   752  		url: URL{
   753  			Path: "here/this:that",
   754  		},
   755  		want: "here/this:that",
   756  	},
   757  	// Non-relative path with first element containing ":" should not be prepended with "./"
   758  	{
   759  		url: URL{
   760  			Scheme: "http",
   761  			Host:   "www.google.com",
   762  			Path:   "this:that",
   763  		},
   764  		want: "http://www.google.com/this:that",
   765  	},
   766  }
   767  
   768  func TestURLString(t *testing.T) {
   769  	for _, tt := range urltests {
   770  		u, err := Parse(tt.in)
   771  		if err != nil {
   772  			t.Errorf("Parse(%q) returned error %s", tt.in, err)
   773  			continue
   774  		}
   775  		expected := tt.in
   776  		if tt.roundtrip != "" {
   777  			expected = tt.roundtrip
   778  		}
   779  		s := u.String()
   780  		if s != expected {
   781  			t.Errorf("Parse(%q).String() == %q (expected %q)", tt.in, s, expected)
   782  		}
   783  	}
   784  
   785  	for _, tt := range stringURLTests {
   786  		if got := tt.url.String(); got != tt.want {
   787  			t.Errorf("%+v.String() = %q; want %q", tt.url, got, tt.want)
   788  		}
   789  	}
   790  }
   791  
   792  func TestURLRedacted(t *testing.T) {
   793  	cases := []struct {
   794  		name string
   795  		url  *URL
   796  		want string
   797  	}{
   798  		{
   799  			name: "non-blank Password",
   800  			url: &URL{
   801  				Scheme: "http",
   802  				Host:   "host.tld",
   803  				Path:   "this:that",
   804  				User:   UserPassword("user", "password"),
   805  			},
   806  			want: "http://user:xxxxx@host.tld/this:that",
   807  		},
   808  		{
   809  			name: "blank Password",
   810  			url: &URL{
   811  				Scheme: "http",
   812  				Host:   "host.tld",
   813  				Path:   "this:that",
   814  				User:   User("user"),
   815  			},
   816  			want: "http://user@host.tld/this:that",
   817  		},
   818  		{
   819  			name: "nil User",
   820  			url: &URL{
   821  				Scheme: "http",
   822  				Host:   "host.tld",
   823  				Path:   "this:that",
   824  				User:   UserPassword("", "password"),
   825  			},
   826  			want: "http://:xxxxx@host.tld/this:that",
   827  		},
   828  		{
   829  			name: "blank Username, blank Password",
   830  			url: &URL{
   831  				Scheme: "http",
   832  				Host:   "host.tld",
   833  				Path:   "this:that",
   834  			},
   835  			want: "http://host.tld/this:that",
   836  		},
   837  		{
   838  			name: "empty URL",
   839  			url:  &URL{},
   840  			want: "",
   841  		},
   842  		{
   843  			name: "nil URL",
   844  			url:  nil,
   845  			want: "",
   846  		},
   847  	}
   848  
   849  	for _, tt := range cases {
   850  		t := t
   851  		t.Run(tt.name, func(t *testing.T) {
   852  			if g, w := tt.url.Redacted(), tt.want; g != w {
   853  				t.Fatalf("got: %q\nwant: %q", g, w)
   854  			}
   855  		})
   856  	}
   857  }
   858  
   859  type EscapeTest struct {
   860  	in  string
   861  	out string
   862  	err error
   863  }
   864  
   865  var unescapeTests = []EscapeTest{
   866  	{
   867  		"",
   868  		"",
   869  		nil,
   870  	},
   871  	{
   872  		"abc",
   873  		"abc",
   874  		nil,
   875  	},
   876  	{
   877  		"1%41",
   878  		"1A",
   879  		nil,
   880  	},
   881  	{
   882  		"1%41%42%43",
   883  		"1ABC",
   884  		nil,
   885  	},
   886  	{
   887  		"%4a",
   888  		"J",
   889  		nil,
   890  	},
   891  	{
   892  		"%6F",
   893  		"o",
   894  		nil,
   895  	},
   896  	{
   897  		"%", // not enough characters after %
   898  		"",
   899  		EscapeError("%"),
   900  	},
   901  	{
   902  		"%a", // not enough characters after %
   903  		"",
   904  		EscapeError("%a"),
   905  	},
   906  	{
   907  		"%1", // not enough characters after %
   908  		"",
   909  		EscapeError("%1"),
   910  	},
   911  	{
   912  		"123%45%6", // not enough characters after %
   913  		"",
   914  		EscapeError("%6"),
   915  	},
   916  	{
   917  		"%zzzzz", // invalid hex digits
   918  		"",
   919  		EscapeError("%zz"),
   920  	},
   921  	{
   922  		"a+b",
   923  		"a b",
   924  		nil,
   925  	},
   926  	{
   927  		"a%20b",
   928  		"a b",
   929  		nil,
   930  	},
   931  }
   932  
   933  func TestUnescape(t *testing.T) {
   934  	for _, tt := range unescapeTests {
   935  		actual, err := QueryUnescape(tt.in)
   936  		if actual != tt.out || (err != nil) != (tt.err != nil) {
   937  			t.Errorf("QueryUnescape(%q) = %q, %s; want %q, %s", tt.in, actual, err, tt.out, tt.err)
   938  		}
   939  
   940  		in := tt.in
   941  		out := tt.out
   942  		if strings.Contains(tt.in, "+") {
   943  			in = strings.ReplaceAll(tt.in, "+", "%20")
   944  			actual, err := PathUnescape(in)
   945  			if actual != tt.out || (err != nil) != (tt.err != nil) {
   946  				t.Errorf("PathUnescape(%q) = %q, %s; want %q, %s", in, actual, err, tt.out, tt.err)
   947  			}
   948  			if tt.err == nil {
   949  				s, err := QueryUnescape(strings.ReplaceAll(tt.in, "+", "XXX"))
   950  				if err != nil {
   951  					continue
   952  				}
   953  				in = tt.in
   954  				out = strings.ReplaceAll(s, "XXX", "+")
   955  			}
   956  		}
   957  
   958  		actual, err = PathUnescape(in)
   959  		if actual != out || (err != nil) != (tt.err != nil) {
   960  			t.Errorf("PathUnescape(%q) = %q, %s; want %q, %s", in, actual, err, out, tt.err)
   961  		}
   962  	}
   963  }
   964  
   965  var queryEscapeTests = []EscapeTest{
   966  	{
   967  		"",
   968  		"",
   969  		nil,
   970  	},
   971  	{
   972  		"abc",
   973  		"abc",
   974  		nil,
   975  	},
   976  	{
   977  		"one two",
   978  		"one+two",
   979  		nil,
   980  	},
   981  	{
   982  		"10%",
   983  		"10%25",
   984  		nil,
   985  	},
   986  	{
   987  		" ?&=#+%!<>#\"{}|\\^[]`☺\t:/@$'()*,;",
   988  		"+%3F%26%3D%23%2B%25%21%3C%3E%23%22%7B%7D%7C%5C%5E%5B%5D%60%E2%98%BA%09%3A%2F%40%24%27%28%29%2A%2C%3B",
   989  		nil,
   990  	},
   991  }
   992  
   993  func TestQueryEscape(t *testing.T) {
   994  	for _, tt := range queryEscapeTests {
   995  		actual := QueryEscape(tt.in)
   996  		if tt.out != actual {
   997  			t.Errorf("QueryEscape(%q) = %q, want %q", tt.in, actual, tt.out)
   998  		}
   999  
  1000  		// for bonus points, verify that escape:unescape is an identity.
  1001  		roundtrip, err := QueryUnescape(actual)
  1002  		if roundtrip != tt.in || err != nil {
  1003  			t.Errorf("QueryUnescape(%q) = %q, %s; want %q, %s", actual, roundtrip, err, tt.in, "[no error]")
  1004  		}
  1005  	}
  1006  }
  1007  
  1008  var pathEscapeTests = []EscapeTest{
  1009  	{
  1010  		"",
  1011  		"",
  1012  		nil,
  1013  	},
  1014  	{
  1015  		"abc",
  1016  		"abc",
  1017  		nil,
  1018  	},
  1019  	{
  1020  		"abc+def",
  1021  		"abc+def",
  1022  		nil,
  1023  	},
  1024  	{
  1025  		"a/b",
  1026  		"a%2Fb",
  1027  		nil,
  1028  	},
  1029  	{
  1030  		"one two",
  1031  		"one%20two",
  1032  		nil,
  1033  	},
  1034  	{
  1035  		"10%",
  1036  		"10%25",
  1037  		nil,
  1038  	},
  1039  	{
  1040  		" ?&=#+%!<>#\"{}|\\^[]`☺\t:/@$'()*,;",
  1041  		"%20%3F&=%23+%25%21%3C%3E%23%22%7B%7D%7C%5C%5E%5B%5D%60%E2%98%BA%09:%2F@$%27%28%29%2A%2C%3B",
  1042  		nil,
  1043  	},
  1044  }
  1045  
  1046  func TestPathEscape(t *testing.T) {
  1047  	for _, tt := range pathEscapeTests {
  1048  		actual := PathEscape(tt.in)
  1049  		if tt.out != actual {
  1050  			t.Errorf("PathEscape(%q) = %q, want %q", tt.in, actual, tt.out)
  1051  		}
  1052  
  1053  		// for bonus points, verify that escape:unescape is an identity.
  1054  		roundtrip, err := PathUnescape(actual)
  1055  		if roundtrip != tt.in || err != nil {
  1056  			t.Errorf("PathUnescape(%q) = %q, %s; want %q, %s", actual, roundtrip, err, tt.in, "[no error]")
  1057  		}
  1058  	}
  1059  }
  1060  
  1061  //var userinfoTests = []UserinfoTest{
  1062  //	{"user", "password", "user:password"},
  1063  //	{"foo:bar", "~!@#$%^&*()_+{}|[]\\-=`:;'\"<>?,./",
  1064  //		"foo%3Abar:~!%40%23$%25%5E&*()_+%7B%7D%7C%5B%5D%5C-=%60%3A;'%22%3C%3E?,.%2F"},
  1065  //}
  1066  
  1067  type EncodeQueryTest struct {
  1068  	m        Values
  1069  	expected string
  1070  }
  1071  
  1072  var encodeQueryTests = []EncodeQueryTest{
  1073  	{nil, ""},
  1074  	{Values{"q": {"puppies"}, "oe": {"utf8"}}, "oe=utf8&q=puppies"},
  1075  	{Values{"q": {"dogs", "&", "7"}}, "q=dogs&q=%26&q=7"},
  1076  	{Values{
  1077  		"a": {"a1", "a2", "a3"},
  1078  		"b": {"b1", "b2", "b3"},
  1079  		"c": {"c1", "c2", "c3"},
  1080  	}, "a=a1&a=a2&a=a3&b=b1&b=b2&b=b3&c=c1&c=c2&c=c3"},
  1081  }
  1082  
  1083  func TestEncodeQuery(t *testing.T) {
  1084  	for _, tt := range encodeQueryTests {
  1085  		if q := tt.m.Encode(); q != tt.expected {
  1086  			t.Errorf(`EncodeQuery(%+v) = %q, want %q`, tt.m, q, tt.expected)
  1087  		}
  1088  	}
  1089  }
  1090  
  1091  var resolvePathTests = []struct {
  1092  	base, ref, expected string
  1093  }{
  1094  	{"a/b", ".", "/a/"},
  1095  	{"a/b", "c", "/a/c"},
  1096  	{"a/b", "..", "/"},
  1097  	{"a/", "..", "/"},
  1098  	{"a/", "../..", "/"},
  1099  	{"a/b/c", "..", "/a/"},
  1100  	{"a/b/c", "../d", "/a/d"},
  1101  	{"a/b/c", ".././d", "/a/d"},
  1102  	{"a/b", "./..", "/"},
  1103  	{"a/./b", ".", "/a/"},
  1104  	{"a/../", ".", "/"},
  1105  	{"a/.././b", "c", "/c"},
  1106  }
  1107  
  1108  func TestResolvePath(t *testing.T) {
  1109  	for _, test := range resolvePathTests {
  1110  		got := resolvePath(test.base, test.ref)
  1111  		if got != test.expected {
  1112  			t.Errorf("For %q + %q got %q; expected %q", test.base, test.ref, got, test.expected)
  1113  		}
  1114  	}
  1115  }
  1116  
  1117  func BenchmarkResolvePath(b *testing.B) {
  1118  	b.ResetTimer()
  1119  	b.ReportAllocs()
  1120  	for i := 0; i < b.N; i++ {
  1121  		resolvePath("a/b/c", ".././d")
  1122  	}
  1123  }
  1124  
  1125  var resolveReferenceTests = []struct {
  1126  	base, rel, expected string
  1127  }{
  1128  	// Absolute URL references
  1129  	{"http://foo.com?a=b", "https://bar.com/", "https://bar.com/"},
  1130  	{"http://foo.com/", "https://bar.com/?a=b", "https://bar.com/?a=b"},
  1131  	{"http://foo.com/", "https://bar.com/?", "https://bar.com/?"},
  1132  	{"http://foo.com/bar", "mailto:foo@example.com", "mailto:foo@example.com"},
  1133  
  1134  	// Path-absolute references
  1135  	{"http://foo.com/bar", "/baz", "http://foo.com/baz"},
  1136  	{"http://foo.com/bar?a=b#f", "/baz", "http://foo.com/baz"},
  1137  	{"http://foo.com/bar?a=b", "/baz?", "http://foo.com/baz?"},
  1138  	{"http://foo.com/bar?a=b", "/baz?c=d", "http://foo.com/baz?c=d"},
  1139  
  1140  	// Multiple slashes
  1141  	{"http://foo.com/bar", "http://foo.com//baz", "http://foo.com//baz"},
  1142  	{"http://foo.com/bar", "http://foo.com///baz/quux", "http://foo.com///baz/quux"},
  1143  
  1144  	// Scheme-relative
  1145  	{"https://foo.com/bar?a=b", "//bar.com/quux", "https://bar.com/quux"},
  1146  
  1147  	// Path-relative references:
  1148  
  1149  	// ... current directory
  1150  	{"http://foo.com", ".", "http://foo.com/"},
  1151  	{"http://foo.com/bar", ".", "http://foo.com/"},
  1152  	{"http://foo.com/bar/", ".", "http://foo.com/bar/"},
  1153  
  1154  	// ... going down
  1155  	{"http://foo.com", "bar", "http://foo.com/bar"},
  1156  	{"http://foo.com/", "bar", "http://foo.com/bar"},
  1157  	{"http://foo.com/bar/baz", "quux", "http://foo.com/bar/quux"},
  1158  
  1159  	// ... going up
  1160  	{"http://foo.com/bar/baz", "../quux", "http://foo.com/quux"},
  1161  	{"http://foo.com/bar/baz", "../../../../../quux", "http://foo.com/quux"},
  1162  	{"http://foo.com/bar", "..", "http://foo.com/"},
  1163  	{"http://foo.com/bar/baz", "./..", "http://foo.com/"},
  1164  	// ".." in the middle (issue 3560)
  1165  	{"http://foo.com/bar/baz", "quux/dotdot/../tail", "http://foo.com/bar/quux/tail"},
  1166  	{"http://foo.com/bar/baz", "quux/./dotdot/../tail", "http://foo.com/bar/quux/tail"},
  1167  	{"http://foo.com/bar/baz", "quux/./dotdot/.././tail", "http://foo.com/bar/quux/tail"},
  1168  	{"http://foo.com/bar/baz", "quux/./dotdot/./../tail", "http://foo.com/bar/quux/tail"},
  1169  	{"http://foo.com/bar/baz", "quux/./dotdot/dotdot/././../../tail", "http://foo.com/bar/quux/tail"},
  1170  	{"http://foo.com/bar/baz", "quux/./dotdot/dotdot/./.././../tail", "http://foo.com/bar/quux/tail"},
  1171  	{"http://foo.com/bar/baz", "quux/./dotdot/dotdot/dotdot/./../../.././././tail", "http://foo.com/bar/quux/tail"},
  1172  	{"http://foo.com/bar/baz", "quux/./dotdot/../dotdot/../dot/./tail/..", "http://foo.com/bar/quux/dot/"},
  1173  
  1174  	// Remove any dot-segments prior to forming the target URI.
  1175  	// https://datatracker.ietf.org/doc/html/rfc3986#section-5.2.4
  1176  	{"http://foo.com/dot/./dotdot/../foo/bar", "../baz", "http://foo.com/dot/baz"},
  1177  
  1178  	// Triple dot isn't special
  1179  	{"http://foo.com/bar", "...", "http://foo.com/..."},
  1180  
  1181  	// Fragment
  1182  	{"http://foo.com/bar", ".#frag", "http://foo.com/#frag"},
  1183  	{"http://example.org/", "#!$&%27()*+,;=", "http://example.org/#!$&%27()*+,;="},
  1184  
  1185  	// Paths with escaping (issue 16947).
  1186  	{"http://foo.com/foo%2fbar/", "../baz", "http://foo.com/baz"},
  1187  	{"http://foo.com/1/2%2f/3%2f4/5", "../../a/b/c", "http://foo.com/1/a/b/c"},
  1188  	{"http://foo.com/1/2/3", "./a%2f../../b/..%2fc", "http://foo.com/1/2/b/..%2fc"},
  1189  	{"http://foo.com/1/2%2f/3%2f4/5", "./a%2f../b/../c", "http://foo.com/1/2%2f/3%2f4/a%2f../c"},
  1190  	{"http://foo.com/foo%20bar/", "../baz", "http://foo.com/baz"},
  1191  	{"http://foo.com/foo", "../bar%2fbaz", "http://foo.com/bar%2fbaz"},
  1192  	{"http://foo.com/foo%2dbar/", "./baz-quux", "http://foo.com/foo%2dbar/baz-quux"},
  1193  
  1194  	// RFC 3986: Normal Examples
  1195  	// https://datatracker.ietf.org/doc/html/rfc3986#section-5.4.1
  1196  	{"http://a/b/c/d;p?q", "g:h", "g:h"},
  1197  	{"http://a/b/c/d;p?q", "g", "http://a/b/c/g"},
  1198  	{"http://a/b/c/d;p?q", "./g", "http://a/b/c/g"},
  1199  	{"http://a/b/c/d;p?q", "g/", "http://a/b/c/g/"},
  1200  	{"http://a/b/c/d;p?q", "/g", "http://a/g"},
  1201  	{"http://a/b/c/d;p?q", "//g", "http://g"},
  1202  	{"http://a/b/c/d;p?q", "?y", "http://a/b/c/d;p?y"},
  1203  	{"http://a/b/c/d;p?q", "g?y", "http://a/b/c/g?y"},
  1204  	{"http://a/b/c/d;p?q", "#s", "http://a/b/c/d;p?q#s"},
  1205  	{"http://a/b/c/d;p?q", "g#s", "http://a/b/c/g#s"},
  1206  	{"http://a/b/c/d;p?q", "g?y#s", "http://a/b/c/g?y#s"},
  1207  	{"http://a/b/c/d;p?q", ";x", "http://a/b/c/;x"},
  1208  	{"http://a/b/c/d;p?q", "g;x", "http://a/b/c/g;x"},
  1209  	{"http://a/b/c/d;p?q", "g;x?y#s", "http://a/b/c/g;x?y#s"},
  1210  	{"http://a/b/c/d;p?q", "", "http://a/b/c/d;p?q"},
  1211  	{"http://a/b/c/d;p?q", ".", "http://a/b/c/"},
  1212  	{"http://a/b/c/d;p?q", "./", "http://a/b/c/"},
  1213  	{"http://a/b/c/d;p?q", "..", "http://a/b/"},
  1214  	{"http://a/b/c/d;p?q", "../", "http://a/b/"},
  1215  	{"http://a/b/c/d;p?q", "../g", "http://a/b/g"},
  1216  	{"http://a/b/c/d;p?q", "../..", "http://a/"},
  1217  	{"http://a/b/c/d;p?q", "../../", "http://a/"},
  1218  	{"http://a/b/c/d;p?q", "../../g", "http://a/g"},
  1219  
  1220  	// RFC 3986: Abnormal Examples
  1221  	// https://datatracker.ietf.org/doc/html/rfc3986#section-5.4.2
  1222  	{"http://a/b/c/d;p?q", "../../../g", "http://a/g"},
  1223  	{"http://a/b/c/d;p?q", "../../../../g", "http://a/g"},
  1224  	{"http://a/b/c/d;p?q", "/./g", "http://a/g"},
  1225  	{"http://a/b/c/d;p?q", "/../g", "http://a/g"},
  1226  	{"http://a/b/c/d;p?q", "g.", "http://a/b/c/g."},
  1227  	{"http://a/b/c/d;p?q", ".g", "http://a/b/c/.g"},
  1228  	{"http://a/b/c/d;p?q", "g..", "http://a/b/c/g.."},
  1229  	{"http://a/b/c/d;p?q", "..g", "http://a/b/c/..g"},
  1230  	{"http://a/b/c/d;p?q", "./../g", "http://a/b/g"},
  1231  	{"http://a/b/c/d;p?q", "./g/.", "http://a/b/c/g/"},
  1232  	{"http://a/b/c/d;p?q", "g/./h", "http://a/b/c/g/h"},
  1233  	{"http://a/b/c/d;p?q", "g/../h", "http://a/b/c/h"},
  1234  	{"http://a/b/c/d;p?q", "g;x=1/./y", "http://a/b/c/g;x=1/y"},
  1235  	{"http://a/b/c/d;p?q", "g;x=1/../y", "http://a/b/c/y"},
  1236  	{"http://a/b/c/d;p?q", "g?y/./x", "http://a/b/c/g?y/./x"},
  1237  	{"http://a/b/c/d;p?q", "g?y/../x", "http://a/b/c/g?y/../x"},
  1238  	{"http://a/b/c/d;p?q", "g#s/./x", "http://a/b/c/g#s/./x"},
  1239  	{"http://a/b/c/d;p?q", "g#s/../x", "http://a/b/c/g#s/../x"},
  1240  
  1241  	// Extras.
  1242  	{"https://a/b/c/d;p?q", "//g?q", "https://g?q"},
  1243  	{"https://a/b/c/d;p?q", "//g#s", "https://g#s"},
  1244  	{"https://a/b/c/d;p?q", "//g/d/e/f?y#s", "https://g/d/e/f?y#s"},
  1245  	{"https://a/b/c/d;p#s", "?y", "https://a/b/c/d;p?y"},
  1246  	{"https://a/b/c/d;p?q#s", "?y", "https://a/b/c/d;p?y"},
  1247  
  1248  	// Empty path and query but with ForceQuery (issue 46033).
  1249  	{"https://a/b/c/d;p?q#s", "?", "https://a/b/c/d;p?"},
  1250  }
  1251  
  1252  func TestResolveReference(t *testing.T) {
  1253  	mustParse := func(url string) *URL {
  1254  		u, err := Parse(url)
  1255  		if err != nil {
  1256  			t.Fatalf("Parse(%q) got err %v", url, err)
  1257  		}
  1258  		return u
  1259  	}
  1260  	opaque := &URL{Scheme: "scheme", Opaque: "opaque"}
  1261  	for _, test := range resolveReferenceTests {
  1262  		base := mustParse(test.base)
  1263  		rel := mustParse(test.rel)
  1264  		url := base.ResolveReference(rel)
  1265  		if got := url.String(); got != test.expected {
  1266  			t.Errorf("URL(%q).ResolveReference(%q)\ngot  %q\nwant %q", test.base, test.rel, got, test.expected)
  1267  		}
  1268  		// Ensure that new instances are returned.
  1269  		if base == url {
  1270  			t.Errorf("Expected URL.ResolveReference to return new URL instance.")
  1271  		}
  1272  		// Test the convenience wrapper too.
  1273  		url, err := base.Parse(test.rel)
  1274  		if err != nil {
  1275  			t.Errorf("URL(%q).Parse(%q) failed: %v", test.base, test.rel, err)
  1276  		} else if got := url.String(); got != test.expected {
  1277  			t.Errorf("URL(%q).Parse(%q)\ngot  %q\nwant %q", test.base, test.rel, got, test.expected)
  1278  		} else if base == url {
  1279  			// Ensure that new instances are returned for the wrapper too.
  1280  			t.Errorf("Expected URL.Parse to return new URL instance.")
  1281  		}
  1282  		// Ensure Opaque resets the URL.
  1283  		url = base.ResolveReference(opaque)
  1284  		if *url != *opaque {
  1285  			t.Errorf("ResolveReference failed to resolve opaque URL:\ngot  %#v\nwant %#v", url, opaque)
  1286  		}
  1287  		// Test the convenience wrapper with an opaque URL too.
  1288  		url, err = base.Parse("scheme:opaque")
  1289  		if err != nil {
  1290  			t.Errorf(`URL(%q).Parse("scheme:opaque") failed: %v`, test.base, err)
  1291  		} else if *url != *opaque {
  1292  			t.Errorf("Parse failed to resolve opaque URL:\ngot  %#v\nwant %#v", opaque, url)
  1293  		} else if base == url {
  1294  			// Ensure that new instances are returned, again.
  1295  			t.Errorf("Expected URL.Parse to return new URL instance.")
  1296  		}
  1297  	}
  1298  }
  1299  
  1300  func TestQueryValues(t *testing.T) {
  1301  	u, _ := Parse("http://x.com?foo=bar&bar=1&bar=2&baz")
  1302  	v := u.Query()
  1303  	if len(v) != 3 {
  1304  		t.Errorf("got %d keys in Query values, want 3", len(v))
  1305  	}
  1306  	if g, e := v.Get("foo"), "bar"; g != e {
  1307  		t.Errorf("Get(foo) = %q, want %q", g, e)
  1308  	}
  1309  	// Case sensitive:
  1310  	if g, e := v.Get("Foo"), ""; g != e {
  1311  		t.Errorf("Get(Foo) = %q, want %q", g, e)
  1312  	}
  1313  	if g, e := v.Get("bar"), "1"; g != e {
  1314  		t.Errorf("Get(bar) = %q, want %q", g, e)
  1315  	}
  1316  	if g, e := v.Get("baz"), ""; g != e {
  1317  		t.Errorf("Get(baz) = %q, want %q", g, e)
  1318  	}
  1319  	if h, e := v.Has("foo"), true; h != e {
  1320  		t.Errorf("Has(foo) = %t, want %t", h, e)
  1321  	}
  1322  	if h, e := v.Has("bar"), true; h != e {
  1323  		t.Errorf("Has(bar) = %t, want %t", h, e)
  1324  	}
  1325  	if h, e := v.Has("baz"), true; h != e {
  1326  		t.Errorf("Has(baz) = %t, want %t", h, e)
  1327  	}
  1328  	if h, e := v.Has("noexist"), false; h != e {
  1329  		t.Errorf("Has(noexist) = %t, want %t", h, e)
  1330  	}
  1331  	v.Del("bar")
  1332  	if g, e := v.Get("bar"), ""; g != e {
  1333  		t.Errorf("second Get(bar) = %q, want %q", g, e)
  1334  	}
  1335  }
  1336  
  1337  type parseTest struct {
  1338  	query string
  1339  	out   Values
  1340  	ok    bool
  1341  }
  1342  
  1343  var parseTests = []parseTest{
  1344  	{
  1345  		query: "a=1",
  1346  		out:   Values{"a": []string{"1"}},
  1347  		ok:    true,
  1348  	},
  1349  	{
  1350  		query: "a=1&b=2",
  1351  		out:   Values{"a": []string{"1"}, "b": []string{"2"}},
  1352  		ok:    true,
  1353  	},
  1354  	{
  1355  		query: "a=1&a=2&a=banana",
  1356  		out:   Values{"a": []string{"1", "2", "banana"}},
  1357  		ok:    true,
  1358  	},
  1359  	{
  1360  		query: "ascii=%3Ckey%3A+0x90%3E",
  1361  		out:   Values{"ascii": []string{"<key: 0x90>"}},
  1362  		ok:    true,
  1363  	}, {
  1364  		query: "a=1;b=2",
  1365  		out:   Values{},
  1366  		ok:    false,
  1367  	}, {
  1368  		query: "a;b=1",
  1369  		out:   Values{},
  1370  		ok:    false,
  1371  	}, {
  1372  		query: "a=%3B", // hex encoding for semicolon
  1373  		out:   Values{"a": []string{";"}},
  1374  		ok:    true,
  1375  	},
  1376  	{
  1377  		query: "a%3Bb=1",
  1378  		out:   Values{"a;b": []string{"1"}},
  1379  		ok:    true,
  1380  	},
  1381  	{
  1382  		query: "a=1&a=2;a=banana",
  1383  		out:   Values{"a": []string{"1"}},
  1384  		ok:    false,
  1385  	},
  1386  	{
  1387  		query: "a;b&c=1",
  1388  		out:   Values{"c": []string{"1"}},
  1389  		ok:    false,
  1390  	},
  1391  	{
  1392  		query: "a=1&b=2;a=3&c=4",
  1393  		out:   Values{"a": []string{"1"}, "c": []string{"4"}},
  1394  		ok:    false,
  1395  	},
  1396  	{
  1397  		query: "a=1&b=2;c=3",
  1398  		out:   Values{"a": []string{"1"}},
  1399  		ok:    false,
  1400  	},
  1401  	{
  1402  		query: ";",
  1403  		out:   Values{},
  1404  		ok:    false,
  1405  	},
  1406  	{
  1407  		query: "a=1;",
  1408  		out:   Values{},
  1409  		ok:    false,
  1410  	},
  1411  	{
  1412  		query: "a=1&;",
  1413  		out:   Values{"a": []string{"1"}},
  1414  		ok:    false,
  1415  	},
  1416  	{
  1417  		query: ";a=1&b=2",
  1418  		out:   Values{"b": []string{"2"}},
  1419  		ok:    false,
  1420  	},
  1421  	{
  1422  		query: "a=1&b=2;",
  1423  		out:   Values{"a": []string{"1"}},
  1424  		ok:    false,
  1425  	},
  1426  }
  1427  
  1428  func TestParseQuery(t *testing.T) {
  1429  	for _, test := range parseTests {
  1430  		t.Run(test.query, func(t *testing.T) {
  1431  			form, err := ParseQuery(test.query)
  1432  			if test.ok != (err == nil) {
  1433  				want := "<error>"
  1434  				if test.ok {
  1435  					want = "<nil>"
  1436  				}
  1437  				t.Errorf("Unexpected error: %v, want %v", err, want)
  1438  			}
  1439  			if len(form) != len(test.out) {
  1440  				t.Errorf("len(form) = %d, want %d", len(form), len(test.out))
  1441  			}
  1442  			for k, evs := range test.out {
  1443  				vs, ok := form[k]
  1444  				if !ok {
  1445  					t.Errorf("Missing key %q", k)
  1446  					continue
  1447  				}
  1448  				if len(vs) != len(evs) {
  1449  					t.Errorf("len(form[%q]) = %d, want %d", k, len(vs), len(evs))
  1450  					continue
  1451  				}
  1452  				for j, ev := range evs {
  1453  					if v := vs[j]; v != ev {
  1454  						t.Errorf("form[%q][%d] = %q, want %q", k, j, v, ev)
  1455  					}
  1456  				}
  1457  			}
  1458  		})
  1459  	}
  1460  }
  1461  
  1462  type RequestURITest struct {
  1463  	url *URL
  1464  	out string
  1465  }
  1466  
  1467  var requritests = []RequestURITest{
  1468  	{
  1469  		&URL{
  1470  			Scheme: "http",
  1471  			Host:   "example.com",
  1472  			Path:   "",
  1473  		},
  1474  		"/",
  1475  	},
  1476  	{
  1477  		&URL{
  1478  			Scheme: "http",
  1479  			Host:   "example.com",
  1480  			Path:   "/a b",
  1481  		},
  1482  		"/a%20b",
  1483  	},
  1484  	// golang.org/issue/4860 variant 1
  1485  	{
  1486  		&URL{
  1487  			Scheme: "http",
  1488  			Host:   "example.com",
  1489  			Opaque: "/%2F/%2F/",
  1490  		},
  1491  		"/%2F/%2F/",
  1492  	},
  1493  	// golang.org/issue/4860 variant 2
  1494  	{
  1495  		&URL{
  1496  			Scheme: "http",
  1497  			Host:   "example.com",
  1498  			Opaque: "//other.example.com/%2F/%2F/",
  1499  		},
  1500  		"http://other.example.com/%2F/%2F/",
  1501  	},
  1502  	// better fix for issue 4860
  1503  	{
  1504  		&URL{
  1505  			Scheme:  "http",
  1506  			Host:    "example.com",
  1507  			Path:    "/////",
  1508  			RawPath: "/%2F/%2F/",
  1509  		},
  1510  		"/%2F/%2F/",
  1511  	},
  1512  	{
  1513  		&URL{
  1514  			Scheme:  "http",
  1515  			Host:    "example.com",
  1516  			Path:    "/////",
  1517  			RawPath: "/WRONG/", // ignored because doesn't match Path
  1518  		},
  1519  		"/////",
  1520  	},
  1521  	{
  1522  		&URL{
  1523  			Scheme:   "http",
  1524  			Host:     "example.com",
  1525  			Path:     "/a b",
  1526  			RawQuery: "q=go+language",
  1527  		},
  1528  		"/a%20b?q=go+language",
  1529  	},
  1530  	{
  1531  		&URL{
  1532  			Scheme:   "http",
  1533  			Host:     "example.com",
  1534  			Path:     "/a b",
  1535  			RawPath:  "/a b", // ignored because invalid
  1536  			RawQuery: "q=go+language",
  1537  		},
  1538  		"/a%20b?q=go+language",
  1539  	},
  1540  	{
  1541  		&URL{
  1542  			Scheme:   "http",
  1543  			Host:     "example.com",
  1544  			Path:     "/a?b",
  1545  			RawPath:  "/a?b", // ignored because invalid
  1546  			RawQuery: "q=go+language",
  1547  		},
  1548  		"/a%3Fb?q=go+language",
  1549  	},
  1550  	{
  1551  		&URL{
  1552  			Scheme: "myschema",
  1553  			Opaque: "opaque",
  1554  		},
  1555  		"opaque",
  1556  	},
  1557  	{
  1558  		&URL{
  1559  			Scheme:   "myschema",
  1560  			Opaque:   "opaque",
  1561  			RawQuery: "q=go+language",
  1562  		},
  1563  		"opaque?q=go+language",
  1564  	},
  1565  	{
  1566  		&URL{
  1567  			Scheme: "http",
  1568  			Host:   "example.com",
  1569  			Path:   "//foo",
  1570  		},
  1571  		"//foo",
  1572  	},
  1573  	{
  1574  		&URL{
  1575  			Scheme:     "http",
  1576  			Host:       "example.com",
  1577  			Path:       "/foo",
  1578  			ForceQuery: true,
  1579  		},
  1580  		"/foo?",
  1581  	},
  1582  }
  1583  
  1584  func TestRequestURI(t *testing.T) {
  1585  	for _, tt := range requritests {
  1586  		s := tt.url.RequestURI()
  1587  		if s != tt.out {
  1588  			t.Errorf("%#v.RequestURI() == %q (expected %q)", tt.url, s, tt.out)
  1589  		}
  1590  	}
  1591  }
  1592  
  1593  func TestParseFailure(t *testing.T) {
  1594  	// Test that the first parse error is returned.
  1595  	const url = "%gh&%ij"
  1596  	_, err := ParseQuery(url)
  1597  	errStr := fmt.Sprint(err)
  1598  	if !strings.Contains(errStr, "%gh") {
  1599  		t.Errorf(`ParseQuery(%q) returned error %q, want something containing %q"`, url, errStr, "%gh")
  1600  	}
  1601  }
  1602  
  1603  func TestParseErrors(t *testing.T) {
  1604  	tests := []struct {
  1605  		in      string
  1606  		wantErr bool
  1607  	}{
  1608  		{"http://[::1]", false},
  1609  		{"http://[::1]:80", false},
  1610  		{"http://[::1]:namedport", true}, // rfc3986 3.2.3
  1611  		{"http://x:namedport", true},     // rfc3986 3.2.3
  1612  		{"http://[::1]/", false},
  1613  		{"http://[::1]a", true},
  1614  		{"http://[::1]%23", true},
  1615  		{"http://[::1%25en0]", false},    // valid zone id
  1616  		{"http://[::1]:", false},         // colon, but no port OK
  1617  		{"http://x:", false},             // colon, but no port OK
  1618  		{"http://[::1]:%38%30", true},    // not allowed: % encoding only for non-ASCII
  1619  		{"http://[::1%25%41]", false},    // RFC 6874 allows over-escaping in zone
  1620  		{"http://[%10::1]", true},        // no %xx escapes in IP address
  1621  		{"http://[::1]/%48", false},      // %xx in path is fine
  1622  		{"http://%41:8080/", true},       // not allowed: % encoding only for non-ASCII
  1623  		{"mysql://x@y(z:123)/foo", true}, // not well-formed per RFC 3986, golang.org/issue/33646
  1624  		{"mysql://x@y(1.2.3.4:123)/foo", true},
  1625  
  1626  		{" http://foo.com", true},  // invalid character in schema
  1627  		{"ht tp://foo.com", true},  // invalid character in schema
  1628  		{"ahttp://foo.com", false}, // valid schema characters
  1629  		{"1http://foo.com", true},  // invalid character in schema
  1630  
  1631  		{"http://[]%20%48%54%54%50%2f%31%2e%31%0a%4d%79%48%65%61%64%65%72%3a%20%31%32%33%0a%0a/", true}, // golang.org/issue/11208
  1632  		{"http://a b.com/", true},    // no space in host name please
  1633  		{"cache_object://foo", true}, // scheme cannot have _, relative path cannot have : in first segment
  1634  		{"cache_object:foo", true},
  1635  		{"cache_object:foo/bar", true},
  1636  		{"cache_object/:foo/bar", false},
  1637  	}
  1638  	for _, tt := range tests {
  1639  		u, err := Parse(tt.in)
  1640  		if tt.wantErr {
  1641  			if err == nil {
  1642  				t.Errorf("Parse(%q) = %#v; want an error", tt.in, u)
  1643  			}
  1644  			continue
  1645  		}
  1646  		if err != nil {
  1647  			t.Errorf("Parse(%q) = %v; want no error", tt.in, err)
  1648  		}
  1649  	}
  1650  }
  1651  
  1652  // Issue 11202
  1653  func TestStarRequest(t *testing.T) {
  1654  	u, err := Parse("*")
  1655  	if err != nil {
  1656  		t.Fatal(err)
  1657  	}
  1658  	if got, want := u.RequestURI(), "*"; got != want {
  1659  		t.Errorf("RequestURI = %q; want %q", got, want)
  1660  	}
  1661  }
  1662  
  1663  type shouldEscapeTest struct {
  1664  	in     byte
  1665  	mode   encoding
  1666  	escape bool
  1667  }
  1668  
  1669  var shouldEscapeTests = []shouldEscapeTest{
  1670  	// Unreserved characters (§2.3)
  1671  	{'a', encodePath, false},
  1672  	{'a', encodeUserPassword, false},
  1673  	{'a', encodeQueryComponent, false},
  1674  	{'a', encodeFragment, false},
  1675  	{'a', encodeHost, false},
  1676  	{'z', encodePath, false},
  1677  	{'A', encodePath, false},
  1678  	{'Z', encodePath, false},
  1679  	{'0', encodePath, false},
  1680  	{'9', encodePath, false},
  1681  	{'-', encodePath, false},
  1682  	{'-', encodeUserPassword, false},
  1683  	{'-', encodeQueryComponent, false},
  1684  	{'-', encodeFragment, false},
  1685  	{'.', encodePath, false},
  1686  	{'_', encodePath, false},
  1687  	{'~', encodePath, false},
  1688  
  1689  	// User information (§3.2.1)
  1690  	{':', encodeUserPassword, true},
  1691  	{'/', encodeUserPassword, true},
  1692  	{'?', encodeUserPassword, true},
  1693  	{'@', encodeUserPassword, true},
  1694  	{'$', encodeUserPassword, false},
  1695  	{'&', encodeUserPassword, false},
  1696  	{'+', encodeUserPassword, false},
  1697  	{',', encodeUserPassword, false},
  1698  	{';', encodeUserPassword, false},
  1699  	{'=', encodeUserPassword, false},
  1700  
  1701  	// Host (IP address, IPv6 address, registered name, port suffix; §3.2.2)
  1702  	{'!', encodeHost, false},
  1703  	{'$', encodeHost, false},
  1704  	{'&', encodeHost, false},
  1705  	{'\'', encodeHost, false},
  1706  	{'(', encodeHost, false},
  1707  	{')', encodeHost, false},
  1708  	{'*', encodeHost, false},
  1709  	{'+', encodeHost, false},
  1710  	{',', encodeHost, false},
  1711  	{';', encodeHost, false},
  1712  	{'=', encodeHost, false},
  1713  	{':', encodeHost, false},
  1714  	{'[', encodeHost, false},
  1715  	{']', encodeHost, false},
  1716  	{'0', encodeHost, false},
  1717  	{'9', encodeHost, false},
  1718  	{'A', encodeHost, false},
  1719  	{'z', encodeHost, false},
  1720  	{'_', encodeHost, false},
  1721  	{'-', encodeHost, false},
  1722  	{'.', encodeHost, false},
  1723  }
  1724  
  1725  func TestShouldEscape(t *testing.T) {
  1726  	for _, tt := range shouldEscapeTests {
  1727  		if shouldEscape(tt.in, tt.mode) != tt.escape {
  1728  			t.Errorf("shouldEscape(%q, %v) returned %v; expected %v", tt.in, tt.mode, !tt.escape, tt.escape)
  1729  		}
  1730  	}
  1731  }
  1732  
  1733  type timeoutError struct {
  1734  	timeout bool
  1735  }
  1736  
  1737  func (e *timeoutError) Error() string { return "timeout error" }
  1738  func (e *timeoutError) Timeout() bool { return e.timeout }
  1739  
  1740  type temporaryError struct {
  1741  	temporary bool
  1742  }
  1743  
  1744  func (e *temporaryError) Error() string   { return "temporary error" }
  1745  func (e *temporaryError) Temporary() bool { return e.temporary }
  1746  
  1747  type timeoutTemporaryError struct {
  1748  	timeoutError
  1749  	temporaryError
  1750  }
  1751  
  1752  func (e *timeoutTemporaryError) Error() string { return "timeout/temporary error" }
  1753  
  1754  var netErrorTests = []struct {
  1755  	err       error
  1756  	timeout   bool
  1757  	temporary bool
  1758  }{{
  1759  	err:       &Error{"Get", "http://google.com/", &timeoutError{timeout: true}},
  1760  	timeout:   true,
  1761  	temporary: false,
  1762  }, {
  1763  	err:       &Error{"Get", "http://google.com/", &timeoutError{timeout: false}},
  1764  	timeout:   false,
  1765  	temporary: false,
  1766  }, {
  1767  	err:       &Error{"Get", "http://google.com/", &temporaryError{temporary: true}},
  1768  	timeout:   false,
  1769  	temporary: true,
  1770  }, {
  1771  	err:       &Error{"Get", "http://google.com/", &temporaryError{temporary: false}},
  1772  	timeout:   false,
  1773  	temporary: false,
  1774  }, {
  1775  	err:       &Error{"Get", "http://google.com/", &timeoutTemporaryError{timeoutError{timeout: true}, temporaryError{temporary: true}}},
  1776  	timeout:   true,
  1777  	temporary: true,
  1778  }, {
  1779  	err:       &Error{"Get", "http://google.com/", &timeoutTemporaryError{timeoutError{timeout: false}, temporaryError{temporary: true}}},
  1780  	timeout:   false,
  1781  	temporary: true,
  1782  }, {
  1783  	err:       &Error{"Get", "http://google.com/", &timeoutTemporaryError{timeoutError{timeout: true}, temporaryError{temporary: false}}},
  1784  	timeout:   true,
  1785  	temporary: false,
  1786  }, {
  1787  	err:       &Error{"Get", "http://google.com/", &timeoutTemporaryError{timeoutError{timeout: false}, temporaryError{temporary: false}}},
  1788  	timeout:   false,
  1789  	temporary: false,
  1790  }, {
  1791  	err:       &Error{"Get", "http://google.com/", io.EOF},
  1792  	timeout:   false,
  1793  	temporary: false,
  1794  }}
  1795  
  1796  // Test that url.Error implements net.Error and that it forwards
  1797  func TestURLErrorImplementsNetError(t *testing.T) {
  1798  	for i, tt := range netErrorTests {
  1799  		err, ok := tt.err.(net.Error)
  1800  		if !ok {
  1801  			t.Errorf("%d: %T does not implement net.Error", i+1, tt.err)
  1802  			continue
  1803  		}
  1804  		if err.Timeout() != tt.timeout {
  1805  			t.Errorf("%d: err.Timeout(): got %v, want %v", i+1, err.Timeout(), tt.timeout)
  1806  			continue
  1807  		}
  1808  		if err.Temporary() != tt.temporary {
  1809  			t.Errorf("%d: err.Temporary(): got %v, want %v", i+1, err.Temporary(), tt.temporary)
  1810  		}
  1811  	}
  1812  }
  1813  
  1814  func TestURLHostnameAndPort(t *testing.T) {
  1815  	tests := []struct {
  1816  		in   string // URL.Host field
  1817  		host string
  1818  		port string
  1819  	}{
  1820  		{"foo.com:80", "foo.com", "80"},
  1821  		{"foo.com", "foo.com", ""},
  1822  		{"foo.com:", "foo.com", ""},
  1823  		{"FOO.COM", "FOO.COM", ""}, // no canonicalization
  1824  		{"1.2.3.4", "1.2.3.4", ""},
  1825  		{"1.2.3.4:80", "1.2.3.4", "80"},
  1826  		{"[1:2:3:4]", "1:2:3:4", ""},
  1827  		{"[1:2:3:4]:80", "1:2:3:4", "80"},
  1828  		{"[::1]:80", "::1", "80"},
  1829  		{"[::1]", "::1", ""},
  1830  		{"[::1]:", "::1", ""},
  1831  		{"localhost", "localhost", ""},
  1832  		{"localhost:443", "localhost", "443"},
  1833  		{"some.super.long.domain.example.org:8080", "some.super.long.domain.example.org", "8080"},
  1834  		{"[2001:0db8:85a3:0000:0000:8a2e:0370:7334]:17000", "2001:0db8:85a3:0000:0000:8a2e:0370:7334", "17000"},
  1835  		{"[2001:0db8:85a3:0000:0000:8a2e:0370:7334]", "2001:0db8:85a3:0000:0000:8a2e:0370:7334", ""},
  1836  
  1837  		// Ensure that even when not valid, Host is one of "Hostname",
  1838  		// "Hostname:Port", "[Hostname]" or "[Hostname]:Port".
  1839  		// See https://golang.org/issue/29098.
  1840  		{"[google.com]:80", "google.com", "80"},
  1841  		{"google.com]:80", "google.com]", "80"},
  1842  		{"google.com:80_invalid_port", "google.com:80_invalid_port", ""},
  1843  		{"[::1]extra]:80", "::1]extra", "80"},
  1844  		{"google.com]extra:extra", "google.com]extra:extra", ""},
  1845  	}
  1846  	for _, tt := range tests {
  1847  		u := &URL{Host: tt.in}
  1848  		host, port := u.Hostname(), u.Port()
  1849  		if host != tt.host {
  1850  			t.Errorf("Hostname for Host %q = %q; want %q", tt.in, host, tt.host)
  1851  		}
  1852  		if port != tt.port {
  1853  			t.Errorf("Port for Host %q = %q; want %q", tt.in, port, tt.port)
  1854  		}
  1855  	}
  1856  }
  1857  
  1858  var _ encodingPkg.BinaryMarshaler = (*URL)(nil)
  1859  var _ encodingPkg.BinaryUnmarshaler = (*URL)(nil)
  1860  
  1861  func TestJSON(t *testing.T) {
  1862  	u, err := Parse("https://www.google.com/x?y=z")
  1863  	if err != nil {
  1864  		t.Fatal(err)
  1865  	}
  1866  	js, err := json.Marshal(u)
  1867  	if err != nil {
  1868  		t.Fatal(err)
  1869  	}
  1870  
  1871  	// If only we could implement TextMarshaler/TextUnmarshaler,
  1872  	// this would work:
  1873  	//
  1874  	// if string(js) != strconv.Quote(u.String()) {
  1875  	// 	t.Errorf("json encoding: %s\nwant: %s\n", js, strconv.Quote(u.String()))
  1876  	// }
  1877  
  1878  	u1 := new(URL)
  1879  	err = json.Unmarshal(js, u1)
  1880  	if err != nil {
  1881  		t.Fatal(err)
  1882  	}
  1883  	if u1.String() != u.String() {
  1884  		t.Errorf("json decoded to: %s\nwant: %s\n", u1, u)
  1885  	}
  1886  }
  1887  
  1888  func TestGob(t *testing.T) {
  1889  	u, err := Parse("https://www.google.com/x?y=z")
  1890  	if err != nil {
  1891  		t.Fatal(err)
  1892  	}
  1893  	var w bytes.Buffer
  1894  	err = gob.NewEncoder(&w).Encode(u)
  1895  	if err != nil {
  1896  		t.Fatal(err)
  1897  	}
  1898  
  1899  	u1 := new(URL)
  1900  	err = gob.NewDecoder(&w).Decode(u1)
  1901  	if err != nil {
  1902  		t.Fatal(err)
  1903  	}
  1904  	if u1.String() != u.String() {
  1905  		t.Errorf("json decoded to: %s\nwant: %s\n", u1, u)
  1906  	}
  1907  }
  1908  
  1909  func TestNilUser(t *testing.T) {
  1910  	defer func() {
  1911  		if v := recover(); v != nil {
  1912  			t.Fatalf("unexpected panic: %v", v)
  1913  		}
  1914  	}()
  1915  
  1916  	u, err := Parse("http://foo.com/")
  1917  
  1918  	if err != nil {
  1919  		t.Fatalf("parse err: %v", err)
  1920  	}
  1921  
  1922  	if v := u.User.Username(); v != "" {
  1923  		t.Fatalf("expected empty username, got %s", v)
  1924  	}
  1925  
  1926  	if v, ok := u.User.Password(); v != "" || ok {
  1927  		t.Fatalf("expected empty password, got %s (%v)", v, ok)
  1928  	}
  1929  
  1930  	if v := u.User.String(); v != "" {
  1931  		t.Fatalf("expected empty string, got %s", v)
  1932  	}
  1933  }
  1934  
  1935  func TestInvalidUserPassword(t *testing.T) {
  1936  	_, err := Parse("http://user^:passwo^rd@foo.com/")
  1937  	if got, wantsub := fmt.Sprint(err), "net/url: invalid userinfo"; !strings.Contains(got, wantsub) {
  1938  		t.Errorf("error = %q; want substring %q", got, wantsub)
  1939  	}
  1940  }
  1941  
  1942  func TestRejectControlCharacters(t *testing.T) {
  1943  	tests := []string{
  1944  		"http://foo.com/?foo\nbar",
  1945  		"http\r://foo.com/",
  1946  		"http://foo\x7f.com/",
  1947  	}
  1948  	for _, s := range tests {
  1949  		_, err := Parse(s)
  1950  		const wantSub = "net/url: invalid control character in URL"
  1951  		if got := fmt.Sprint(err); !strings.Contains(got, wantSub) {
  1952  			t.Errorf("Parse(%q) error = %q; want substring %q", s, got, wantSub)
  1953  		}
  1954  	}
  1955  
  1956  	// But don't reject non-ASCII CTLs, at least for now:
  1957  	if _, err := Parse("http://foo.com/ctl\x80"); err != nil {
  1958  		t.Errorf("error parsing URL with non-ASCII control byte: %v", err)
  1959  	}
  1960  
  1961  }
  1962  
  1963  var escapeBenchmarks = []struct {
  1964  	unescaped string
  1965  	query     string
  1966  	path      string
  1967  }{
  1968  	{
  1969  		unescaped: "one two",
  1970  		query:     "one+two",
  1971  		path:      "one%20two",
  1972  	},
  1973  	{
  1974  		unescaped: "Фотки собак",
  1975  		query:     "%D0%A4%D0%BE%D1%82%D0%BA%D0%B8+%D1%81%D0%BE%D0%B1%D0%B0%D0%BA",
  1976  		path:      "%D0%A4%D0%BE%D1%82%D0%BA%D0%B8%20%D1%81%D0%BE%D0%B1%D0%B0%D0%BA",
  1977  	},
  1978  
  1979  	{
  1980  		unescaped: "shortrun(break)shortrun",
  1981  		query:     "shortrun%28break%29shortrun",
  1982  		path:      "shortrun%28break%29shortrun",
  1983  	},
  1984  
  1985  	{
  1986  		unescaped: "longerrunofcharacters(break)anotherlongerrunofcharacters",
  1987  		query:     "longerrunofcharacters%28break%29anotherlongerrunofcharacters",
  1988  		path:      "longerrunofcharacters%28break%29anotherlongerrunofcharacters",
  1989  	},
  1990  
  1991  	{
  1992  		unescaped: strings.Repeat("padded/with+various%characters?that=need$some@escaping+paddedsowebreak/256bytes", 4),
  1993  		query:     strings.Repeat("padded%2Fwith%2Bvarious%25characters%3Fthat%3Dneed%24some%40escaping%2Bpaddedsowebreak%2F256bytes", 4),
  1994  		path:      strings.Repeat("padded%2Fwith+various%25characters%3Fthat=need$some@escaping+paddedsowebreak%2F256bytes", 4),
  1995  	},
  1996  }
  1997  
  1998  func BenchmarkQueryEscape(b *testing.B) {
  1999  	for _, tc := range escapeBenchmarks {
  2000  		b.Run("", func(b *testing.B) {
  2001  			b.ReportAllocs()
  2002  			var g string
  2003  			for i := 0; i < b.N; i++ {
  2004  				g = QueryEscape(tc.unescaped)
  2005  			}
  2006  			b.StopTimer()
  2007  			if g != tc.query {
  2008  				b.Errorf("QueryEscape(%q) == %q, want %q", tc.unescaped, g, tc.query)
  2009  			}
  2010  
  2011  		})
  2012  	}
  2013  }
  2014  
  2015  func BenchmarkPathEscape(b *testing.B) {
  2016  	for _, tc := range escapeBenchmarks {
  2017  		b.Run("", func(b *testing.B) {
  2018  			b.ReportAllocs()
  2019  			var g string
  2020  			for i := 0; i < b.N; i++ {
  2021  				g = PathEscape(tc.unescaped)
  2022  			}
  2023  			b.StopTimer()
  2024  			if g != tc.path {
  2025  				b.Errorf("PathEscape(%q) == %q, want %q", tc.unescaped, g, tc.path)
  2026  			}
  2027  
  2028  		})
  2029  	}
  2030  }
  2031  
  2032  func BenchmarkQueryUnescape(b *testing.B) {
  2033  	for _, tc := range escapeBenchmarks {
  2034  		b.Run("", func(b *testing.B) {
  2035  			b.ReportAllocs()
  2036  			var g string
  2037  			for i := 0; i < b.N; i++ {
  2038  				g, _ = QueryUnescape(tc.query)
  2039  			}
  2040  			b.StopTimer()
  2041  			if g != tc.unescaped {
  2042  				b.Errorf("QueryUnescape(%q) == %q, want %q", tc.query, g, tc.unescaped)
  2043  			}
  2044  
  2045  		})
  2046  	}
  2047  }
  2048  
  2049  func BenchmarkPathUnescape(b *testing.B) {
  2050  	for _, tc := range escapeBenchmarks {
  2051  		b.Run("", func(b *testing.B) {
  2052  			b.ReportAllocs()
  2053  			var g string
  2054  			for i := 0; i < b.N; i++ {
  2055  				g, _ = PathUnescape(tc.path)
  2056  			}
  2057  			b.StopTimer()
  2058  			if g != tc.unescaped {
  2059  				b.Errorf("PathUnescape(%q) == %q, want %q", tc.path, g, tc.unescaped)
  2060  			}
  2061  
  2062  		})
  2063  	}
  2064  }
  2065  

View as plain text