diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 19:33:14 +0000 |
commit | 36d22d82aa202bb199967e9512281e9a53db42c9 (patch) | |
tree | 105e8c98ddea1c1e4784a60a5a6410fa416be2de /testing/web-platform/tests/xhr/resources/access-control-auth-basic.py | |
parent | Initial commit. (diff) | |
download | firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.tar.xz firefox-esr-36d22d82aa202bb199967e9512281e9a53db42c9.zip |
Adding upstream version 115.7.0esr.upstream/115.7.0esr
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/xhr/resources/access-control-auth-basic.py')
-rw-r--r-- | testing/web-platform/tests/xhr/resources/access-control-auth-basic.py | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/testing/web-platform/tests/xhr/resources/access-control-auth-basic.py b/testing/web-platform/tests/xhr/resources/access-control-auth-basic.py new file mode 100644 index 0000000000..d1c5579ce2 --- /dev/null +++ b/testing/web-platform/tests/xhr/resources/access-control-auth-basic.py @@ -0,0 +1,17 @@ +def main(request, response): + response.headers.set(b"Cache-Control", b"no-store") + response.headers.set(b"Access-Control-Allow-Origin", request.headers.get(b"origin")) + response.headers.set(b"Access-Control-Allow-Credentials", b"true") + uid = request.GET.first(b"uid", None) + + if request.method == u"OPTIONS": + response.headers.set(b"Access-Control-Allow-Methods", b"PUT") + else: + username = request.auth.username + password = request.auth.password + if (not username) or (username != uid): + response.headers.set(b"WWW-Authenticate", b"Basic realm='Test Realm/Cross Origin'") + response.status = 401 + response.content = b"Authentication cancelled" + else: + response.content = b"User: " + username + b", Password: " + password |