Skip to content

Commit 1bd6817

Browse files
committed
Remove proxy compliance tests
1 parent 08d0558 commit 1bd6817

9 files changed

Lines changed: 4 additions & 318 deletions

File tree

docs/content/compliance/_index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Each test sends a request that violates a specific **MUST** or **MUST NOT** requ
2828
'RFC9112-3-MULTI-SP-REQUEST-LINE','RFC9112-3-MISSING-TARGET',
2929
'RFC9112-3.2-FRAGMENT-IN-TARGET','RFC9112-2.3-INVALID-VERSION',
3030
'RFC9112-2.3-HTTP09-REQUEST','COMP-ASTERISK-WITH-GET','COMP-OPTIONS-STAR',
31-
'COMP-CONNECT-EMPTY-PORT','COMP-CONNECT-ORIGIN-FORM','COMP-ABSOLUTE-FORM',
31+
'COMP-ABSOLUTE-FORM',
3232
'COMP-METHOD-CASE','COMP-REQUEST-LINE-TAB',
3333
'COMP-VERSION-MISSING-MINOR','COMP-VERSION-LEADING-ZEROS',
3434
'COMP-VERSION-WHITESPACE','COMP-HTTP12-VERSION',
@@ -48,7 +48,7 @@ Each test sends a request that violates a specific **MUST** or **MUST NOT** requ
4848
'COMP-CHUNKED-TRAILER-VALID','COMP-CHUNKED-HEX-UPPERCASE'
4949
]},
5050
{ key: 'methods-upgrade', label: 'Methods & Upgrade', testIds: [
51-
'COMP-METHOD-CONNECT','COMP-METHOD-CONNECT-NO-PORT',
51+
'COMP-METHOD-CONNECT',
5252
'COMP-UNKNOWN-TE-501','COMP-EXPECT-UNKNOWN','COMP-METHOD-TRACE',
5353
'COMP-TRACE-WITH-BODY',
5454
'COMP-UPGRADE-POST','COMP-UPGRADE-MISSING-CONN',

docs/content/docs/request-line/_index.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,7 @@ Note this is a SHOULD, not a MUST. The RFC recommends 400 but does not mandate i
2525
{{< card link="asterisk-with-get" title="ASTERISK-WITH-GET" subtitle="Asterisk-form (*) with non-OPTIONS method." >}}
2626
{{< card link="options-star" title="OPTIONS-STAR" subtitle="OPTIONS * — valid asterisk-form request." >}}
2727
{{< card link="unknown-te-501" title="UNKNOWN-TE-501" subtitle="Unknown Transfer-Encoding without CL." >}}
28-
{{< card link="connect-empty-port" title="CONNECT-EMPTY-PORT" subtitle="CONNECT with empty port in authority-form." >}}
2928
{{< card link="method-connect" title="METHOD-CONNECT" subtitle="CONNECT to an origin server must be rejected." >}}
30-
{{< card link="method-connect-no-port" title="METHOD-CONNECT-NO-PORT" subtitle="CONNECT without port in authority-form." >}}
3129
{{< /cards >}}
3230

3331
### Unscored

docs/content/docs/request-line/connect-empty-port.md

Lines changed: 0 additions & 87 deletions
This file was deleted.

docs/content/docs/request-line/connect-origin-form.md

Lines changed: 0 additions & 87 deletions
This file was deleted.

docs/content/docs/request-line/method-connect-no-port.md

Lines changed: 0 additions & 90 deletions
This file was deleted.

docs/static/probe/render.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,6 @@ window.ProbeRender = (function () {
6060
'COMP-CHUNKED-EXTENSION': '/Http11Probe/docs/body/chunked-extension/',
6161
'COMP-CHUNKED-MULTI': '/Http11Probe/docs/body/chunked-multi/',
6262
'COMP-CHUNKED-NO-FINAL': '/Http11Probe/docs/body/chunked-no-final/',
63-
'COMP-CONNECT-EMPTY-PORT': '/Http11Probe/docs/request-line/connect-empty-port/',
6463
'COMP-DUPLICATE-HOST-SAME': '/Http11Probe/docs/host-header/duplicate-host-same/',
6564
'COMP-EXPECT-UNKNOWN': '/Http11Probe/docs/headers/expect-unknown/',
6665
'COMP-GET-WITH-CL-BODY': '/Http11Probe/docs/body/get-with-cl-body/',
@@ -69,7 +68,6 @@ window.ProbeRender = (function () {
6968
'COMP-LEADING-CRLF': '/Http11Probe/docs/line-endings/leading-crlf/',
7069
'COMP-METHOD-CASE': '/Http11Probe/docs/request-line/method-case/',
7170
'COMP-METHOD-CONNECT': '/Http11Probe/docs/request-line/method-connect/',
72-
'COMP-METHOD-CONNECT-NO-PORT': '/Http11Probe/docs/request-line/method-connect-no-port/',
7371
'COMP-METHOD-TRACE': '/Http11Probe/docs/request-line/method-trace/',
7472
'COMP-OPTIONS-STAR': '/Http11Probe/docs/request-line/options-star/',
7573
'COMP-POST-CL-BODY': '/Http11Probe/docs/body/post-cl-body/',
@@ -166,7 +164,6 @@ window.ProbeRender = (function () {
166164
'COMP-CHUNKED-HEX-UPPERCASE': '/Http11Probe/docs/body/chunked-hex-uppercase/',
167165
'COMP-CHUNKED-TRAILER-VALID': '/Http11Probe/docs/body/chunked-trailer-valid/',
168166
'COMP-CONNECTION-CLOSE': '/Http11Probe/docs/headers/connection-close/',
169-
'COMP-CONNECT-ORIGIN-FORM': '/Http11Probe/docs/request-line/connect-origin-form/',
170167
'COMP-HOST-EMPTY-VALUE': '/Http11Probe/docs/host-header/host-empty-value/',
171168
'COMP-HTTP10-DEFAULT-CLOSE': '/Http11Probe/docs/headers/http10-default-close/',
172169
'COMP-HTTP10-NO-HOST': '/Http11Probe/docs/host-header/http10-no-host/',

src/Http11Probe.Cli/Reporting/DocsUrlMap.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,15 +53,12 @@ internal static class DocsUrlMap
5353
// request-line
5454
["COMP-ABSOLUTE-FORM"] = "request-line/absolute-form",
5555
["COMP-ASTERISK-WITH-GET"] = "request-line/asterisk-with-get",
56-
["COMP-CONNECT-EMPTY-PORT"] = "request-line/connect-empty-port",
57-
["COMP-CONNECT-ORIGIN-FORM"] = "request-line/connect-origin-form",
5856
["RFC9112-3.2-FRAGMENT-IN-TARGET"] = "request-line/fragment-in-target",
5957
["RFC9112-2.3-HTTP09-REQUEST"] = "request-line/http09-request",
6058
["COMP-HTTP12-VERSION"] = "request-line/http12-version",
6159
["RFC9112-2.3-INVALID-VERSION"] = "request-line/invalid-version",
6260
["COMP-METHOD-CASE"] = "request-line/method-case",
6361
["COMP-METHOD-CONNECT"] = "request-line/method-connect",
64-
["COMP-METHOD-CONNECT-NO-PORT"] = "request-line/method-connect-no-port",
6562
["COMP-METHOD-TRACE"] = "request-line/method-trace",
6663
["RFC9112-3-MISSING-TARGET"] = "request-line/missing-target",
6764
["RFC9112-3-MULTI-SP-REQUEST-LINE"] = "request-line/multi-sp-request-line",

0 commit comments

Comments
 (0)