(t *testing.T)
| 1121 | } |
| 1122 | |
| 1123 | func TestEncodedUrlsStayEncoded(t *testing.T) { |
| 1124 | encodeTest, err := NewSignInPageTest(false) |
| 1125 | if err != nil { |
| 1126 | t.Fatal(err) |
| 1127 | } |
| 1128 | code, _ := encodeTest.GetEndpoint("/%2F/test1/%2F/test2") |
| 1129 | assert.Equal(t, 403, code) |
| 1130 | } |
| 1131 | |
| 1132 | func NewAuthOnlyEndpointTest(querystring string, modifiers ...OptionsModifier) (*ProcessCookieTest, error) { |
| 1133 | pcTest, err := NewProcessCookieTestWithOptionsModifiers(modifiers...) |
nothing calls this directly
no test coverage detected