mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
91 lines
3.0 KiB
JavaScript
91 lines
3.0 KiB
JavaScript
Cu.import("resource://services-sync/auth.js");
|
|
Cu.import("resource://services-sync/resource.js");
|
|
Cu.import("resource://services-sync/util.js");
|
|
Cu.import("resource://services-sync/service.js");
|
|
|
|
const JAPANESE = "\u34ff\u35ff\u36ff\u37ff";
|
|
const APPLES = "\uf8ff\uf8ff\uf8ff\uf8ff";
|
|
const LOWBYTES = "\xff\xff\xff\xff";
|
|
|
|
// Poor man's /etc/passwd. Static since there's no btoa()/atob() in xpcshell.
|
|
let basicauth = {};
|
|
basicauth[LOWBYTES] = "Basic am9obmRvZTr/////";
|
|
basicauth[Utils.encodeUTF8(JAPANESE)] = "Basic am9obmRvZTrjk7/jl7/jm7/jn78=";
|
|
|
|
// Global var for the server password, read by info_collections(),
|
|
// modified by change_password().
|
|
let server_password;
|
|
|
|
function info_collections(request, response) {
|
|
let body, statusCode, status;
|
|
let basic = basicauth[server_password];
|
|
|
|
if (basic && (request.getHeader("Authorization") == basic)) {
|
|
body = "{}";
|
|
statusCode = 200;
|
|
status = "OK";
|
|
} else {
|
|
statusCode = 401;
|
|
body = status = "Unauthorized";
|
|
}
|
|
response.setStatusLine(request.httpVersion, statusCode, status);
|
|
response.setHeader("WWW-Authenticate", 'Basic realm="secret"', false);
|
|
response.bodyOutputStream.write(body, body.length);
|
|
}
|
|
|
|
function change_password(request, response) {
|
|
let body, statusCode, status;
|
|
let basic = basicauth[server_password];
|
|
|
|
if (basic && (request.getHeader("Authorization") == basic)) {
|
|
server_password = readBytesFromInputStream(request.bodyInputStream);
|
|
body = "";
|
|
statusCode = 200;
|
|
status = "OK";
|
|
} else {
|
|
statusCode = 401;
|
|
body = status = "Unauthorized";
|
|
}
|
|
response.setStatusLine(request.httpVersion, statusCode, status);
|
|
response.setHeader("WWW-Authenticate", 'Basic realm="secret"', false);
|
|
response.bodyOutputStream.write(body, body.length);
|
|
}
|
|
|
|
function run_test() {
|
|
initTestLogging("Trace");
|
|
|
|
do_test_pending();
|
|
let server = httpd_setup({
|
|
"/1.0/johndoe/info/collections": info_collections,
|
|
"/1.0/johndoe/storage/meta/global": new ServerWBO().handler(),
|
|
"/1.0/johndoe/storage/crypto/keys": new ServerWBO().handler(),
|
|
"/user/1.0/johndoe/password": change_password
|
|
});
|
|
|
|
Service.username = "johndoe";
|
|
Service.password = JAPANESE;
|
|
Service.passphrase = "cantentsveryrelevantabbbb";
|
|
Service.serverURL = "http://localhost:8080/";
|
|
|
|
try {
|
|
_("Try to log in with the password.");
|
|
server_password = "foobar";
|
|
do_check_false(Service.verifyLogin());
|
|
do_check_eq(server_password, "foobar");
|
|
|
|
_("Make the server password the low byte version of our password. Login should work and have transparently changed the password to the UTF8 version.");
|
|
server_password = LOWBYTES;
|
|
do_check_true(Service.verifyLogin());
|
|
do_check_eq(server_password, Utils.encodeUTF8(JAPANESE));
|
|
|
|
_("Can't use a password that has the same low bytes as ours.");
|
|
Service.password = APPLES;
|
|
do_check_false(Service.verifyLogin());
|
|
do_check_eq(server_password, Utils.encodeUTF8(JAPANESE));
|
|
|
|
} finally {
|
|
server.stop(do_test_finished);
|
|
Svc.Prefs.resetBranch("");
|
|
}
|
|
}
|